/* ============================================================
   SERVICE PAGES EXTRA STYLES
   Additive rules for section patterns that appear on individual
   service pages but aren't covered by the shared "INNER-PAGE
   SHARED TEMPLATE" block in style.css (tech-stack pill rows,
   text+visual split sections, checklists, metric tiles).
   Keep class names generic/reusable — multiple service pages may
   need these. If this file already exists, APPEND, don't overwrite.
   Do NOT edit style.css or main.js from here.
   ============================================================ */

/* ─── Tech / tool pill row (flat chip with colored dot) ───────── */
.tech-pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.tech-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: 10px 20px;
  transition: border-color 0.3s ease;
}
.tech-pill:hover { border-color: rgba(255,255,255,0.25); }
.tech-pill-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.tech-pill-name { font-size: 0.875rem; font-weight: 600; color: #fff; }

/* ─── Split section (text column + visual column) ─────────────── */
.split-section { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .split-section { grid-template-columns: 1fr 1fr; } }
.split-eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 12px; }
.split-title { font-size: 1.875rem; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 20px; }
@media (min-width: 768px) { .split-title { font-size: 2.25rem; } }
.split-text { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.check-list-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.875rem; color: var(--muted); }
.check-list-icon {
  width: 20px; height: 20px; border-radius: 50%; background: rgba(254,4,103,0.15);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.check-list-icon svg { width: 12px; height: 12px; }

/* ─── Metric / stat tile grid ──────────────────────────────────── */
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.metric-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; transition: border-color 0.3s ease;
}
.metric-card:hover { border-color: rgba(254,4,103,0.3); }
.metric-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 8px; }
.metric-value { font-size: 1.875rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.metric-desc { font-size: 0.75rem; color: #71717A; }

.metric-decorative-row {
  grid-column: span 2; background: var(--card); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  padding: 24px; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 16px;
}
.metric-decorative-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.metric-decorative-icon {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(254,4,103,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.metric-decorative-icon svg { width: 20px; height: 20px; }
.metric-decorative-item span { font-size: 0.75rem; color: var(--muted); font-weight: 500; }

/* ─── 5-column process grid variant (services with 5 steps) ───── */
.process-alt-grid.cols-5 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .process-alt-grid.cols-5 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-alt-grid.cols-5 { grid-template-columns: repeat(5, 1fr); } }

/* ─── 4-column case-result grid variant (results/timeline with 4 items) ── */
.case-result-grid.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .case-result-grid.cols-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .case-result-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* ─── Inline callout box (icon + emphasized note, e.g. under a timeline) ── */
.inline-callout {
  margin-top: 32px; display: flex; align-items: flex-start; gap: 16px;
  background: rgba(254,4,103,0.05); border: 1px solid rgba(254,4,103,0.2);
  border-radius: 16px; padding: 20px;
}
.inline-callout svg { flex-shrink: 0; color: var(--accent); width: 20px; height: 20px; margin-top: 2px; }
.inline-callout p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.inline-callout p strong { color: #fff; font-weight: 600; }

/* ─── Platform / brand chip row (colored pill with icon + label) ──
   Used on: social-media-management.html
   Each .platform-chip sets --chip-color / --chip-bg / --chip-border
   inline to tint itself with the relevant platform's brand color. */
.platform-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.platform-chip {
  display: inline-flex; align-items: center; gap: 12px;
  border-radius: 16px; padding: 16px 24px;
  background: var(--chip-bg, rgba(254,4,103,0.1));
  border: 1px solid var(--chip-border, rgba(254,4,103,0.2));
  color: var(--chip-color, var(--accent));
  font-size: 0.875rem; font-weight: 600;
  transition: transform 0.3s ease;
}
.platform-chip:hover { transform: scale(1.05); }
.platform-chip svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ─── Icon sizing inside .service-tag (style.css defines the pill
   itself but not an icon size — several service pages put a lucide
   icon before the label text). ── */
.service-tag svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─── Final CTA trust-signal row (small icon + text badges, used
   under the CTA buttons on some service pages' closing section) ── */
.final-cta-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 8px; }
.final-cta-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--muted); }
.final-cta-trust-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
