/* ============================================================
   Strategy and scope studies service detail page styles.
   Source: /docs/mockups/strategy.html.

   Sixth of seven service detail pages. Patterns shared with
   earlier service pages live in components/:
     - components/svc-hero.css           (hero + what-card)
     - components/cred-strip.css         (credibility strip)
     - components/use-cases.css          (use case grid)
     - components/svc-process.css        (process strip)
     - components/case-study.css         (3-stat case study)
     - components/related-callout.css    (lifted on this page —
                                          single full-width sibling
                                          callout, third use after
                                          Creator and Portals)

   What stays page-specific:
   - .deliv-section + .deliv-card    Dark band with topo wash. Six
                                     cards showing scope-study
                                     deliverables, alternating
                                     orange/blue icon tint.
   - .pricing-section + .price-card  Two-tier pricing cards plus a
                                     "credit applies" callout.
   - .compare-section + .compare-card  Two-up cards comparing
                                     scope-study vs strategy
                                     engagement, with metadata rows.
   - .faq-section + .faq-item        Bordered-card + (+/−) accordion
                                     (matches Implementation,
                                     Integrations, Data Migration).
   ============================================================ */

/* === DELIVERABLES (page-specific) ===
   Dark band with a faint topo SVG wash and a 2x3 card grid. */

.deliv-section { overflow: hidden; }
.deliv-section .section-head .eyebrow { color: var(--orange-pale); }

.deliv-topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.deliv-section .container { position: relative; z-index: 2; }

.deliv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.deliv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.deliv-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.deliv-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.deliv-card-icon svg { width: 20px; height: 20px; }
.deliv-card--orange .deliv-card-icon {
  background: rgba(220, 115, 76, 0.15);
  color: var(--orange-bright);
}
.deliv-card--blue .deliv-card-icon {
  background: rgba(91, 168, 220, 0.15);
  color: var(--blue-bright);
}
.deliv-card-body { flex: 1; min-width: 0; }
.deliv-card-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  font-weight: var(--weight-medium);
}
.deliv-card--orange .deliv-card-label { color: var(--orange-pale); }
.deliv-card--blue .deliv-card-label { color: var(--blue-bright); }
.deliv-card h3 {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: var(--tracking-h3);
}
.deliv-card p {
  font-size: 14px;
  color: var(--text-light-2);
  line-height: 1.6;
}

/* === PRICING (page-specific) === */

.pricing-section { background: var(--bg-light); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-card-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.12);
}
.price-card--featured {
  border-color: rgba(220, 115, 76, 0.4);
  box-shadow: 0 8px 24px -12px rgba(220, 115, 76, 0.2);
}
.price-card-tag {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--orange);
  color: #0c0c0c;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-weight: var(--weight-medium);
}
.price-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dark-3);
  margin-bottom: 10px;
  font-weight: var(--weight-medium);
}
.price-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: var(--tracking-h3);
}
.price-card-cost {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: var(--weight-medium);
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: var(--tracking-stat);
  line-height: 1.1;
}
.price-card-cost-meta {
  font-size: 13px;
  color: var(--text-dark-3);
  margin-bottom: 22px;
}
.price-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 22px;
}
.price-card-list li {
  font-size: 14px;
  color: var(--text-dark-2);
  line-height: 1.55;
  padding: 7px 0 7px 24px;
  position: relative;
}
.price-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.price-card--blue .price-card-list li::before { background: var(--blue); }
.price-card-foot {
  font-size: 13px;
  color: var(--text-dark-3);
  line-height: 1.55;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.price-credit {
  max-width: 980px;
  margin: 32px auto 0;
  background: linear-gradient(135deg, rgba(220, 115, 76, 0.08) 0%, rgba(220, 115, 76, 0.02) 100%);
  border: 1px solid rgba(220, 115, 76, 0.25);
  border-radius: var(--radius-card-lg);
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.price-credit-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(220, 115, 76, 0.18);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-credit-icon svg { width: 18px; height: 18px; }
.price-credit-text h3 {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: var(--tracking-h3);
}
.price-credit-text p {
  font-size: 14px;
  color: var(--text-dark-2);
  line-height: 1.6;
}

/* === COMPARE (page-specific) === */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-card-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.compare-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.12);
}
.compare-tag {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: var(--weight-medium);
}
.compare-card--orange .compare-tag {
  background: rgba(220, 115, 76, 0.12);
  color: var(--orange);
}
.compare-card--blue .compare-tag {
  background: rgba(22, 93, 148, 0.12);
  color: var(--blue);
}
.compare-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: var(--tracking-h3);
}
.compare-card > p {
  font-size: 15px;
  color: var(--text-dark-2);
  line-height: 1.6;
  margin-bottom: 22px;
}
.compare-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.compare-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
}
.compare-meta-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark-3);
  font-weight: var(--weight-medium);
}
.compare-meta-value {
  color: var(--text-dark);
  font-weight: var(--weight-medium);
  text-align: right;
}

/* === FAQ (page-specific; matches Implementation/Integrations/Data Migration) === */

.faq-section { padding-top: var(--section-pad-y); padding-bottom: var(--section-pad-y); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.faq-intro .eyebrow {
  color: var(--blue);
  margin-bottom: 18px;
  display: block;
}
.faq-intro h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.15;
}
.faq-intro p {
  font-size: 16px;
  color: var(--text-dark-2);
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  transition: background 0.2s ease;
}
.faq-item:hover { background: rgba(255, 255, 255, 0.7); }

.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: var(--weight-medium);
  color: var(--text-dark);
}

.faq-toggle {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--text-dark-2);
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}
.faq-toggle::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-toggle::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 1.5px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--text-dark-2);
  line-height: 1.65;
}
.faq-a p + p { margin-top: 12px; }

/* === RESPONSIVE === */

@media (max-width: 980px) {
  .deliv-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; gap: 18px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .deliv-card { padding: 22px; flex-direction: column; gap: 14px; }
  .price-card { padding: 28px 24px; }
  .compare-card { padding: 28px 24px; }
  .faq-intro h2 { font-size: 28px; }
}
