/* ─── COACHING PAGE ─── */

/* Hero: single-column variant */
.coaching-hero { min-height: 88svh; padding: 140px 0 80px; }
.hero-inner--single {
  grid-template-columns: 1fr;
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 14px 28px;
  background: transparent; color: var(--white);
  border: 1px solid var(--black-5);
  font-weight: 700; transition: all 0.22s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* Topics */
.topics { background: var(--black-3); }
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
}
.topic-card {
  background: var(--black-3); padding: 32px 28px;
  position: relative; overflow: hidden; transition: background 0.25s;
}
.topic-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 2px; height: 0;
  background: var(--orange); transition: height 0.3s ease;
}
.topic-card:hover { background: var(--black-2); }
.topic-card:hover::before { height: 100%; }
.topic-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 20px;
  border: 1px solid var(--black-5); color: var(--white-dim);
  transition: border-color 0.25s, color 0.25s;
}
.topic-card:hover .topic-icon { border-color: var(--orange-bd); color: var(--orange); }
.topic-icon svg { width: 20px; height: 20px; }
.topic-title {
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 10px; line-height: 1.25;
}
.topic-desc { font-size: 15px; line-height: 1.65; color: var(--white-dim); }

/* Steps */
.how-it-works { background: var(--black); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.step-card {
  background: var(--black-2); border: 1px solid var(--black-4);
  padding: 32px 28px; transition: border-color 0.25s;
}
.step-card:hover { border-color: var(--orange-bd); }
.step-num {
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; color: var(--orange); opacity: 0.55;
  margin-bottom: 20px; line-height: 1;
}
.step-title {
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 8px; line-height: 1.3;
}
.step-desc {
  font-size: 14px; line-height: 1.65; color: var(--white-dim);
  margin-bottom: 18px;
}

.price-box {
  border: 1px solid var(--orange-bd);
  background: var(--orange-dim);
  padding: 44px 32px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.price-amount {
  font-family: var(--ff); font-size: 56px; font-weight: 800;
  color: var(--orange); letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 16px;
}
.price-unit {
  font-family: var(--mono); font-size: 16px; font-weight: 500;
  color: var(--white-dim); letter-spacing: 0.08em;
}
.price-note {
  font-size: 15px; line-height: 1.7; color: var(--white-dim);
  max-width: 420px; margin: 0 auto;
}

/* Origin */
.origin { background: var(--black-2); }
.origin-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.origin-text {
  font-size: 16px; line-height: 1.8; color: var(--white-dim);
  margin-bottom: 20px;
}
.origin-text strong { color: var(--white); font-weight: 600; }

.timeline-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white-faint); margin-bottom: 24px;
}
.timeline-item {
  display: flex; gap: 18px;
  padding-bottom: 28px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 4px; top: 14px; bottom: 0;
  width: 1px; background: var(--black-5);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 0 3px var(--orange-dim);
}
.timeline-date {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 4px;
}
.timeline-title {
  font-size: 15px; font-weight: 600; color: var(--white);
  margin-bottom: 10px;
}

/* Final CTA */
.coaching-cta { background: var(--black); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .coaching-hero { padding: 120px 0 64px; }
  .origin-layout { grid-template-columns: 1fr; gap: 48px; }
  .price-box { padding: 32px 24px; }
  .price-amount { font-size: 42px; }
}
