/* ========== Inner service page ========== */
.sp {
  color: #1a1a1a;
  background: #f6f4ee;
  overflow-x: hidden;
}

/* Breadcrumb — sits under fixed floating header */
.sp-crumb {
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
  padding: 110px 0 0;
  position: relative;
  z-index: 2;
}

.sp-crumb ol {
  list-style: none;
  margin: 0;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.45);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 17, 16, 0.06);
  backdrop-filter: blur(12px);
  width: fit-content;
  max-width: 100%;
}

.sp-crumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sp-crumb a {
  text-decoration: none;
  color: rgba(26, 26, 26, 0.58);
  transition: color 0.2s ease;
}

.sp-crumb a:hover { color: #1a1a1a; }

.sp-crumb li:not(:last-child)::after {
  content: "/";
  color: rgba(26, 26, 26, 0.22);
  font-weight: 500;
}

.sp-crumb [aria-current="page"],
.sp-crumb span[itemprop="name"] {
  color: #1a1a1a;
}

/* Hero */
.sp-hero {
  position: relative;
  min-height: min(88svh, 880px);
  display: flex;
  align-items: flex-end;
  padding: 28px 0 56px;
  margin-top: -52px;
  color: #fff;
  isolation: isolate;
}

.sp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0b0e0c;
}

.sp-hero__media video,
.sp-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.sp-hero__poster {
  z-index: 1;
  transition: opacity 0.5s ease;
}

.sp-hero__poster.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.sp-hero__video {
  z-index: 0;
}

.sp-btn--on-lime {
  border-color: rgba(26, 26, 26, 0.2) !important;
  color: #1a1a1a !important;
  background: rgba(255, 255, 255, 0.35) !important;
}

.sp-btn--on-lime:hover {
  background: #1a1a1a !important;
  color: #fff !important;
  border-color: #1a1a1a !important;
}

.sp-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 9, 0.55) 0%, rgba(8, 10, 9, 0.42) 40%, rgba(8, 10, 9, 0.88) 100%),
    radial-gradient(ellipse 55% 50% at 70% 30%, rgba(214, 224, 44, 0.16), transparent 55%);
}

.sp-hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}

.sp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.sp-hero__badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green, #d6e02c);
  box-shadow: 0 0 0 5px rgba(214, 224, 44, 0.18);
}

.sp-hero h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.sp-hero h1 em {
  font-style: normal;
  color: var(--brand-green, #d6e02c);
}

.sp-hero__lead {
  margin: 22px 0 0;
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.sp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.sp-btn:hover { transform: translateY(-2px); }

.sp-btn--primary {
  background: var(--brand-green, #d6e02c);
  color: #1a1a1a !important;
}

.sp-btn--primary:hover {
  background: #e4ed5c;
  color: #1a1a1a !important;
}

.sp-btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.sp-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.sp-btn--dark {
  background: #1a1a1a;
  color: #ffffff !important;
}

.sp-btn--dark:hover {
  background: #0b0e0c;
  color: #ffffff !important;
}

.sp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sp-hero__meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

/* Shared layout */
.sp-wrap {
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}

.sp-section {
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
}

.sp-kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.42);
}

.sp-title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.sp-lead {
  margin: 16px 0 0;
  max-width: 40rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.58);
}

/* Intro split */
.sp-intro {
  background: #fbfaf7;
}

.sp-intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.sp-intro__visual {
  position: relative;
  min-height: 480px;
}

.sp-intro__frame {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 17, 16, 0.12);
}

.sp-intro__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-intro__float {
  position: absolute;
  right: -12px;
  bottom: 28px;
  z-index: 2;
  width: min(240px, 70%);
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 20px 50px rgba(15, 17, 16, 0.12);
  animation: spFloat 6s ease-in-out infinite;
}

.sp-intro__float strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.sp-intro__float span {
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.55);
  line-height: 1.45;
}

@keyframes spFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.sp-intro__copy .sp-lead { margin-top: 18px; }

.sp-checklist {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.sp-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.78);
}

.sp-checklist i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(214, 224, 44, 0.22);
  color: #1a1a1a;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Feature bands */
.sp-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  background: #fff;
}

.sp-band:nth-child(even) .sp-band__media { order: 2; }
.sp-band:nth-child(even) .sp-band__copy { order: 1; }

.sp-band__media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #111411;
}

.sp-band__media img,
.sp-band__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-band:hover .sp-band__media img {
  transform: scale(1.05);
}

.sp-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 72px);
  background: #fbfaf7;
}

.sp-band__copy .sp-kicker { color: rgba(26, 26, 26, 0.4); }

.sp-band__copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.sp-band__copy p {
  margin: 16px 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.6);
  max-width: 38ch;
}

/* Deliverables */
.sp-deliver {
  background: #111411;
  color: #fff;
}

.sp-deliver .sp-kicker { color: rgba(214, 224, 44, 0.9); }
.sp-deliver .sp-title { color: #fff; }
.sp-deliver .sp-lead { color: rgba(255, 255, 255, 0.58); }

.sp-deliver__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.sp-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.sp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 224, 44, 0.35);
  background: rgba(214, 224, 44, 0.08);
}

.sp-card__num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(214, 224, 44, 0.16);
  color: var(--brand-green, #d6e02c);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.sp-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.sp-card p {
  margin: 10px 0 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

/* Process strip */
.sp-process {
  background: #f6f4ee;
}

.sp-process__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.sp-step {
  position: relative;
  padding: 26px 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 16px 40px rgba(15, 17, 16, 0.05);
}

.sp-step__n {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-green, #b8c21f);
}

.sp-step h3 {
  margin: 14px 0 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.sp-step p {
  margin: 10px 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.58);
}

/* Work samples */
.sp-work {
  background: #fff;
}

.sp-work__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.sp-work-card {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
}

.sp-work-card--tall { min-height: 100%; grid-row: span 2; }

.sp-work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-work-card:hover img { transform: scale(1.08); }

.sp-work-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.15) 0%, rgba(8, 10, 9, 0.55) 45%, rgba(8, 10, 9, 0.9) 100%);
  z-index: 1;
}

.sp-work-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  color: #ffffff;
}

.sp-work-card__body small {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green, #d6e02c);
  margin-bottom: 8px;
}

.sp-work-card__body strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff !important;
}

.sp-work-stack {
  display: grid;
  gap: 16px;
}

/* FAQ */
.sp-faq {
  background: #fbfaf7;
}

.sp-faq__list {
  margin-top: 36px;
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.sp-faq__item {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  overflow: hidden;
}

.sp-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sp-faq__item summary::-webkit-details-marker { display: none; }

.sp-faq__item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(26, 26, 26, 0.05);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.sp-faq__item[open] summary::after {
  content: "–";
  background: var(--brand-green, #d6e02c);
}

.sp-faq__item p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.6);
}

/* CTA */
.sp-cta {
  background: var(--brand-green, #d6e02c);
  padding: clamp(72px, 10vw, 110px) 0;
  position: relative;
  overflow: hidden;
}

.sp-cta__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  text-align: center;
}

.sp-cta h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #1a1a1a;
}

.sp-cta p {
  margin: 18px auto 0;
  max-width: 34rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.72);
}

.sp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.sp-cta::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -100px;
  top: -140px;
  border-radius: 50%;
  border: 70px solid rgba(255, 255, 255, 0.18);
}

/* Related */
.sp-related {
  background: #fff;
  padding-bottom: clamp(72px, 10vw, 110px);
}

.sp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.sp-related a {
  display: block;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.sp-related a:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 224, 44, 0.5);
  box-shadow: 0 16px 40px rgba(15, 17, 16, 0.08);
}

.sp-related strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.sp-related span {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.55);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .sp-intro__grid,
  .sp-band,
  .sp-work__grid,
  .sp-deliver__grid,
  .sp-process__track,
  .sp-related__grid {
    grid-template-columns: 1fr;
  }

  .sp-band:nth-child(even) .sp-band__media,
  .sp-band:nth-child(even) .sp-band__copy {
    order: initial;
  }

  .sp-band__media {
    min-height: 300px;
  }

  .sp-intro__visual {
    min-height: 380px;
  }

  .sp-work-card--tall {
    min-height: 320px;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .sp-hero__actions .sp-btn,
  .sp-cta__actions .sp-btn {
    width: 100%;
  }

  .sp-intro__float {
    right: 12px;
    bottom: 12px;
  }

  .sp-deliver__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-intro__float {
    animation: none;
  }

  .sp-hero__media video {
    display: none;
  }
}
