/* ================================================================
   PERSONAL COACHING — White background, two-col
   ================================================================ */
#coaching {
  background: var(--white);
  padding: 80px 0;
}

.coaching-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Large centred heading */
.coaching-section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 42px;
  color: #2F2F3B;
  text-align: center;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 48px;
}

/* Two-col grid */
.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Shared subsection label */
.subsection-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--olive);
  margin-bottom: 20px;
}
.subsection-label--light { color: var(--olive-light); }
.subsection-label--spaced { margin-top: 48px; }

/* Left col body text */
.coaching-left p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--heading-dark);
  margin-bottom: 14px;
}
.coaching-left p:last-of-type { margin-bottom: 0; }

.coaching-pillars {
  margin: 8px 0 14px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coaching-pillars li {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--heading-dark);
  padding-left: 20px;
  position: relative;
}
.coaching-pillars li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
  background-image: none;
}

/* Enneagram in left col */
.enneagram-wrap { margin-top: 40px; }
.enneagram-subtitle {
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Pricing list — always visible, no accordion */
.pricing-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.pricing-item {
  padding: 12px 0;
}

/* Compact variant — no borders, tight spacing */
.pricing-list--compact .pricing-item {
  border: none;
  padding: 10px 0;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.pricing-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--heading-dark);
  flex: 1;
}

.pricing-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--olive);
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-desc {
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 2px;
}

/* Mindset Advantage thumbnail row */
.pricing-pdf-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 10px;
}

.pricing-pdf-thumb {
  flex-shrink: 0;
  width: 80px;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}

.pricing-pdf-thumb img {
  width: 100%;
  display: block;
}

.pricing-pdf-blurb {
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-pdf-link {
  display: inline;
  color: var(--olive);
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
}
.pricing-pdf-link:hover { color: var(--olive-dark); }

/* Dark variant pricing text colours */
.pricing-list--dark .pricing-name { color: rgba(255,255,255,0.9); }
.pricing-list--dark .pricing-price { color: var(--olive-light); }
.pricing-list--dark .pricing-desc { color: var(--white); }

/* Always-open pricing item (Mindset Advantage) */
.pricing-always-header {
  padding: 14px 0 6px;
}
.pricing-always-header .pricing-row { margin-bottom: 2px; }

/* PDF stacked layout (image above, text below, left-aligned) */
.pricing-pdf-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}
.pricing-pdf-col .pricing-pdf-thumb {
  width: 100px;
  flex-shrink: 0;
}
.pricing-pdf-blurb--left {
  text-align: left;
}

/* PDF float layout — image floats left, text wraps around it */
.pricing-pdf-float {
  margin-top: 10px;
  overflow: hidden;
}
.pricing-pdf-thumb--float {
  float: left;
  width: 90px;
  margin: 0 14px 8px 0;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}
.pricing-pdf-thumb--float img {
  width: 100%;
  display: block;
}

/* FAQ intro text */
.faq-intro-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--heading-dark);
  margin-bottom: 4px;
  text-align: left;
}
.faq-intro-label strong {
  font-weight: 700;
}
.faq-intro-sub {
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
  text-align: left;
}

/* FAQ toggle — whole heading is now the button */
.faq-toggle-wrap {
  margin-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 0;
}
.faq-toggle-wrap--dark { border-top-color: rgba(255,255,255,0.1); }

.faq-section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 0 12px;
  gap: 12px;
  text-align: left;
}
.faq-section-toggle:hover .faq-intro-label { color: var(--olive); }
.faq-section-toggle--dark .faq-intro-label { color: rgba(255,255,255,0.9); }
.faq-section-toggle--dark .faq-intro-sub { color: rgba(255,255,255,0.5); }
.faq-section-toggle--dark:hover .faq-intro-label { color: var(--olive-light); }
.faq-toggle-text { flex: 1; }

.faq-toggle-icon {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--olive);
  flex-shrink: 0;
  transition: transform 300ms var(--ease-out);
}
.faq-section-toggle--dark .faq-toggle-icon { color: var(--olive-light); }
.faq-section-toggle[aria-expanded="true"] .faq-toggle-icon { transform: rotate(45deg); }


.faq-section-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms var(--ease-out);
}
.faq-section-collapsible.open { max-height: 4000px; }
.faq-section-collapsible .faq-section { margin-top: 16px; margin-bottom: 8px; }

/* Coaching CTA blob */
.coaching-cta-blob {
  background: var(--olive);
  border-radius: 0;
  padding: 28px 32px 24px;
  margin-top: 28px;
  color: var(--white);
}

.coaching-cta-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}

.coaching-cta-sub {
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.5;
}

.coaching-cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.coaching-cta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  transition: opacity 200ms ease;
}
.coaching-cta-line:hover { opacity: 0.85; }
.coaching-cta-line svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  flex-shrink: 0;
}
.coaching-cta-line strong { color: var(--white); }

.coaching-cta-footer {
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* ── Pricing intro line (always visible first sentence) ── */
.pricing-intro {
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  padding: 0 0 10px;
}
.pricing-list--dark .pricing-intro {
  color: var(--white);
}

/* ── Expandable pricing items ── */
.pricing-item--expandable {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0;
}
.pricing-list--compact .pricing-item--expandable {
  padding: 0;
}
.pricing-list--dark .pricing-item--expandable {
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 0;
  text-align: left;
  gap: 12px;
}
.pricing-header:hover .pricing-name { color: var(--olive); }
.pricing-list--dark .pricing-header:hover .pricing-name { color: var(--olive-light); }

.pricing-header-content { flex: 1; }
.pricing-header-content .pricing-row { margin-bottom: 2px; }
.pricing-header-content .pricing-desc { margin-top: 0; }

.pricing-expand-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--olive);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 300ms ease;
}
.pricing-list--dark .pricing-expand-icon { color: var(--olive-light); }
.pricing-header[aria-expanded="true"] .pricing-expand-icon { transform: rotate(45deg); }

.pricing-detail-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
}
.pricing-detail-panel.open {
  max-height: 1000px;
  padding-bottom: 16px;
}

.pricing-detail-panel p {
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.pricing-list--dark .pricing-detail-panel p { color: var(--white); }

.pricing-detail-panel ul {
  margin: 4px 0 10px 0;
  padding-left: 0;
  list-style: none;
}
.pricing-detail-panel ul li {
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}
.pricing-detail-panel ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--olive);
}
.pricing-list--dark .pricing-detail-panel ul li { color: var(--white); }
.pricing-list--dark .pricing-detail-panel ul li::before { background: var(--olive-light); }

/* Responsive */
@media (max-width: 960px) {
  .coaching-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .coaching-inner { padding: 0 20px; }
  .pricing-row { flex-direction: column; gap: 4px; }
  .pricing-pdf-row { flex-direction: column; }
}
