/* ══════════════════════════════════════════════════════════
   SERVICE PAGE CSS
   Covers: Announcement bar, SP Hero, Interactive Services
           Panel, Process Cards, Stack/Tools section
   ══════════════════════════════════════════════════════════ */

/* ── Announcement Bar ─────────────────────────────────────── */
.ann-bar {
  width: 100%;
  background: hsl(0, 0%, 0%);
  padding: 12px 24px;
  position: relative;
  z-index: 60;
}
.ann-bar.hidden { display: none; }
.ann-bar__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ann-bar__text {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.ann-bar__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}
.ann-bar__text a:hover { opacity: 0.75; }
.ann-bar__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.ann-bar__close:hover { color: white; }

/* ── Service Page Hero ────────────────────────────────────── */
.sp-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 210px;
  background: hsl(220, 60%, 25%);  /* navy default */
}
.theme-green .sp-hero {
  background: hsl(153, 78%, 17%);  /* deep green */
}
.sp-hero__glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sp-hero__glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(200 85% 60% / 0.4), transparent 60%);
  filter: blur(80px);
  opacity: 0.2;
}
.theme-green .sp-hero__glow-1 {
  background: radial-gradient(circle, hsl(152 80% 60% / 0.4), transparent 60%);
}
.sp-hero__glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(200 85% 60% / 0.12), transparent 70%);
  filter: blur(60px);
}
.theme-green .sp-hero__glow-2 {
  background: radial-gradient(circle, hsl(152 80% 60% / 0.12), transparent 70%);
}
.sp-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1023px) {
  .sp-hero__inner { grid-template-columns: 1fr; }
  .sp-hero__right { display: flex; justify-content: center; }
}

/* Hero left */
.sp-hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(200, 85%, 75%);
  margin-bottom: 24px;
  display: block;
}
.theme-green .sp-hero__label { color: hsl(152, 80%, 70%); }
.sp-hero__h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 32px;
}
.sp-hero__h1 .sp-accent { color: hsl(200, 85%, 60%); }
.theme-green .sp-hero__h1 .sp-accent { color: hsl(152, 80%, 60%); }
.sp-hero__desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 40px;
}
.sp-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.sp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 9999px;
  background: hsl(200, 85%, 60%);
  color: hsl(220, 60%, 25%);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.sp-btn-primary:hover { opacity: 0.9; transform: scale(1.02); }
.theme-green .sp-btn-primary {
  background: hsl(152, 80%, 60%);
  color: hsl(153, 78%, 10%);
}
.sp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.sp-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* Hero right — stat card */
.sp-hero__right { position: relative; }
.sp-stat-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.sp-hero-badge {
  position: absolute;
  z-index: 20;
  top: 4px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: hsl(220 60% 18% / 0.9);
  border: 1px solid hsl(200 85% 60% / 0.35);
  animation: spBadgeFloat 3s ease-in-out infinite;
}
.theme-green .sp-hero-badge {
  background: hsl(153 78% 12% / 0.9);
  border-color: hsl(152 80% 50% / 0.3);
}
@keyframes spBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.sp-stat-card {
  position: relative;
  z-index: 10;
  margin: 40px 16px 0;
  border-radius: 24px;
  overflow: hidden;
  background: hsl(210, 30%, 97%);
  box-shadow: 0 24px 60px hsl(220 70% 8% / 0.4), 0 4px 16px hsl(220 70% 8% / 0.2);
}
.sp-stat-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: hsl(220, 60%, 25%);
}
.theme-green .sp-stat-card__header { background: hsl(153, 78%, 17%); }
.sp-stat-card__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-stat-card__icon-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.sp-stat-card__label {
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sp-stat-stars { display: flex; gap: 4px; }
.sp-stat-stars svg {
  color: hsl(200, 85%, 60%);
}
.theme-green .sp-stat-stars svg { color: hsl(152, 80%, 60%); }
.sp-stat-card__body { padding: 20px 24px; }
.sp-stat-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sp-stat-row__left h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: hsl(0, 0%, 10%);
  margin: 0 0 2px;
}
.sp-stat-row__left p,
.sp-stat-row__right p:last-child {
  font-size: 0.875rem;
  color: hsl(220, 15%, 50%);
  margin: 0;
}
.sp-stat-row__right { text-align: right; }
.sp-stat-row__right h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: hsl(220, 60%, 25%);
  margin: 0 0 2px;
}
.theme-green .sp-stat-row__right h3 { color: hsl(153, 78%, 17%); }
.sp-stat-row__right p:last-child { font-size: 11px; color: hsl(220, 15%, 55%); }
.sp-mini-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.sp-mini-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-mini-bar__label {
  font-size: 10px;
  color: hsl(220, 15%, 55%);
  width: 60px;
  flex-shrink: 0;
}
.sp-mini-bar__track {
  flex: 1;
  height: 6px;
  border-radius: 9999px;
  background: hsl(220, 15%, 90%);
  overflow: hidden;
}
.sp-mini-bar__fill {
  height: 100%;
  border-radius: 9999px;
  background: hsl(220, 60%, 25%);
}
.theme-green .sp-mini-bar__fill { background: hsl(153, 78%, 17%); }
.sp-mini-bar__val { font-size: 10px; color: hsl(220, 15%, 65%); }
.sp-stat-card__footnote {
  font-size: 12px;
  color: hsl(220, 15%, 60%);
  text-align: center;
  font-weight: 500;
}
.sp-mini-pills {
  margin: 16px 16px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sp-mini-pill {
  text-align: center;
  padding: 10px 8px;
  border-radius: 16px;
  background: hsl(220 60% 25% / 0.4);
  border: 1px solid hsl(200 85% 60% / 0.1);
}
.theme-green .sp-mini-pill {
  background: hsl(153 78% 17% / 0.4);
  border-color: hsl(152 80% 50% / 0.1);
}
.sp-mini-pill__val {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  color: hsl(200, 85%, 60%);
  display: block;
}
.theme-green .sp-mini-pill__val { color: hsl(152, 80%, 60%); }
.sp-mini-pill__lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  display: block;
}

/* Wave divider */
.sp-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  line-height: 0;
}
.sp-hero__wave svg { display: block; width: 100%; height: auto; }

/* Scroll reveal for hero inner */
.sp-hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: spHeroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.15s;
}
@keyframes spHeroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Interactive Services Section ─────────────────────────── */
.sp-services {
  background: var(--bg, hsl(43, 20%, 90%));
  padding: 96px 0;
}
.sp-services__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.sp-section-head { text-align: center; margin-bottom: 56px; }
.sp-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 9999px;
  background: hsl(220, 60%, 25%);
  color: hsl(200, 85%, 60%);
  margin-bottom: 16px;
}
.theme-green .sp-chip {
  background: hsl(153, 78%, 17%);
  color: hsl(152, 80%, 60%);
}
.sp-section-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: hsl(0, 0%, 8%);
  margin: 0 0 16px;
}
.sp-section-sub {
  font-size: 1.0625rem;
  color: hsl(220, 15%, 48%);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Two-col layout */
.sp-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1023px) {
  .sp-panel-grid { grid-template-columns: 1fr; }
}

/* Left sticky panel */
.sp-panel {
  position: sticky;
  top: 96px;
  border-radius: 24px;
  overflow: hidden;
  background: hsl(220, 60%, 25%);
}
.theme-green .sp-panel { background: hsl(153, 78%, 17%); }
.sp-panel__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  position: relative;
}
.sp-panel__deco-1 {
  position: absolute;
  top: -64px;
  right: -64px;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  background: hsl(200 85% 60% / 0.08);
  pointer-events: none;
}
.theme-green .sp-panel__deco-1 { background: hsl(152 80% 60% / 0.08); }
.sp-panel__deco-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: hsl(200 85% 60% / 0.06);
  pointer-events: none;
}
.theme-green .sp-panel__deco-2 { background: hsl(152 80% 60% / 0.06); }
.sp-panel__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.sp-panel__content.fading {
  opacity: 0;
  transform: translateY(10px);
}
.sp-panel__counter {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(200 85% 60% / 0.6);
  margin-bottom: 24px;
}
.theme-green .sp-panel__counter { color: hsl(152 80% 60% / 0.6); }
.sp-panel__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: hsl(200 85% 60% / 0.15);
}
.theme-green .sp-panel__icon { background: hsl(152 80% 60% / 0.15); }
.sp-panel__icon svg { color: hsl(200, 85%, 65%); }
.theme-green .sp-panel__icon svg { color: hsl(152, 80%, 65%); }
.sp-panel__tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(200 85% 60% / 0.5);
  margin-bottom: 8px;
}
.theme-green .sp-panel__tagline { color: hsl(152 80% 60% / 0.5); }
.sp-panel__title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: white;
  margin: 0 0 16px;
  line-height: 1.1;
}
.sp-panel__desc {
  font-size: 1rem;
  line-height: 1.65;
  color: hsl(200 40% 75%);
  margin-bottom: 32px;
}
.theme-green .sp-panel__desc { color: hsl(152 40% 70%); }
.sp-panel__features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-panel__feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.sp-panel__feat-icon {
  flex-shrink: 0;
  color: hsl(200, 85%, 65%);
}
.theme-green .sp-panel__feat-icon { color: hsl(152, 80%, 65%); }
.sp-panel__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: hsl(200, 85%, 60%);
  color: hsl(220, 60%, 20%);
  width: fit-content;
  text-decoration: none;
  transition: opacity 0.2s;
}
.sp-panel__cta:hover { opacity: 0.85; }
.theme-green .sp-panel__cta {
  background: hsl(152, 80%, 60%);
  color: hsl(153, 78%, 10%);
}

/* Progress bar at bottom of panel */
.sp-panel__footer {
  padding: 0 40px 24px;
  position: relative;
  z-index: 10;
}
.sp-panel__prog-track {
  width: 100%;
  height: 2px;
  border-radius: 9999px;
  background: hsl(200 85% 60% / 0.15);
}
.theme-green .sp-panel__prog-track { background: hsl(152 80% 60% / 0.15); }
.sp-panel__prog-fill {
  height: 100%;
  border-radius: 9999px;
  background: hsl(200, 85%, 60%);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.theme-green .sp-panel__prog-fill { background: hsl(152, 80%, 60%); }

/* Right service list */
.sp-list { display: flex; flex-direction: column; }
.sp-list-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  cursor: pointer;
  margin-bottom: 8px;
  border: 1.5px solid hsl(220 60% 25% / 0.12);
  background: transparent;
  min-height: 80px;
  transition: background 0.2s, border-color 0.2s;
}
.sp-list-row:hover {
  background: hsl(220 60% 25% / 0.04);
  border-color: hsl(220 60% 25% / 0.25);
}
.sp-list-row.active {
  background: hsl(220 60% 25% / 0.07);
  border-color: hsl(220 60% 25% / 0.4);
}
.theme-green .sp-list-row { border-color: hsl(153 78% 17% / 0.12); }
.theme-green .sp-list-row:hover {
  background: hsl(153 78% 17% / 0.04);
  border-color: hsl(153 78% 17% / 0.25);
}
.theme-green .sp-list-row.active {
  background: hsl(153 78% 17% / 0.07);
  border-color: hsl(153 78% 17% / 0.4);
}
.sp-list-row__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(220 60% 25% / 0.08);
  transition: background 0.2s;
}
.sp-list-row.active .sp-list-row__icon { background: hsl(220, 60%, 25%); }
.theme-green .sp-list-row__icon { background: hsl(153 78% 17% / 0.08); }
.theme-green .sp-list-row.active .sp-list-row__icon { background: hsl(153, 78%, 17%); }
.sp-list-row__icon svg {
  color: hsl(220 60% 25% / 0.55);
  transition: color 0.2s;
}
.sp-list-row.active .sp-list-row__icon svg { color: hsl(200, 85%, 60%); }
.theme-green .sp-list-row__icon svg { color: hsl(153 78% 17% / 0.55); }
.theme-green .sp-list-row.active .sp-list-row__icon svg { color: hsl(152, 80%, 60%); }
.sp-list-row__info { flex: 1; min-width: 0; }
.sp-list-row__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(0, 0%, 10%);
  transition: color 0.2s;
}
.sp-list-row.active .sp-list-row__name { color: hsl(220, 60%, 25%); }
.theme-green .sp-list-row.active .sp-list-row__name { color: hsl(153, 78%, 17%); }
.sp-list-row__sub {
  font-size: 12px;
  color: hsl(220, 15%, 52%);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-list-row__arrow {
  flex-shrink: 0;
  color: hsl(220, 60%, 25%);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.sp-list-row.active .sp-list-row__arrow {
  opacity: 1;
  transform: translateX(0);
}
.theme-green .sp-list-row__arrow { color: hsl(153, 78%, 17%); }

/* ── Process Section ──────────────────────────────────────── */
.sp-process {
  background: hsl(220, 60%, 25%);
  padding: 96px 0;
  overflow: hidden;
}
.theme-green .sp-process { background: hsl(153, 78%, 17%); }
.sp-process__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.sp-process .sp-chip {
  background: hsl(200 85% 60% / 0.15);
  color: hsl(200, 85%, 65%);
  border: 1px solid hsl(200 85% 60% / 0.25);
}
.theme-green .sp-process .sp-chip {
  background: hsl(152 80% 60% / 0.15);
  color: hsl(152, 80%, 65%);
  border-color: hsl(152 80% 60% / 0.25);
}
.sp-process .sp-section-title { color: white; }
.sp-process .sp-section-sub { color: hsl(215, 30%, 70%); }
.theme-green .sp-process .sp-section-sub { color: hsl(152, 25%, 68%); }
.sp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .sp-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .sp-process-grid { grid-template-columns: 1fr; }
}
.sp-process-card {
  position: relative;
  border-radius: 16px;
  padding: 28px;
  overflow: hidden;
  cursor: default;
  background: hsl(220 65% 11% / 0.8);
  border: 1.5px solid hsl(200 85% 60% / 0.15);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s ease,
              background 0.35s ease,
              border-color 0.35s ease;
}
.theme-green .sp-process-card {
  background: hsl(153 78% 11% / 0.8);
  border-color: hsl(152 80% 50% / 0.15);
}
.sp-process-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 32px 64px hsl(220 70% 5% / 0.5), 0 0 0 1px hsl(200 85% 60% / 0.35);
  background: hsl(220, 65%, 18%) !important;
  border-color: hsl(200 85% 60% / 0.45) !important;
}
.theme-green .sp-process-card:hover {
  box-shadow: 0 32px 64px hsl(153 78% 5% / 0.5), 0 0 0 1px hsl(152 80% 50% / 0.35);
  background: hsl(152, 78%, 14%) !important;
  border-color: hsl(152 80% 50% / 0.45) !important;
}
.sp-process-card:hover .pc-num { opacity: 0.45 !important; transform: scale(1.06); }
.sp-process-card:hover .pc-bar { width: 64px !important; background: hsl(200, 85%, 60%) !important; }
.sp-process-card:hover .pc-title { color: hsl(200, 85%, 75%) !important; }
.sp-process-card:hover .pc-desc { color: hsl(215, 30%, 85%) !important; }
.theme-green .sp-process-card:hover .pc-bar { background: hsl(152, 80%, 60%) !important; }
.theme-green .sp-process-card:hover .pc-title { color: hsl(152, 80%, 75%) !important; }
.theme-green .sp-process-card:hover .pc-desc { color: hsl(152, 30%, 85%) !important; }
.sp-process-card__glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, hsl(200 85% 60% / 0.08), transparent 70%);
}
.theme-green .sp-process-card__glow {
  background: radial-gradient(circle, hsl(152 80% 50% / 0.08), transparent 70%);
}
.sp-process-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pc-num {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  color: hsl(200 85% 60% / 0.22);
  user-select: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-green .pc-num { color: hsl(152 80% 50% / 0.22); }
.pc-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(200 85% 60% / 0.12);
}
.theme-green .pc-icon-box { background: hsl(152 80% 50% / 0.12); }
.pc-icon-box svg { color: hsl(200, 85%, 65%); }
.theme-green .pc-icon-box svg { color: hsl(152, 80%, 60%); }
.pc-bar {
  height: 3px;
  border-radius: 9999px;
  margin-bottom: 20px;
  width: 36px;
  background: hsl(200 85% 60% / 0.4);
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1), background 0.3s ease;
}
.theme-green .pc-bar { background: hsl(152 80% 50% / 0.4); }
.pc-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: hsl(215, 20%, 90%);
  margin: 0 0 10px;
  transition: color 0.3s ease;
}
.pc-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(215, 15%, 60%);
  margin: 0;
  transition: color 0.3s ease;
}
.sp-process__divider {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sp-process__divider-line {
  flex: 1;
  height: 1px;
  background: hsl(200 85% 60% / 0.12);
}
.theme-green .sp-process__divider-line { background: hsl(152 80% 50% / 0.12); }
.sp-process__divider-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(200 85% 60% / 0.45);
}
.theme-green .sp-process__divider-text { color: hsl(152 80% 50% / 0.45); }

/* ── Tools / Stack Section ────────────────────────────────── */
.sp-stack {
  background: var(--bg, hsl(43, 20%, 90%));
  padding: 96px 0;
}
.sp-stack__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.sp-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.sp-tag {
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1.5px solid hsl(220 60% 25% / 0.2);
  color: hsl(220, 60%, 25%);
  background: transparent;
  cursor: default;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sp-tag:hover {
  background: hsl(220, 60%, 25%);
  color: hsl(200, 85%, 60%);
  border-color: hsl(220, 60%, 25%);
}
.theme-green .sp-tag {
  border-color: hsl(153 78% 17% / 0.2);
  color: hsl(153, 78%, 17%);
}
.theme-green .sp-tag:hover {
  background: hsl(153, 78%, 17%);
  color: hsl(152, 80%, 60%);
  border-color: hsl(153, 78%, 17%);
}

/* ── Generic scroll reveal ────────────────────────────────── */
.sp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.sp-reveal.in { opacity: 1; transform: translateY(0); }
