/* ==========================================================================
   SPEARPOINT ADVISORS — For Small Business Owners Page Stylesheet
   ==========================================================================
   Page-specific rules only. Loaded after style.css, so it can rely on all
   design tokens (--color-*, --space-*, --fs-*, --radius-*, --shadow-*,
   --transition-*) and shared components already defined there.

   Reuses as-is (no rules needed here): .hero-decor, .hero__cta-group,
   .eyebrow, .about-section__header, .drivers-list/.drivers-list__item/
   .drivers-list__number/.drivers-list__label/.drivers-list__text,
   .split-panel__grid/__content/__visual/__visual-icon, .process-grid/
   .process-step (base 3-col layout — this page uses it as-is, no override
   needed), .founder-section__grid/__image-wrap/__image/__content,
   .credentials/.credential-tag, .testimonials-section/.testimonials-slider/
   .testimonial-card, .section-decor, .cta-section, .btn.
   ========================================================================== */

/* --- Hero — centered like The 5 Ds/Services, with the primary+outline CTA
   pair this page's md copy actually calls for. --- */
.sb-hero {
  padding-top: calc(var(--nav-height) + var(--space-12));
  position: relative;
  z-index: 1;
  background-color: var(--color-bg);
}

.sb-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.sb-hero__content h1 {
  margin-bottom: var(--space-6);
}

.sb-hero__content p {
  margin: 0 auto var(--space-8);
}

.sb-hero__content .hero__cta-group {
  justify-content: center;
}

/* --- "What Makes Small Business Coaching Different at This Stage" —
   heading + intro paragraph fixed on the left, the 5 items as a
   click-to-expand accordion on the right instead of a flat icon+text
   list, all closed on load. Same accordion mechanics (click-toggle +
   max-height-from-scrollHeight) as trades.css's/
   professional-services.css's accordion, rebuilt locally per the
   per-page-CSS convention, driven by for-small-business-owners.js. --- */
.stage-different__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: start;
}

.stage-different__intro {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-8));
}

.stage-different__intro p {
  margin-top: var(--space-5);
  max-width: none;
}

.accordion-block + .accordion-block {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.accordion-block__trigger {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.accordion-block__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-hover));
  color: var(--color-white);
  font-size: var(--fs-md);
}

.accordion-block__title {
  flex: 1;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin: 0;
  transition: color var(--transition-fast);
}

.accordion-block__trigger:hover .accordion-block__title {
  color: var(--color-orange);
}

.accordion-block__chevron {
  flex-shrink: 0;
  color: var(--color-text-4);
  font-size: var(--fs-sm);
  transition: transform var(--transition-base);
}

.accordion-block.is-open .accordion-block__chevron {
  transform: rotate(180deg);
}

.accordion-block__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion-block__content-inner {
  padding-top: var(--space-4);
}

.accordion-block__content p {
  max-width: none; /* style.css's global p { max-width: 65ch } would cap
    this short of the accordion column's own width — override it */
  font-size: var(--fs-sm);
  color: var(--color-text-3);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

/* --- "What the $2M–$150M Stage Actually Requires" — a second, standalone
   use of the same .accordion-block component (centered single column
   this time, not paired with an intro column), also closed on load. --- */
.stage-requires__accordion {
  max-width: 820px;
  margin: 0 auto;
}

/* --- Large faint corner icon — same visual idea as Executive Coaching's
   .exec-mark / The 5 Ds' .d-panel__mark, reimplemented locally per the
   per-page-CSS convention so "Who This Small Business Coach Works With"
   doesn't read as a flat block of paragraphs. --- */
.sb-mark {
  position: absolute;
  top: var(--space-10);
  right: var(--space-10);
  font-size: 8rem;
  line-height: 1;
  color: rgba(232, 83, 14, 0.07);
  pointer-events: none;
  z-index: -1;
  user-select: none;
}

/* --- Quote block — this page's pull-quote treatment (used twice: the
   "successful on paper" section and the 5 Ds section), same visual idea
   as the-5-ds.css's/executive-coaching.css's .quote-block, rebuilt
   locally per the per-page-CSS convention rather than shared across
   pages. --- */
.quote-block {
  position: relative;
  max-width: 760px;
  margin: var(--space-8) auto 0;
  padding: var(--space-8) var(--space-10);
  background: linear-gradient(160deg, rgba(232, 83, 14, 0.07), transparent);
  border: 1px solid rgba(232, 83, 14, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.quote-block__mark {
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-size: 3rem;
  color: rgba(232, 83, 14, 0.15);
  z-index: 0;
}

.quote-block blockquote {
  position: relative;
  z-index: 1;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  font-style: italic;
  color: var(--color-text);
  line-height: var(--lh-relaxed);
  text-align: center;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .sb-mark {
    font-size: 6rem;
  }

  .stage-different__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .stage-different__intro {
    position: static;
  }
}

@media (max-width: 768px) {
  /* Centered by design on tablet/desktop (see base rules above);
     left-aligned on phones only. */
  .sb-hero__content,
  .quote-block blockquote {
    text-align: left;
  }

  .sb-mark {
    font-size: 4.5rem;
  }

  .quote-block {
    padding: var(--space-6);
  }
}
