/* ═══════════════════════════════════════════════════════════════
   Prisma Akatsuki — Service Pages Shared Stylesheet
   Extends the main design system for long-form service content
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg: #F5F4F0;
  --bg-alt: #ECEAE3;
  --bg-dark: #111110;
  --bg-dark-2: #1A1918;
  --text: #111110;
  --text-muted: #6B6963;
  --text-faint: #A8A49E;
  --accent: #C8440A;
  --accent-warm: #E07B3B;
  --white: #FAFAF8;
  --border: rgba(17, 17, 16, 0.1);
  --border-dark: rgba(255, 255, 255, 0.08);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  overflow-x: clip;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  line-height: 1.6;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── Reset ──────────────────────────────────────────────── */
a, button {
  color: inherit;
  text-decoration: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.sp-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.sp-container--narrow {
  max-width: 860px;
}

.sp-container--wide {
  max-width: 1400px;
}

@media (max-width: 640px) {
  .sp-container { padding: 0 18px; }
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */
.sp-display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
}

.sp-display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

.sp-display-md {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.sp-display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
}

.sp-body-lg {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
}

.sp-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

.sp-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════ */
.sp-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.sp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sp-reveal-d1 { transition-delay: 0.1s; }
.sp-reveal-d2 { transition-delay: 0.2s; }
.sp-reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .sp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — Service page variant (links back to main site)
   ═══════════════════════════════════════════════════════════════ */
.sp-nav-wrap {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}

.sp-desktop-nav {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 16px;
  background: rgba(245, 244, 240, 0.88);
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(17, 17, 16, 0.07);
  transition: all 0.3s var(--ease-out);
  max-width: calc(100vw - 32px);
  overflow: hidden;
}

.sp-desktop-nav.scrolled {
  background: rgba(245, 244, 240, 0.97);
  box-shadow: 0 8px 40px rgba(17, 17, 16, 0.12);
}

.sp-nav-logo {
  display: flex;
  align-items: center;
  margin-right: 36px;
}

.sp-nav-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.sp-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.sp-nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.sp-nav-link:hover,
.sp-nav-link.active {
  color: var(--text);
  background: rgba(17, 17, 16, 0.06);
}

.sp-nav-cta {
  margin-left: 16px;
  padding: 9px 20px;
  background: var(--text);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 9px;
  transition: background 0.2s ease;
}

.sp-nav-cta:hover {
  background: var(--accent);
}

/* Mobile nav */
.sp-mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  padding: 0 20px;
  background: rgba(245, 244, 240, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  z-index: 500;
}

.sp-hamburger {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sp-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.sp-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.sp-hamburger.open span:nth-child(2) { opacity: 0; }
.sp-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.sp-mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: all 0.35s var(--ease-out);
}

.sp-mobile-drawer.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.sp-mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s;
}

.sp-mobile-nav-link:hover { color: var(--accent); }

@media (max-width: 900px) {
  .sp-nav-wrap { display: none !important; }
  .sp-mobile-bar { display: flex !important; }
}

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════════ */
.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-faint);
  padding: 120px 0 0;
}

.sp-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.sp-breadcrumb a:hover { color: var(--accent); }

.sp-breadcrumb-sep {
  color: var(--text-faint);
  font-size: 0.7rem;
}

@media (max-width: 900px) {
  .sp-breadcrumb { padding-top: 80px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Service page editorial hero
   ═══════════════════════════════════════════════════════════════ */
.sp-hero {
  padding: 40px 0 100px;
  position: relative;
}

.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.sp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.sp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.sp-hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.sp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 820px;
}

.sp-hero-title-accent {
  color: var(--accent);
}

.sp-hero-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 36px;
}

.sp-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sp-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.sp-hero-pill {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 16px;
  background: rgba(17, 17, 16, 0.05);
  color: var(--text-muted);
  border-radius: 100px;
  border: 1px solid var(--border);
}

.sp-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.sp-hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.sp-hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.sp-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--text);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.sp-btn-solid:hover {
  background: var(--accent);
}

.sp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
  background: transparent;
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.sp-btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.sp-btn-solid--light {
  background: var(--white);
  color: var(--text);
}

.sp-btn-solid--light:hover {
  background: var(--accent);
  color: var(--white);
}

.sp-btn-ghost--light {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(250, 250, 248, 0.7);
}

.sp-btn-ghost--light:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.sp-section {
  padding: 100px 0;
}

.sp-section--alt {
  background: var(--bg-alt);
}

.sp-section--dark {
  background: var(--bg-dark);
  color: var(--white);
}

.sp-section--dark .sp-body-lg,
.sp-section--dark .sp-body {
  color: rgba(250, 250, 248, 0.55);
}

.sp-section-header {
  margin-bottom: 64px;
}

.sp-section-num {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.sp-section--dark .sp-section-num {
  color: rgba(250, 250, 248, 0.25);
}

.sp-section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 48px;
}

.sp-section--dark .sp-section-divider {
  background: var(--border-dark);
}

.sp-section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

@media (max-width: 768px) {
  .sp-section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .sp-section { padding: 72px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   INTRODUCTION
   ═══════════════════════════════════════════════════════════════ */
.sp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 768px) {
  .sp-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.sp-intro-text p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.sp-intro-text p:last-child { margin-bottom: 0; }

.sp-intro-sidebar {
  padding: 40px;
  background: var(--bg-alt);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.sp-intro-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.sp-intro-sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-intro-sidebar li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.sp-intro-sidebar li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   CAPABILITIES GRID
   ═══════════════════════════════════════════════════════════════ */
.sp-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .sp-capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .sp-capabilities-grid { grid-template-columns: 1fr; }
}

.sp-capability {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.3s var(--ease-out);
}

.sp-section--alt .sp-capability {
  background: var(--bg-alt);
}

.sp-capability:hover {
  background: var(--white);
}

.sp-capability-num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.sp-capability h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.3s var(--ease-out);
}

.sp-capability:hover h3 {
  color: var(--accent);
}

.sp-capability p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sp-capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.sp-capability-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  background: rgba(17, 17, 16, 0.04);
  color: var(--text-faint);
  border-radius: 100px;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS / METHODOLOGY TIMELINE
   ═══════════════════════════════════════════════════════════════ */
.sp-process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .sp-process-list { grid-template-columns: 1fr; }
}

.sp-process-step {
  display: flex;
  gap: 24px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s var(--ease-out);
}

.sp-section--dark .sp-process-step {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-dark);
}

.sp-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17, 17, 16, 0.06);
  border-color: rgba(200, 68, 10, 0.15);
}

.sp-section--dark .sp-process-step:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(200, 68, 10, 0.3);
}

.sp-process-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  opacity: 0.6;
}

.sp-process-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.sp-section--dark .sp-process-content h3 {
  color: var(--white);
}

.sp-process-content p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sp-section--dark .sp-process-content p {
  color: rgba(250, 250, 248, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   CASE STUDIES
   ═══════════════════════════════════════════════════════════════ */
.sp-cases-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sp-case {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  background: var(--white);
}

.sp-case:hover {
  box-shadow: 0 24px 60px rgba(17, 17, 16, 0.06);
  border-color: rgba(200, 68, 10, 0.15);
}

.sp-case-header {
  padding: 40px 48px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.sp-case-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.sp-case-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.sp-case-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.sp-case-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-case-meta-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.sp-case-meta-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.sp-case-body {
  padding: 36px 48px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .sp-case-body { grid-template-columns: 1fr; gap: 28px; }
  .sp-case-header { padding: 28px 24px 24px; }
  .sp-case-body { padding: 24px; }
}

.sp-case-block h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.sp-case-block p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.sp-case-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.sp-case-tech span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(200, 68, 10, 0.06);
  color: var(--accent);
  border-radius: 100px;
}

.sp-case-outcome {
  margin-top: 16px;
  padding: 20px 24px;
  background: var(--bg-alt);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}

.sp-case-outcome p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   TECHNOLOGY GRID
   ═══════════════════════════════════════════════════════════════ */
.sp-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.sp-tech-category {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  transition: border-color 0.3s var(--ease-out);
}

.sp-tech-category:hover {
  border-color: rgba(200, 68, 10, 0.25);
}

.sp-tech-category h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.sp-tech-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-tech-item {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(250, 250, 248, 0.6);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.sp-tech-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   AUDIENCE / WHO THIS IS FOR
   ═══════════════════════════════════════════════════════════════ */
.sp-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .sp-audience-grid { grid-template-columns: 1fr; gap: 32px; }
}

.sp-audience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-audience-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s var(--ease-out);
  background: var(--white);
}

.sp-audience-item:hover {
  border-color: rgba(200, 68, 10, 0.15);
  transform: translateX(4px);
}

.sp-audience-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.sp-audience-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.sp-audience-item p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.sp-audience-not {
  padding: 32px;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.sp-audience-not h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.sp-audience-not p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.sp-audience-not p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════
   PROBLEMS WE SOLVE
   ═══════════════════════════════════════════════════════════════ */
.sp-problems-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.sp-problem {
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  transition: background 0.3s var(--ease-out);
  background: var(--white);
}

.sp-problem:last-child { border-bottom: none; }

.sp-problem:hover { background: var(--bg-alt); }

@media (max-width: 768px) {
  .sp-problem {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 24px;
  }
}

.sp-problem h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.3;
}

.sp-problem p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.sp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
}

.sp-faq-item {
  border-bottom: 1px solid var(--border);
}

.sp-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  gap: 16px;
  background: none;
  border: none;
}

.sp-faq-question:hover { color: var(--accent); }

.sp-faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--text-faint);
}

.sp-faq-item.active .sp-faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.sp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.sp-faq-item.active .sp-faq-answer {
  max-height: 600px;
}

.sp-faq-answer-inner {
  padding-bottom: 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 720px;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.sp-cta {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.sp-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(200, 68, 10, 0.15);
  filter: blur(120px);
  pointer-events: none;
}

.sp-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.sp-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.sp-cta-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(250, 250, 248, 0.55);
  line-height: 1.7;
  margin-bottom: 36px;
}

.sp-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   INTERNAL LINKS SECTION
   ═══════════════════════════════════════════════════════════════ */
.sp-related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .sp-related-services { grid-template-columns: 1fr; }
}

.sp-related-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
}

.sp-related-card:hover {
  border-color: rgba(200, 68, 10, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(17, 17, 16, 0.05);
}

.sp-related-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.sp-related-card:hover h3 { color: var(--accent); }

.sp-related-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.sp-related-arrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — Matches main site
   ═══════════════════════════════════════════════════════════════ */
.sp-footer {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 32px;
}

.sp-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .sp-footer-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

@media (max-width: 500px) {
  .sp-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.sp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 500px) {
  .sp-footer-brand { align-items: center; }
}

.sp-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

.sp-footer-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(250, 250, 248, 0.5);
  line-height: 1.6;
  max-width: 300px;
}

.sp-footer-col { display: flex; flex-direction: column; gap: 16px; }

.sp-footer-heading {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.sp-footer-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(250, 250, 248, 0.5);
  transition: color 0.2s;
  display: block;
}

.sp-footer-link:hover { color: var(--accent); }

.sp-footer-socials {
  display: flex;
  gap: 12px;
}

.sp-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 248, 0.5);
  transition: all 0.2s;
}

.sp-footer-socials a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.sp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 600px) {
  .sp-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.sp-footer-copy {
  font-size: 0.85rem;
  color: rgba(250, 250, 248, 0.4);
}
