/* =========================================================
   SERVICE PAGE MASTER DESIGN SYSTEM
   Diğer hizmet sayfalarında aynı sınıflar + içerik değişimi
   ========================================================= */

/* ----- Hero (split + soft-mask media) ----- */
.sp-hero {
  position: relative;
  padding: 16px 0 36px;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}

.sp-hero-topo {
  position: absolute;
  left: 2%;
  top: 12%;
  width: min(480px, 42vw);
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

.sp-hero .container {
  position: relative;
  z-index: 1;
}

.sp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.10fr);
  grid-template-areas: "copy media";
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}

.sp-breadcrumb {
  grid-area: copy;
  align-self: start;
  z-index: 2;
  margin: 0;
}

.sp-hero-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Reserve room for the top-pinned breadcrumb (.sp-breadcrumb shares this
     same grid-area), which can wrap to 2 lines for long service titles —
     without this, centered content could ride up under it. */
  padding: 96px 0 8px;
  gap: 0;
}

.sp-hero h1 {
  margin: 0 0 26px;
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  color: var(--ink);
  font-weight: 500;
  max-width: 18ch;
  letter-spacing: -0.02em;
}

.sp-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--ochre);
}

.sp-hero-lead {
  margin: 0 0 32px;
  max-width: 52ch;
  border-radius: 12px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

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

.sp-hero-actions .btn-solid {
  min-height: 52px;
  padding: 0 24px;
}

.sp-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}

.sp-link-play {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.85);
  flex: none;
  color: var(--ink);
}

.sp-link-play svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
  display: block;
}

.sp-link-arrow {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  flex: none;
}

.sp-link:hover {
  color: var(--moss-deep);
  gap: 14px;
}

.sp-hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.sp-hero-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-hero-trust li + li {
  padding-left: 20px;
  border-left: 1px solid var(--line-strong);
}

.sp-avatars {
  display: flex;
  align-items: center;
}

.sp-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--paper);
  margin-left: -10px;
  background: var(--paper-dim);
  box-shadow: 0 2px 8px rgba(27, 36, 32, 0.12);
}

.sp-avatars span:first-child {
  margin-left: 0;
}

.sp-avatars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-hero-trust strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
}

.sp-hero-trust small {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.sp-medal {
  position: relative;
  width: 42px;
  height: 42px;
  flex: none;
  color: var(--ochre);
}

.sp-medal svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sp-medal em {
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  height: 16px;
  display: grid;
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  color: var(--ochre);
  line-height: 1;
}

.sp-hero-media {
  grid-area: media;
  position: relative;
  margin-right: calc(var(--page-pad) * -1);
  min-height: clamp(480px, 62vh, 640px);
  align-self: stretch;
}

.sp-hero-media-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0 32px 32px 0;
}

.sp-hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.02);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 8%,
    rgba(0, 0, 0, 0.55) 18%,
    rgba(0, 0, 0, 0.88) 30%,
    #000 44%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 8%,
    rgba(0, 0, 0, 0.55) 18%,
    rgba(0, 0, 0, 0.88) 30%,
    #000 44%
  );
}

.sp-hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--paper) 0%,
    rgba(244, 241, 235, 0.88) 10%,
    rgba(244, 241, 235, 0.55) 20%,
    rgba(244, 241, 235, 0.22) 32%,
    rgba(244, 241, 235, 0.06) 42%,
    transparent 54%
  );
}

/* Hero’da eski video-card play ikonu (sadece daire) */
.sp-hero-media .sp-hero-video.video-play {
  position: absolute;
  top: 50%;
  left: 58%;
  z-index: 3;
  justify-self: auto;
  transform: translate(-50%, -50%);
}

.sp-hero-media .sp-hero-video.video-play:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.sp-hero-media .sp-hero-video.video-play:focus-visible {
  outline-color: var(--ochre);
}

.sp-scroll {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 28px auto 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.sp-scroll svg {
  width: 14px;
  height: 14px;
  display: block;
  animation: sp-scroll-bob 1.8s var(--ease) infinite;
}

.sp-scroll:hover {
  opacity: 1;
  transform: translateY(2px);
}

@keyframes sp-scroll-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* ----- Section shell ----- */
.sp-section {
  padding: clamp(40px, 5.5vw, 64px) 0;
}

.sp-section--tight {
  padding-top: clamp(24px, 3vw, 36px);
  padding-bottom: clamp(40px, 5.5vw, 64px);
}

.sp-section--about {
  padding-top: clamp(28px, 3.5vw, 44px);
}

/* ----- Icon / problem grid ----- */
#sorunlar {
  scroll-margin-top: 96px;
}

.sp-icon {
  color: var(--ochre);
}

.sp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
}

.sp-icon-grid {
  --sp-icon-cols: 4;
  --sp-icon-gap: var(--sp-process-gap, clamp(16px, 2vw, 24px));
  display: grid;
  grid-template-columns: repeat(var(--sp-icon-cols), minmax(0, 1fr));
  gap: var(--sp-icon-gap);
  justify-content: center;
  align-items: stretch;
  padding-top: 8px;
}

/* Desktop column map — card layout (variable count) */
.sp-icon-grid[data-count="1"] { --sp-icon-cols: 1; }
.sp-icon-grid[data-count="2"] { --sp-icon-cols: 2; }
.sp-icon-grid[data-count="3"] { --sp-icon-cols: 3; }
.sp-icon-grid[data-count="4"] { --sp-icon-cols: 4; }
.sp-icon-grid[data-count="5"] { --sp-icon-cols: 3; } /* 3 + 2 */
.sp-icon-grid[data-count="6"] { --sp-icon-cols: 3; } /* 3 × 2 */
.sp-icon-grid[data-count="7"] { --sp-icon-cols: 4; }
.sp-icon-grid[data-count="8"] { --sp-icon-cols: 4; }
.sp-icon-grid[data-count="9"] { --sp-icon-cols: 3; }
.sp-icon-grid[data-count="10"] { --sp-icon-cols: 4; }

.sp-icon-grid[data-count="1"] {
  max-width: 320px;
  margin-inline: auto;
}

.sp-icon-grid[data-count="2"] {
  max-width: 680px;
  margin-inline: auto;
}

#sorunlar .sp-section-head {
  margin-bottom: clamp(32px, 4vw, 44px);
}

/* Process-style problem cards */
.sp-icon-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  height: 100%;
  scroll-margin-top: 104px;
}

.sp-icon-visual {
  width: 72px;
  height: 72px;
  margin: 0 auto -36px;
  z-index: 2;
  position: relative;
}

.sp-icon-item .sp-icon {
  width: 72px;
  height: 72px;
  margin: 0;
  display: grid;
  place-items: center;
  color: var(--ochre);
  border-radius: 50%;
  border: 1px solid rgba(197, 133, 93, 0.28);
  background: #f0ebe3;
  box-shadow: 0 10px 24px -16px rgba(27, 36, 32, 0.35);
}

.sp-icon-item .sp-icon svg {
  width: 34px;
  height: 34px;
}

.sp-icon-item .sp-icon--image,
.sp-tech-icon--image {
  overflow: hidden;
  padding: 0;
}

.sp-icon-item .sp-icon--image img,
.sp-tech-icon--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.sp-icon-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 52px 18px 26px;
  border-radius: 22px;
  background: #ebe5db;
  min-height: 100%;
}

.sp-icon-item h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.28;
  max-width: none;
  hyphens: manual;
  overflow-wrap: break-word;
}

.sp-icon-item p {
  margin: 0;
  max-width: none;
  padding-inline: 2px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* 3–4 sütunda metin kolon genişliğini doldursun */
.sp-icon-grid[data-count="3"] .sp-icon-item p,
.sp-icon-grid[data-count="4"] .sp-icon-item p,
.sp-icon-grid[data-count="5"] .sp-icon-item p,
.sp-icon-grid[data-count="6"] .sp-icon-item p {
  max-width: none;
  padding-inline: 2px;
}

/* ----- Split content (Manuel terapi nedir?) ----- */
.sp-section--about .sp-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.sp-split-media {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-dim);
  position: sticky;
  top: 112px;
  align-self: start;
}

.sp-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.sp-split-copy .sp-eyebrow {
  margin-bottom: 18px;
  color: var(--ochre);
}

.sp-split-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(1.95rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.sp-split-copy > p:not(.sp-eyebrow) {
  margin: 0 0 16px;
  line-height: 1.72;
  color: var(--ink-soft);
}

.sp-split-copy > p:not(.sp-eyebrow):last-of-type {
  margin-bottom: 26px;
}

.sp-checks {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-checks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.sp-check {
  position: relative;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid rgba(197, 133, 93, 0.7);
  color: var(--ochre);
  background: transparent;
}

.sp-check svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  max-width: none;
  margin: 0;
  transform: translate(-50%, -50%);
  display: block;
}

/* ----- Process steps (alt hizmet — mockup card + CTA) ----- */
#surec {
  --sp-process-gap: clamp(16px, 2vw, 24px);
  scroll-margin-top: 96px;
}

#surec .sp-section-lead {
  max-width: 42rem;
  margin-inline: auto;
}

#surec .sp-process-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

#surec .sp-process {
  align-items: stretch;
  gap: var(--sp-process-gap);
  padding-top: 8px;
  margin: 0;
}

#surec .sp-process-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  height: 100%;
}

#surec .sp-process-visual {
  width: 72px;
  height: 72px;
  margin: 0 auto -36px;
  z-index: 2;
}

#surec .sp-process-icon {
  width: 72px;
  height: 72px;
  background: #f0ebe3;
  border: 1px solid rgba(197, 133, 93, 0.28);
  box-shadow: 0 10px 24px -16px rgba(27, 36, 32, 0.35);
}

#surec .sp-process-icon svg {
  width: 34px;
  height: 34px;
}

#surec .sp-process-num {
  top: -2px;
  left: -4px;
  background: #f7f2ea;
}

#surec .sp-process-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 52px 18px 26px;
  border-radius: 22px;
  background: #ebe5db;
  /* No `min-height: 100%` — .sp-process-item never stretches its children to a
     shared row height (the grid uses align-items:start), so this had no
     effect there. But `min-height: 100%` against the flex column's
     indeterminate auto-height overshot by ~36px (matching .sp-process-visual's
     negative margin-bottom), so the last card's body overflowed past its own
     item box and visually swallowed the CTA's margin-top on the single-column
     mobile layout — the same beige background made the seam invisible,
     reading as the CTA card being glued directly under it. */
}

#surec .sp-process-body h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  font-weight: 600;
  line-height: 1.28;
  color: var(--ink);
}

#surec .sp-process-body p {
  margin: 0;
  max-width: none;
  padding-inline: 2px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Card backgrounds make step connectors look orphaned — hide on this layout */
#surec .sp-process-item:not(:last-child)::after,
#surec .sp-process-item:not(:last-child)::before {
  content: none;
  display: none;
}

#surec .sp-process-stack > .sp-process-cta,
#surec .sp-process-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  margin: 0;
  /* Same spacing as between the process cards themselves. */
  margin-top: var(--sp-process-gap);
  padding: clamp(18px, 2.2vw, 24px) clamp(18px, 2.5vw, 28px);
  border-radius: 22px;
  background: #ebe5db;
}

#surec .sp-process-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  flex: none;
}

#surec .sp-process-cta-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

#surec .sp-process-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

#surec .sp-process-cta-copy strong {
  font-family: "Newsreader", serif;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

#surec .sp-process-cta-copy span {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

#surec .sp-process-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--moss-deep);
  color: #f4f1eb;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}

#surec .sp-process-cta-btn:hover {
  background: #24362d;
  transform: translateY(-1px);
}

#surec .sp-process-cta-btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

@media (max-width: 900px) {
  #surec .sp-process-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  #surec .sp-process-cta-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  #surec .sp-process-cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  #surec .sp-process-cta-btn {
    white-space: normal;
    text-wrap: balance;
  }
}

/* ----- Case study ----- */
.sp-case {
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a2a22 0%, #213129 55%, #1b2620 100%);
  color: #f4f1eb;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding: clamp(32px, 4.5vw, 52px);
}

.sp-case .sp-eyebrow,
.sp-eyebrow--case {
  color: var(--ochre);
  margin-bottom: 14px;
}

.sp-case h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.12;
  color: #fff;
  font-weight: 500;
}

.sp-case > .sp-case-copy > p:not(.sp-eyebrow) {
  margin: 0 0 28px;
  max-width: 46ch;
  line-height: 1.65;
  color: rgba(244, 241, 235, 0.72);
}

.sp-case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 0;
}

.sp-case-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 18px;
  border-right: 1px solid rgba(244, 241, 235, 0.16);
}

.sp-case-stats > div:first-child {
  padding-left: 0;
}

.sp-case-stats > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.sp-case-stat-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
  color: rgba(244, 241, 235, 0.75);
}

.sp-case-stat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sp-case-stats strong {
  display: block;
  font-family: "Newsreader", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
}

.sp-case-stats span:not(.sp-case-stat-icon) {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(244, 241, 235, 0.55);
}

.sp-case-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #111815;
}

.sp-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

.sp-case-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.sp-case-play span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4f1eb;
  color: var(--ink);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s var(--ease);
}

.sp-case-play span svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.sp-case-play:hover span {
  transform: scale(1.05);
}

/* ----- Technique cards (3x3) ----- */
#teknikler {
  scroll-margin-top: 96px;
}

.sp-section-lead {
  margin: 16px auto 0;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.sp-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.sp-tech-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 100%;
  padding: clamp(26px, 3vw, 34px);
  border-radius: 24px;
  background: #f1efe9;
  border: 1px solid rgba(27, 36, 32, 0.05);
  scroll-margin-top: 104px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.sp-tech-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -28px rgba(27, 36, 32, 0.35);
}

.sp-tech-icon {
  width: 72px;
  height: 72px;
  margin: 0 0 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(197, 133, 93, 0.22);
  background: color-mix(in srgb, var(--ochre) 10%, var(--paper));
  color: var(--ochre);
}

.sp-tech-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.sp-tech-icon--image img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 0;
}

.sp-tech-card h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.sp-tech-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ----- Founder quote ----- */
.sp-quote {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #f3eee7;
  position: relative;
  box-shadow: 0 14px 36px -30px rgba(27, 36, 32, 0.3);
}

.sp-quote-photo {
  position: relative;
  /* Fixed, not min-height:100% — that percentage had no definite row height
     to resolve against (the grid row's own height comes FROM this column's
     content), so the photo's natural aspect ratio ended up dictating the
     whole block's height instead of the short quote text. A fixed height
     plus object-fit:cover on the img crops any photo (portrait or
     landscape) to the same block size instead. */
  height: 400px;
  background: var(--paper-dim);
}

.sp-quote-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 48%,
    rgba(243, 238, 231, 0.55) 78%,
    #f3eee7 100%
  );
  pointer-events: none;
}

.sp-quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.sp-quote blockquote {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px clamp(28px, 3.5vw, 48px) 28px clamp(12px, 2vw, 24px);
}

.sp-quote-mark {
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: "Newsreader", serif;
  font-size: 5.5rem;
  line-height: 0.7;
  color: rgba(197, 133, 93, 0.14);
  pointer-events: none;
  user-select: none;
}

.sp-quote .sp-eyebrow {
  margin: 0 0 12px;
  color: var(--ochre);
}

.sp-quote #spQuoteTitle,
.sp-quote blockquote > p:not(.sp-eyebrow) {
  margin: 0 0 18px;
  font-family: "Newsreader", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.sp-quote #spQuoteTitle em,
.sp-quote blockquote > p:not(.sp-eyebrow) em {
  font-style: italic;
  color: var(--ochre);
}

.sp-quote cite {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.sp-quote cite span {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ----- FAQ (categorized) ----- */
.sp-faq {
  padding: clamp(40px, 5vw, 60px) 0 clamp(20px, 2.5vw, 28px);
  background: transparent;
}

.sp-faq .sp-section-head {
  margin-bottom: clamp(32px, 4vw, 44px);
}

.sp-faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.88fr) minmax(0, 1.32fr);
  gap: 20px;
  align-items: stretch;
}

.sp-faq-cats {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 6px 0;
  border-radius: 18px;
  background: #f7f3ed;
  border: 1px solid rgba(27, 36, 32, 0.08);
  box-shadow: none;
  overflow: hidden;
}

.sp-faq-cat {
  width: 100%;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(27, 36, 32, 0.08);
  background: transparent;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.sp-faq-cat:last-child {
  border-bottom: 0;
}

.sp-faq-cat-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: transparent;
  color: var(--ochre);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.sp-faq-cat-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.sp-faq-cat-chev {
  width: 14px;
  height: 14px;
  opacity: 0.35;
  color: var(--ink-soft);
  display: block;
}

.sp-faq-cat:hover {
  background: rgba(255, 255, 255, 0.45);
}

.sp-faq-cat.is-active {
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.sp-faq-cat.is-active .sp-faq-cat-icon {
  background: #1f2824;
  color: #fff;
}

.sp-faq-cat.is-active .sp-faq-cat-chev {
  color: var(--ink-soft);
  opacity: 0.45;
}

.sp-faq-panel {
  min-width: 0;
  padding: 10px 26px 12px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(27, 36, 32, 0.06);
  box-shadow: 0 10px 28px -22px rgba(27, 36, 32, 0.28);
}

.page-service .sp-faq .faq-list {
  border-top: 0;
}

.page-service .sp-faq .faq-item {
  border-bottom: 1px solid rgba(27, 36, 32, 0.1);
}

.page-service .sp-faq .faq-item:last-child {
  border-bottom: 0;
}

.page-service .sp-faq .faq-item[hidden] {
  display: none;
}

.page-service .sp-faq .faq-q {
  padding: 20px 2px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}

.page-service .sp-faq .faq-a > p {
  max-width: 52ch;
  padding-left: 2px;
  padding-right: 2px;
  font-size: 0.94rem;
  line-height: 1.65;
}

.sp-process-icon-custom,
.sp-case-stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.sp-process-icon-custom {
	width: 100%;
	height: 100%;
}

.sp-process-icon-custom img,
.sp-case-stat-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* FAQ icons → shared homepage +/− (.faq-icon in main.css) */

/* ----- Responsive ----- */
@media (max-width: 1100px) {
  .sp-icon-grid,
  .sp-icon-grid[data-count] {
    --sp-icon-cols: 3;
    max-width: none;
  }

  .sp-icon-grid[data-count="1"] {
    --sp-icon-cols: 1;
    max-width: 320px;
  }

  .sp-icon-grid[data-count="2"] {
    --sp-icon-cols: 2;
    max-width: 680px;
  }
}

@media (max-width: 900px) {
  .sp-hero-grid,
  .sp-section--about .sp-split,
  .sp-split,
  .sp-case,
  .sp-faq-layout {
    grid-template-columns: 1fr;
  }

  .sp-section--about .sp-split {
    gap: 22px;
  }

  .sp-split-copy h2 {
    max-width: none;
    font-size: clamp(1.55rem, 6.2vw, 2rem);
  }

  .sp-split-copy > p:not(.sp-eyebrow) {
    max-width: none;
  }

  .sp-faq-cats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 4px;
    margin-inline: calc(-1 * var(--page-pad));
    padding-inline: var(--page-pad);
    border-radius: 0;
    background: transparent;
    border: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--page-pad);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
	touch-action: pan-x pan-y pinch-zoom;
    scrollbar-width: none;
  }

  .sp-faq-cats::-webkit-scrollbar {
    display: none;
  }

  .sp-faq-cat {
    flex: 0 0 auto;
    width: auto;
    display: inline-flex;
    grid-template-columns: none;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border-bottom: 0;
    background: #f7f3ed;
    border: 1px solid rgba(27, 36, 32, 0.08);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .sp-faq-cat:last-child {
    border-bottom: 0;
  }

  .sp-faq-cat-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
  }

  .sp-faq-cat-icon svg {
    width: 15px;
    height: 15px;
  }

  .sp-faq-cat-chev {
    display: none;
  }

  .sp-faq-cat:hover {
    background: #fff;
  }

  .sp-faq-cat.is-active {
    background: #1f2824;
    border-color: #1f2824;
    color: #f4f1eb;
  }

  .sp-faq-cat.is-active .sp-faq-cat-icon {
    background: rgba(244, 241, 235, 0.12);
    color: #f4f1eb;
  }

  .sp-hero {
    padding: 0 0 28px;
  }

  .sp-hero .container {
    padding-inline: 0;
  }

  .sp-hero-topo {
    display: none;
  }

  .sp-hero-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sp-breadcrumb {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 5;
    margin: 0;
    padding: 0 var(--page-pad);
    grid-area: auto;
  }

  .sp-breadcrumb nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  }

  .sp-breadcrumb nav,
  .sp-breadcrumb a {
    color: rgba(244, 241, 235, 0.9);
  }

  .sp-breadcrumb a:hover {
    color: #fff;
  }

  .sp-breadcrumb [aria-current="page"] {
    color: #fff;
    font-weight: 600;
  }

  .sp-breadcrumb .sep {
    color: rgba(244, 241, 235, 0.5);
    opacity: 1;
  }

  .sp-hero-media {
    order: 1;
    grid-area: auto;
    margin: 0;
    width: 100%;
    max-width: none;
    min-height: 0;
    height: clamp(260px, 68vw, 360px);
  }

  .sp-scroll {
    display: none;
  }

  .sp-hero-media-frame {
    position: relative;
    inset: auto;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
  }

  .sp-hero-media .sp-hero-video.video-play {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .sp-hero-media .sp-hero-video.video-play:hover {
    transform: translate(-50%, -50%) scale(1.04);
  }

  .sp-hero-media-frame img {
    border-radius: 0;
    -webkit-mask-image: none;
    mask-image: none;
    transform: none;
    object-fit: cover;
    object-position: 55% 28%;
  }

  .sp-hero-media-frame::after {
    border-radius: 0;
    background:
      linear-gradient(
        180deg,
        rgba(12, 18, 16, 0.58) 0%,
        rgba(12, 18, 16, 0.2) 32%,
        transparent 52%
      ),
      linear-gradient(
        180deg,
        transparent 58%,
        rgba(244, 241, 235, 0.4) 84%,
        var(--paper) 100%
      );
  }

  .sp-hero-copy {
    order: 2;
    grid-area: auto;
    padding: 18px var(--page-pad) 0;
  }

  .sp-hero .sp-kicker {
    margin-bottom: 12px;
  }

  .sp-hero h1 {
    max-width: none;
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    line-height: 1.12;
  }

  .sp-section-head h2 {
    max-width: none;
  }

  .sp-hero-lead {
    margin: 0 0 18px;
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .sp-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
  }

  .sp-hero-actions .btn-solid {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .sp-link {
    justify-content: center;
    gap: 10px;
    font-size: 0.88rem;
  }

  .sp-link-play {
    width: 36px;
    height: 36px;
  }

  .sp-link-play svg {
    width: 15px;
    height: 15px;
  }

  .sp-hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }

  .sp-hero-trust li {
    gap: 10px;
    padding: 12px 10px;
    min-width: 0;
  }

  .sp-hero-trust li + li {
    padding-left: 10px;
    border-left: 1px solid rgba(27, 36, 32, 0.1);
  }

  .sp-avatars span {
    width: 28px;
    height: 28px;
    margin-left: -8px;
  }

  .sp-medal {
    width: 34px;
    height: 34px;
  }

  .sp-hero-trust strong {
    font-size: 0.86rem;
  }

  .sp-hero-trust small {
    font-size: 0.68rem;
  }

  .sp-split-media {
    aspect-ratio: 5 / 4;
    border-radius: 28px;
    max-height: 420px;
    position: static;
  }

  .sp-case {
    gap: 22px;
    padding: 26px 18px 20px;
    border-radius: 28px;
  }

  .sp-case-copy {
    order: 2;
  }

  .sp-case-media {
    order: 1;
    border-radius: 18px;
    aspect-ratio: 16 / 10;
  }

  .sp-case h2 {
    margin: 0 0 10px;
    font-size: clamp(1.45rem, 5.8vw, 1.85rem);
    line-height: 1.15;
  }

  .sp-case > .sp-case-copy > p:not(.sp-eyebrow) {
    margin: 0 0 18px;
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .sp-case-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 6px;
    padding: 14px 8px 4px;
    border-top: 1px solid rgba(244, 241, 235, 0.14);
  }

  .sp-case-stats > div {
    align-items: center;
    text-align: center;
    gap: 2px;
    padding: 4px 8px;
    border-right: 1px solid rgba(244, 241, 235, 0.14);
    border-bottom: 0;
  }

  .sp-case-stats > div:first-child {
    padding-left: 4px;
  }

  .sp-case-stats > div:last-child {
    padding-right: 4px;
    border-right: 0;
  }

  .sp-case-stat-icon {
    width: 18px;
    height: 18px;
    margin: 0 auto 8px;
    color: rgba(197, 133, 93, 0.9);
  }

  .sp-case-stats strong {
    font-size: 1.12rem;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .sp-case-stats span:not(.sp-case-stat-icon) {
    font-size: 0.68rem;
    line-height: 1.3;
    max-width: 11ch;
  }

  .sp-case-play span {
    width: 56px;
    height: 56px;
  }

  .sp-case-play span svg {
    width: 18px;
    height: 18px;
  }

  .sp-quote {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .sp-quote-photo {
    min-height: clamp(300px, 72vw, 420px);
    height: clamp(300px, 72vw, 420px);
    max-height: none;
  }

  .sp-quote-photo img {
    object-position: center 14%;
  }

  .sp-quote-photo::after {
    background: linear-gradient(
      180deg,
      transparent 52%,
      rgba(243, 238, 231, 0.45) 78%,
      #f3eee7 100%
    );
  }

  .sp-quote blockquote {
    padding: 22px 22px 26px;
  }

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

@media (max-width: 640px) {
  .sp-icon-grid,
  .sp-icon-grid[data-count] {
    --sp-icon-cols: 2;
    max-width: none;
    gap: var(--sp-icon-gap, clamp(16px, 2vw, 24px));
  }

  .sp-icon-grid[data-count="1"] {
    --sp-icon-cols: 1;
    max-width: 280px;
  }

  .sp-case {
    padding: 22px 16px 18px;
  }

  .sp-case-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
    padding: 12px 0 2px;
    border-top: 1px solid rgba(244, 241, 235, 0.14);
  }

  .sp-case-stats > div {
    align-items: center;
    text-align: center;
    gap: 2px;
    padding: 10px 6px;
    border-radius: 14px;
    border-right: 0;
    border-bottom: 0;
    background: rgba(244, 241, 235, 0.06);
  }

  .sp-case-stats > div:first-child,
  .sp-case-stats > div:last-child {
    padding-left: 6px;
    padding-right: 6px;
  }

  .sp-case-stat-icon {
    width: 16px;
    height: 16px;
    margin: 0 auto 6px;
    color: rgba(197, 133, 93, 0.95);
  }

  .sp-case-stats strong {
    font-size: clamp(1rem, 4.2vw, 1.15rem);
    font-weight: 500;
    line-height: 1.1;
  }

  .sp-case-stats span:not(.sp-case-stat-icon) {
    font-size: 0.64rem;
    line-height: 1.25;
    max-width: 10ch;
    margin-inline: auto;
  }

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

  .sp-faq-cats {
    padding-bottom: 2px;
  }

  .sp-faq-panel {
    padding: 6px 16px;
  }
}

@media (max-width: 420px) {
  .sp-icon-grid,
  .sp-icon-grid[data-count] {
    --sp-icon-cols: 1;
    gap: var(--sp-icon-gap, clamp(16px, 2vw, 24px));
  }

  .sp-icon-grid[data-count="1"] {
    max-width: 280px;
    margin-inline: auto;
  }
}

/* ----- Parent hub (üst hizmet) pages ----- */
.page-service--hub .sp-hero {
  padding: 8px 0 8px;
}

.page-service--hub .sp-breadcrumb {
  margin-bottom: 12px;
}

.page-service--hub .sp-hero-copy {
  /* Reserve room for the top-pinned .sp-breadcrumb sharing this grid-area —
     it can wrap to 2 lines for long service titles (see base .sp-hero-copy). */
  padding-top: 56px;
  padding-bottom: 0;
}

.page-service--hub .sp-hero h1 {
  margin-bottom: 14px;
}

.page-service--hub .sp-hero-lead {
  margin-bottom: 18px;
}

.page-service--hub .sp-hero-media {
  min-height: clamp(360px, 48vh, 480px);
}

.page-service--hub .sp-hero-media-frame img {
  object-fit: cover;
}

.page-service--hub .page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.page-service--hub > .sp-section {
  padding: clamp(28px, 3.8vw, 44px) 0;
}

.page-service--hub .video-section {
  padding-bottom: clamp(24px, 3.5vw, 36px);
}

.page-service--hub .page-cta {
  padding: 4px 0 clamp(16px, 2.5vw, 24px);
}

.page-service--hub .page-cta-banner {
  min-height: 0;
}

.page-service--hub .page-cta-banner-inner {
  padding: clamp(24px, 3vw, 32px) clamp(24px, 3.4vw, 40px);
  gap: clamp(20px, 3vw, 36px);
}

.sp-hub-jump {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.sp-hub-jump svg {
  width: 16px;
  height: 16px;
}

.sp-hub-jump:hover {
  color: var(--ochre);
}

.sp-section--hub-intro {
  position: relative;
  padding-top: clamp(36px, 5vw, 64px) !important;
  padding-bottom: clamp(40px, 5.5vw, 72px) !important;
}

.sp-hub-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.sp-hub-intro-aside {
  padding-top: 4px;
}

.sp-hub-intro-aside .sp-kicker {
  margin-bottom: 18px;
}

.sp-hub-intro-aside h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sp-hub-intro-body {
  padding-top: 6px;
}

.sp-hub-intro-body > p {
  margin: 0 0 1.15em;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--ochre-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.sp-hub-intro-body > p:first-child {
  margin-top: 0;
}

.sp-hub-intro-body > p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.sp-section--hub-process {
  background: transparent;
  border: 0;
  padding-top: clamp(12px, 2vw, 20px) !important;
  padding-bottom: clamp(48px, 6vw, 80px) !important;
}

.sp-hub-process-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(32px, 4.5vw, 48px);
}

.sp-hub-process-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
}

.sp-hub-process-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sp-hub-process-mark::before,
.sp-hub-process-mark::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.sp-hub-process-mark i {
  width: 7px;
  height: 7px;
  border: 1.25px solid currentColor;
  transform: rotate(45deg);
  flex: none;
}

.sp-hub-process-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sp-hub-process-head .sp-section-lead {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.page-service--hub .sp-section-head {
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.page-service--hub .sp-section-lead {
  margin-top: 10px;
  margin-bottom: 0;
  max-width: 48ch;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.sp-hub-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

.sp-hub-process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(26px, 3vw, 34px) clamp(18px, 2.2vw, 26px) clamp(28px, 3vw, 36px);
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(27, 36, 32, 0.06);
  box-shadow: 0 18px 40px -28px rgba(27, 36, 32, 0.35);
}

.sp-hub-process-num {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
  gap: 6px;
  margin-bottom: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ochre);
  line-height: 1;
}

.sp-hub-process-num::after {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.85;
}

.sp-hub-process-icon {
  width: 84px;
  height: 84px;
  margin: 0 0 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(197, 133, 93, 0.28);
  background: rgba(197, 133, 93, 0.08);
  color: var(--ochre);
}

.sp-hub-process-icon svg {
  width: 46px;
  height: 46px;
  display: block;
}

.sp-hub-process-item h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sp-hub-process-item p {
  margin: 0;
  max-width: 28ch;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.sp-section--hub-children {
  position: relative;
  padding-top: clamp(36px, 5vw, 56px) !important;
  padding-bottom: clamp(40px, 5.5vw, 72px) !important;
}

.sp-hub-children-head {
  position: relative;
  margin-bottom: clamp(28px, 4vw, 40px);
  max-width: 46rem;
}

.sp-hub-children-head .sp-kicker {
  margin-bottom: 16px;
}

.sp-hub-children-head h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3.3vw, 2.65rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sp-hub-children-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.sp-hub-children-meta-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(197, 133, 93, 0.35);
  color: var(--ochre);
  flex: none;
}

.sp-hub-children-meta-icon svg {
  width: 15px;
  height: 15px;
}

.sp-hub-children-meta strong {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.sp-hub-children-meta-sep {
  width: 1px;
  height: 16px;
  background: rgba(27, 36, 32, 0.18);
  flex: none;
}

.sp-hub-child-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sp-hub-child {
  min-width: 0;
}

.sp-hub-child-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 100%;
  padding: 22px 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(27, 36, 32, 0.07);
  background: #fff;
  box-shadow: 0 16px 36px -28px rgba(27, 36, 32, 0.35);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.sp-hub-child-link:hover {
  border-color: rgba(197, 133, 93, 0.32);
  box-shadow: 0 20px 40px -26px rgba(27, 36, 32, 0.42);
  transform: translateY(-2px);
}

.sp-hub-child-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.sp-hub-child-num {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ochre);
  line-height: 1;
}

.sp-hub-child-body h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.sp-hub-child-body p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.sp-hub-child-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ochre);
}

.sp-hub-child-more svg {
  width: 15px;
  height: 15px;
}

.sp-hub-child-link:hover .sp-hub-child-more {
  color: #b8744a;
}

.sp-hub-child-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--ochre);
  flex: none;
}

.sp-hub-child-icon svg {
  width: 44px;
  height: 44px;
  display: block;
}

.sp-hub-child-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.sp-hub-child-media {
  width: clamp(96px, 12vw, 132px);
  aspect-ratio: 1;
  flex: none;
  align-self: stretch;
  max-height: 148px;
  border-radius: 14px;
  overflow: hidden;
  background: #efe8df;
  box-shadow: inset 0 0 0 1px rgba(27, 36, 32, 0.06);
}

.sp-hub-child-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease);
}

.sp-hub-child-link:hover .sp-hub-child-media img {
  transform: scale(1.04);
}

.sp-hub-children-features {
  list-style: none;
  margin: clamp(36px, 5vw, 52px) 0 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 20px;
  border-top: 1px solid rgba(27, 36, 32, 0.08);
}

.sp-hub-children-features li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.sp-hub-children-feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(197, 133, 93, 0.28);
  color: var(--ochre);
  background: rgba(197, 133, 93, 0.06);
  flex: none;
}

.sp-hub-children-feature-icon svg {
  width: 22px;
  height: 22px;
}

.sp-hub-children-features strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.sp-hub-children-features small {
  display: block;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.sp-section--hub-faq {
  padding-top: clamp(36px, 5vw, 56px) !important;
  padding-bottom: clamp(40px, 5.5vw, 64px) !important;
}

.sp-hub-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.sp-hub-faq-intro .sp-kicker {
  margin: 0 0 14px;
}

.sp-hub-faq-intro h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sp-hub-faq-intro > p:not(.eyebrow):not(.sp-kicker) {
  margin: 16px 0 0;
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.sp-hub-faq-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.sp-hub-faq-more svg {
  width: 16px;
  height: 16px;
}

.sp-hub-faq-more:hover {
  color: var(--ochre);
}

.sp-hub-faq-list.faq-list {
  border-top: 1px solid rgba(27, 36, 32, 0.12);
}

.page-service--hub .sp-hub-faq .faq-q {
  padding: 22px 2px;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 600;
}

.page-service--hub .sp-hub-faq .faq-a > p {
  max-width: none !important;
  width: 100%;
}

@media (max-width: 900px) {
  .sp-hub-intro,
  .sp-hub-faq,
  .sp-hub-process {
    grid-template-columns: 1fr;
  }

  .sp-hub-faq-intro h2 {
    max-width: none;
  }

  .sp-hub-faq-intro > p:not(.eyebrow):not(.sp-kicker) {
    max-width: none;
  }

  .sp-hub-intro-aside h2 {
    max-width: 16ch;
  }

  .sp-hub-child-grid,
  .sp-hub-children-features {
    grid-template-columns: 1fr;
  }

  .sp-hub-children-head h2 {
    max-width: none;
  }

  .page-service--hub .page-cta-banner-inner {
    padding: 22px 18px 18px;
  }
}

@media (max-width: 640px) {
  .sp-hub-process {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .sp-hub-intro-aside h2 {
    max-width: none;
  }

  .sp-hub-child-link {
    padding: 18px 16px 16px;
  }

  .sp-hub-child-icon {
    width: 48px;
    height: 48px;
  }

  .sp-hub-child-icon svg,
  .sp-hub-child-icon img {
    width: 38px;
    height: 38px;
  }

  .sp-hub-child-media {
    width: 84px;
    max-height: 110px;
    border-radius: 12px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .sp-hub-children-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-hub-child-link,
  .sp-hub-child-link:hover {
    transition: none;
    transform: none;
  }
}
