/* ==========================================================================
   SPEARPOINT ADVISORS — Operational Scaling Consulting 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 (confirmed present in style.css itself, not a page-local
   file — grep-verified across every page built this session): .hero-decor,
   .hero__cta-group, .about-section__header, .section-decor, .stats-grid/
   .value-card, .process-grid/.process-step, .founder-section__grid +
   children, .trade-panel__highlight, .credentials/.credential-tag,
   .testimonials-section + children, .cta-section, .btn, and — for the
   "What Business Operations Consulting Addresses at Every Level" section
   below — the full .trades-tabs/.trades-tab nav + .trade-panel content
   component (switching handled globally by app.js's initTradesTabs;
   this is the same tab bar as the homepage's "What Home Services
   Business Coaching Looks Like by Trade"). Panels here skip
   .trade-panel__grid (no highlight sidebar content for six items) and
   go straight from .trade-panel to paragraphs; .ops-panel-header is
   this page's only local addition — an icon+title row atop each panel.
   ========================================================================== */

/* --- Hero — centered like every other service page, two CTAs. --- */
.ops-hero {
  padding-top: calc(var(--nav-height) + var(--space-12));
  position: relative;
  z-index: 1;
  background-color: var(--color-bg);
}

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

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

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

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

/* "Who This Operations Consulting Work Is For" reuses the same
   .process-grid as the Discover/Prepare/Decide section further down,
   but its text reads better centered — scoped to this section only so
   that one stays left-aligned. */
#who-this-is-for .process-step__text {
  text-align: center;
}

/* --- Quote block — this page's pull-quote treatment (used twice), same
   visual idea as every other service page'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;
}

/* --- Space below the 3-gate process grid for the standalone "See the
   Full Process" button — same idea as the other pages' *-process-cta. --- */
.ops-process-cta {
  margin-top: var(--space-12);
  text-align: center;
}

/* --- Ops tabs panel header — icon+title row atop each .trade-panel
   (see file header comment for why the shared trade-panel component is
   used as-is here). --- */
.ops-panel-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.ops-panel-header__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(232, 83, 14, 0.1);
  color: var(--color-orange);
  font-size: var(--fs-lg);
}

.ops-panel-header h3 {
  margin: 0;
}

/* These panels skip .trade-panel__grid (no highlight sidebar content for
   six items) and go straight from .trade-panel to paragraphs — so the
   global `p { max-width: 65ch }` readability cap, which assumes a
   narrow grid column, needs lifting here or the text sits pinned to the
   left of the full-width panel. */
.trade-panel p {
  max-width: none;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  /* Centered by design on tablet/desktop (see base rules above);
     left-aligned on phones only. */
  .ops-hero__content,
  #who-this-is-for .process-step__text,
  .quote-block blockquote,
  .ops-process-cta {
    text-align: left;
  }

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

  .ops-panel-header__icon {
    width: 44px;
    height: 44px;
    font-size: var(--fs-md);
  }
}
