/* WorkSprout — Services page */

:root {
  --page-frame-width: min(calc(100% - 24px), 1520px);
}

.page-services {
  margin: 0;
  font-family: Cabin, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #061525;
  background-image:
    url('../images/texture.png'),
    linear-gradient(130deg, #032e49 0%, #094a67 38%, #0d6b7a 68%, #3be79b 100%);
  background-size: cover, 220% 220%;
  background-position: center, 0% 50%;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  animation: svBgFlow 16s ease-in-out infinite alternate;
  min-height: 100vh;
}

body.page-services .lt-footer {
  position: static !important;
  transform: none !important;
  left: auto !important;
  bottom: auto !important;
  width: min(97.5vw, 1520px) !important;
  margin: 24px auto 24px !important;
}

@keyframes svBgFlow {
  0% { background-position: center, 0% 50%; }
  50% { background-position: center, 100% 50%; }
  100% { background-position: center, 50% 100%; }
}

.page-services .reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 10050;
  background: linear-gradient(90deg, #42d1b3, #9cffd2);
  box-shadow: 0 0 12px rgba(66, 209, 179, 0.55);
  opacity: 0;
  transition: width 0.12s linear, opacity 0.2s ease;
}

.page-services .reading-progress.active { opacity: 1; }

.sv-wrap {
  width: var(--page-frame-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* Home-aligned content shell — used for footer CTA (no sv-wrap side padding). */
.sw {
  width: var(--page-frame-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.page-services .fu {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.page-services .fu.vis {
  opacity: 1;
  transform: translateY(0);
}

.sv-main {
  padding-top: 108px;
  padding-bottom: 80px;
}

/* CTA is last in .sv-main — avoid triple gap (main padding + CTA padding + footer margin) */
body.page-services main.sv-main {
  padding-bottom: 0;
}

body.page-services main.sv-main .sw > .site-cta-sec {
  margin-top: clamp(40px, 5vw, 56px);
  padding: 0 0 clamp(20px, 3vw, 32px);
}

/* ── Hero ── */
.sv-hero {
  padding: 0 0 clamp(48px, 6vw, 72px);
}

.sv-hero-shell {
  position: relative;
  text-align: center;
  padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 48px) clamp(36px, 4.5vw, 48px);
  border-radius: 24px;
  border: 1px solid rgba(66, 209, 179, 0.22);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(66, 209, 179, 0.14) 0%, transparent 55%),
    linear-gradient(165deg, rgba(6, 28, 48, 0.92) 0%, rgba(4, 16, 30, 0.96) 100%);
  box-shadow:
    0 28px 64px rgba(1, 8, 18, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.sv-hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000 20%, transparent 75%);
}

.sv-hero-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.sv-hero-badge.ws-badge {
  /* ws-badge has margin-bottom for stacked layouts; zero it in this inline hero row */
  margin-bottom: 0;
  font-size: 11px;
  letter-spacing: 2.2px;
  color: #42d1b3;
  border-color: rgba(66, 209, 179, 0.35);
  background: rgba(66, 209, 179, 0.1);
}

.sv-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: rgba(255, 255, 255, 0.97);
  margin: 0 auto 18px;
  max-width: 900px;
}

.sv-hero h1 em {
  display: block;
  font-style: normal;
  margin-top: 6px;
}

.sv-hero-lead {
  position: relative;
  z-index: 1;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  max-width: 680px;
  margin: 0 auto clamp(28px, 3.5vw, 36px);
  font-weight: 500;
}

.sv-hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 44px);
}

.sv-btn-scroll {
  border-style: dashed;
}

.sv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #42d1b3, #2ab89a);
  color: #051422;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  transition: transform 0.2s, box-shadow 0.25s, filter 0.2s;
}

.sv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(66, 209, 179, 0.35);
  filter: brightness(1.05);
  color: #051422;
  text-decoration: none;
}

.sv-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.sv-btn-ghost:hover {
  border-color: rgba(66, 209, 179, 0.5);
  background: rgba(66, 209, 179, 0.1);
  color: #bffaf0;
  transform: translateY(-2px);
  text-decoration: none;
}

.sv-hero-metrics {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 auto clamp(28px, 3.5vw, 36px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.sv-metric {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-metric:last-child { border-right: none; }

.sv-metric-val {
  display: block;
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #42d1b3, #b8ffe8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sv-metric-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.sv-hero-cats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.sv-hero-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  min-width: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.22s, background 0.22s, transform 0.2s;
}

.sv-hero-cat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}

.sv-hero-cat {
  position: relative;
}

.sv-hero-cat.card-design:hover,
.sv-hero-cat.card-design:focus-visible { border-color: rgba(255, 124, 168, 0.45); background: rgba(255, 124, 168, 0.08); }
.sv-hero-cat.card-dev:hover,
.sv-hero-cat.card-dev:focus-visible { border-color: rgba(86, 212, 255, 0.45); background: rgba(86, 212, 255, 0.08); }
.sv-hero-cat.card-enterprise:hover,
.sv-hero-cat.card-enterprise:focus-visible { border-color: rgba(127, 157, 255, 0.45); background: rgba(127, 157, 255, 0.08); }
.sv-hero-cat.card-startup:hover,
.sv-hero-cat.card-startup:focus-visible { border-color: rgba(255, 143, 107, 0.45); background: rgba(255, 143, 107, 0.08); }
.sv-hero-cat.card-quality:hover,
.sv-hero-cat.card-quality:focus-visible { border-color: rgba(79, 183, 255, 0.45); background: rgba(79, 183, 255, 0.08); }
.sv-hero-cat.card-specialized:hover,
.sv-hero-cat.card-specialized:focus-visible { border-color: rgba(255, 90, 166, 0.45); background: rgba(255, 90, 166, 0.08); }
.sv-hero-cat.card-silicon:hover,
.sv-hero-cat.card-silicon:focus-visible { border-color: rgba(45, 184, 156, 0.45); background: rgba(45, 184, 156, 0.08); }
.sv-hero-cat.card-mecha:hover,
.sv-hero-cat.card-mecha:focus-visible { border-color: rgba(255, 154, 62, 0.45); background: rgba(255, 154, 62, 0.08); }
.sv-hero-cat.card-neural:hover,
.sv-hero-cat.card-neural:focus-visible { border-color: rgba(155, 125, 255, 0.45); background: rgba(155, 125, 255, 0.08); }
.sv-hero-cat.card-growth:hover,
.sv-hero-cat.card-growth:focus-visible { border-color: rgba(62, 207, 142, 0.45); background: rgba(62, 207, 142, 0.08); }
.sv-hero-cat.card-branding:hover,
.sv-hero-cat.card-branding:focus-visible { border-color: rgba(255, 110, 180, 0.45); background: rgba(255, 110, 180, 0.08); }
.sv-hero-cat.card-launch:hover,
.sv-hero-cat.card-launch:focus-visible { border-color: rgba(255, 170, 90, 0.45); background: rgba(255, 170, 90, 0.08); }

.sv-hero-cat:hover {
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}

.sv-hero-cat-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-hero-cat-icon svg { width: 17px; height: 17px; }

.sv-hero-cat-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: rgba(240, 252, 249, 0.9);
  text-align: center;
  line-height: 1.25;
}

.sv-gradient-text {
  background: linear-gradient(90deg, #42d1b3, #9cffd2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section headers ── */
.sv-sec {
  padding: clamp(64px, 9vw, 100px) 0;
}

.sv-sec-hdr {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.sv-sec-hdr .ws-badge.sv-sec-badge {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 10px;
  letter-spacing: 1.8px;
  color: #42d1b3;
  border-color: rgba(66, 209, 179, 0.35);
  background: rgba(66, 209, 179, 0.1);
}

.sv-sec-hdr h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #f0fbf8;
  margin: 0 0 14px;
  line-height: 1.15;
}

.sv-sec-hdr p {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Capabilities explorer ── */
.sv-explorer {
  border-radius: 22px;
  border: 1px solid rgba(66, 209, 179, 0.18);
  background: linear-gradient(165deg, rgba(6, 28, 48, 0.88) 0%, rgba(4, 18, 34, 0.92) 100%);
  box-shadow: 0 24px 56px rgba(1, 8, 18, 0.45);
  overflow: hidden;
}

.sv-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
}

.sv-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 8px 16px;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  min-width: 0;
  cursor: pointer;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s, background 0.2s;
}

.sv-tab:last-child { border-right: none; }

.sv-tab::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity 0.22s;
}

.sv-tab.card-design::after { background: linear-gradient(90deg, #ff7ca8, #ffb37a); }
.sv-tab.card-dev::after { background: linear-gradient(90deg, #56d4ff, #5f88ff); }
.sv-tab.card-enterprise::after { background: linear-gradient(90deg, #7f9dff, #5de2d0); }
.sv-tab.card-startup::after { background: linear-gradient(90deg, #ff8f6b, #ff5dd5); }
.sv-tab.card-quality::after { background: linear-gradient(90deg, #4fb7ff, #7b8dff); }
.sv-tab.card-specialized::after { background: linear-gradient(90deg, #ff5aa6, #9b7dff); }
.sv-tab.card-silicon::after { background: linear-gradient(90deg, #2db89c, #56d4ff); }
.sv-tab.card-mecha::after { background: linear-gradient(90deg, #ff9a3e, #ffcb6b); }
.sv-tab.card-neural::after { background: linear-gradient(90deg, #9b7dff, #c27dff); }
.sv-tab.card-growth::after { background: linear-gradient(90deg, #3ecf8e, #56d4ff); }
.sv-tab.card-branding::after { background: linear-gradient(90deg, #ff6eb4, #ffb37a); }
.sv-tab.card-launch::after { background: linear-gradient(90deg, #ffaa5a, #ff6eb4); }

.sv-tab:hover {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.04);
}

.sv-tab.is-active {
  color: #f2fcf9;
  background: rgba(255, 255, 255, 0.06);
}

.sv-tab.is-active::after { opacity: 1; }

.sv-tab-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sv-tab-icon svg { width: 17px; height: 17px; }

.sv-tab-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.25;
}

.ci-design { background: rgba(255, 124, 168, 0.14); color: #ff90ba; }
.ci-dev { background: rgba(86, 212, 255, 0.14); color: #56d4ff; }
.ci-ent { background: rgba(127, 157, 255, 0.14); color: #9eb2ff; }
.ci-start { background: rgba(255, 143, 107, 0.14); color: #ffae8b; }
.ci-qual { background: rgba(79, 183, 255, 0.14); color: #78ccff; }
.ci-spec { background: rgba(255, 90, 166, 0.14); color: #ff7fc0; }
.ci-silicon { background: rgba(45, 184, 156, 0.14); color: #42d1b3; }
.ci-mecha { background: rgba(255, 154, 62, 0.14); color: #ffb347; }
.ci-neural { background: rgba(155, 125, 255, 0.14); color: #b499ff; }
.ci-growth { background: rgba(62, 207, 142, 0.14); color: #6ee7b0; }
.ci-branding { background: rgba(255, 110, 180, 0.14); color: #ff8ec8; }
.ci-launch { background: rgba(255, 170, 90, 0.14); color: #ffbc6e; }

.sv-explorer-body {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px) clamp(28px, 3.5vw, 67px);
}

.sv-panel {
  display: none;
  animation: svPanelIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sv-panel.is-active { display: block; }

@keyframes svPanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.sv-panel-lead {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sv-svc-grid {
  display: grid;
  grid-template-columns: repeat(var(--sv-cols, 4), minmax(0, 1fr));
  gap: 16px;
}

.sv-svc-card {
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: border-color 0.25s, transform 0.22s, box-shadow 0.25s, background 0.25s;
}

.sv-svc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(66, 209, 179, 0.28);
  box-shadow: 0 20px 48px rgba(1, 8, 18, 0.4);
  text-decoration: none;
  color: inherit;
}

.sv-svc-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: #f2fcf9;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sv-svc-tagline {
  font-size: 13px;
  font-weight: 600;
  color: #42d1b3;
  margin-bottom: 16px;
}

.sv-svc-feats {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}

.sv-svc-feats li {
  position: relative;
  padding: 5px 0 5px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

.sv-svc-feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(66, 209, 179, 0.65);
}

.sv-svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #42d1b3;
  margin-top: auto;
}

.sv-svc-card:hover .sv-svc-cta { color: #c4fdf2; }

.sv-svc-cta svg { transition: transform 0.2s; }
.sv-svc-card:hover .sv-svc-cta svg { transform: translateX(4px); }

/* ── Delivery timeline ── */
.sv-delivery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.sv-delivery::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(66, 209, 179, 0.15), rgba(66, 209, 179, 0.65), rgba(66, 209, 179, 0.15));
  z-index: 0;
}

.sv-delivery-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

.sv-delivery-node {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(8, 32, 52, 0.98), rgba(4, 18, 34, 1));
  border: 2px solid rgba(66, 209, 179, 0.45);
  box-shadow:
    0 0 0 6px rgba(66, 209, 179, 0.08),
    0 12px 28px rgba(1, 8, 18, 0.45);
}

.sv-delivery-num {
  position: absolute;
  top: -8px;
  right: -4px;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #051422;
  background: linear-gradient(135deg, #42d1b3, #9cffd2);
  box-shadow: 0 4px 12px rgba(66, 209, 179, 0.35);
}

.sv-delivery-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #42d1b3;
}

.sv-delivery-icon svg {
  width: 28px;
  height: 28px;
}

.sv-delivery-card {
  width: 100%;
  padding: 22px 18px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  text-align: center;
  transition: border-color 0.25s, transform 0.22s, box-shadow 0.25s;
}

.sv-delivery-step:hover .sv-delivery-card {
  border-color: rgba(66, 209, 179, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(1, 8, 18, 0.35);
}

.sv-delivery-phase {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #42d1b3;
  border: 1px solid rgba(66, 209, 179, 0.3);
  background: rgba(66, 209, 179, 0.1);
}

.sv-delivery-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #f2fcf9;
  margin-bottom: 10px;
  line-height: 1.25;
}

.sv-delivery-card p {
  font-size: 13px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 14px;
}

.sv-delivery-points {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.sv-delivery-points li {
  position: relative;
  padding: 4px 0 4px 16px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.sv-delivery-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #42d1b3;
}

/* ── Included in every project ── */
.sv-included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sv-included-card {
  padding: 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(6, 28, 48, 0.9), rgba(4, 16, 30, 0.95));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.sv-included-card:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 209, 179, 0.28);
}

.sv-included-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #f0fbf8;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sv-included-card > p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  margin: 0 0 16px;
}

.sv-included-points {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-included-points li {
  position: relative;
  padding: 4px 0 4px 16px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.sv-included-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #42d1b3;
}

/* ── Value cards (why WorkSprout) ── */
.sv-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 18px;
  row-gap: 20px;
  align-items: stretch;
}

.sv-value-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 18, 34, 0.72);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.3s;
}

.sv-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0.95;
}

.sv-value-card--stack::before { background: linear-gradient(90deg, #42d1b3, #9cffd2); }
.sv-value-card--quality::before { background: linear-gradient(90deg, #56d4ff, #7f9dff); }
.sv-value-card--people::before { background: linear-gradient(90deg, #9eb2ff, #ff9ed0); }
.sv-value-card--comms::before { background: linear-gradient(90deg, #ff8f6b, #ffb37a); }
.sv-value-card--speed::before { background: linear-gradient(90deg, #3be79b, #42d1b3); }
.sv-value-card--scale::before { background: linear-gradient(90deg, #c49bff, #7f9dff); }

.sv-value-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  top: -50px;
  right: -40px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
}

.sv-value-card--stack .sv-value-glow { background: #42d1b3; }
.sv-value-card--quality .sv-value-glow { background: #56d4ff; }
.sv-value-card--people .sv-value-glow { background: #9eb2ff; }
.sv-value-card--comms .sv-value-glow { background: #ff8f6b; }
.sv-value-card--speed .sv-value-glow { background: #3be79b; }
.sv-value-card--scale .sv-value-glow { background: #c49bff; }

.sv-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(66, 209, 179, 0.35);
  box-shadow: 0 20px 48px rgba(1, 8, 18, 0.45);
}

.sv-value-card--featured {
  padding-top: 36px;
  padding-bottom: 32px;
  border-color: rgba(86, 212, 255, 0.35);
  background: linear-gradient(165deg, rgba(8, 36, 58, 0.95) 0%, rgba(4, 20, 38, 0.98) 100%);
  box-shadow: 0 16px 40px rgba(1, 8, 18, 0.4);
}

.sv-value-badge {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #56d4ff;
  border: 1px solid rgba(86, 212, 255, 0.4);
  background: rgba(86, 212, 255, 0.12);
}

.sv-value-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(66, 209, 179, 0.14);
  border: 1px solid rgba(66, 209, 179, 0.3);
  color: #42d1b3;
}

.sv-value-card--quality .sv-value-icon {
  background: rgba(86, 212, 255, 0.14);
  border-color: rgba(86, 212, 255, 0.3);
  color: #56d4ff;
}

.sv-value-card--people .sv-value-icon {
  background: rgba(158, 178, 255, 0.14);
  border-color: rgba(158, 178, 255, 0.3);
  color: #9eb2ff;
}

.sv-value-card--comms .sv-value-icon {
  background: rgba(255, 143, 107, 0.14);
  border-color: rgba(255, 143, 107, 0.3);
  color: #ffae8b;
}

.sv-value-card--speed .sv-value-icon {
  background: rgba(59, 231, 155, 0.14);
  border-color: rgba(59, 231, 155, 0.3);
  color: #3be79b;
}

.sv-value-card--scale .sv-value-icon {
  background: rgba(196, 155, 255, 0.14);
  border-color: rgba(196, 155, 255, 0.3);
  color: #c49bff;
}

.sv-value-icon svg {
  width: 30px;
  height: 30px;
}

.sv-value-card h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 800;
  color: #f2fcf9;
  margin-bottom: 12px;
  line-height: 1.3;
}

.sv-value-card > p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 20px;
  flex: 1;
}

.sv-value-points {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-value-points li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
  text-align: left;
}

.sv-value-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42d1b3;
}

.sv-value-card--quality .sv-value-points li::before { background: #56d4ff; }
.sv-value-card--people .sv-value-points li::before { background: #9eb2ff; }
.sv-value-card--comms .sv-value-points li::before { background: #ff8f6b; }
.sv-value-card--speed .sv-value-points li::before { background: #3be79b; }
.sv-value-card--scale .sv-value-points li::before { background: #c49bff; }

/* ── CTA ── */
/* ── Engagement models ── */
.sv-engage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sv-engage-card {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(6, 28, 48, 0.9) 0%, rgba(4, 18, 34, 0.95) 100%);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.sv-engage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #42d1b3, #56d4ff);
  opacity: 0.85;
}

.sv-engage-card--squad::before { background: linear-gradient(90deg, #56d4ff, #7f9dff); }
.sv-engage-card--retainer::before { background: linear-gradient(90deg, #9eb2ff, #c49bff); }
.sv-engage-card--advisory::before { background: linear-gradient(90deg, #ff8f6b, #ffb37a); }

.sv-engage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 209, 179, 0.3);
  box-shadow: 0 16px 40px rgba(1, 8, 18, 0.4);
}

.sv-engage-num {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: rgba(66, 209, 179, 0.7);
  margin-bottom: 14px;
}

.sv-engage-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #f2fcf9;
  margin-bottom: 10px;
  line-height: 1.25;
}

.sv-engage-summary {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 18px;
}

.sv-engage-points {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-engage-points li {
  position: relative;
  padding: 4px 0 4px 16px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.sv-engage-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #42d1b3;
}

/* ── Industries ── */
.sv-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sv-industry-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.sv-industry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 209, 179, 0.28);
  background: rgba(66, 209, 179, 0.06);
}

.sv-industry-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #42d1b3;
  background: rgba(66, 209, 179, 0.14);
  border: 1px solid rgba(66, 209, 179, 0.28);
}

.sv-industry-card--fintech .sv-industry-icon { color: #56d4ff; background: rgba(86, 212, 255, 0.12); border-color: rgba(86, 212, 255, 0.28); }
.sv-industry-card--health .sv-industry-icon { color: #3be79b; background: rgba(59, 231, 155, 0.12); border-color: rgba(59, 231, 155, 0.28); }
.sv-industry-card--saas .sv-industry-icon { color: #9eb2ff; background: rgba(158, 178, 255, 0.12); border-color: rgba(158, 178, 255, 0.28); }
.sv-industry-card--retail .sv-industry-icon { color: #ffb37a; background: rgba(255, 179, 122, 0.12); border-color: rgba(255, 179, 122, 0.28); }
.sv-industry-card--startup .sv-industry-icon { color: #ffae8b; background: rgba(255, 174, 139, 0.12); border-color: rgba(255, 174, 139, 0.28); }
.sv-industry-card--enterprise .sv-industry-icon { color: #c49bff; background: rgba(196, 155, 255, 0.12); border-color: rgba(196, 155, 255, 0.28); }
.sv-industry-card--robotics .sv-industry-icon { color: #5ee8d4; background: rgba(66, 209, 179, 0.12); border-color: rgba(66, 209, 179, 0.28); }
.sv-industry-card--embedded .sv-industry-icon { color: #7dffb8; background: rgba(90, 230, 160, 0.12); border-color: rgba(90, 230, 160, 0.28); }
.sv-industry-card--ai-ml .sv-industry-icon { color: #7eb8ff; background: rgba(100, 160, 255, 0.14); border-color: rgba(100, 160, 255, 0.32); }

.sv-industry-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #f0fbf8;
  line-height: 1.3;
}

.sv-industry-card p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  margin: 0 0 14px;
}

.sv-industry-points {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-industry-points li {
  position: relative;
  padding: 4px 0 4px 16px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.sv-industry-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #42d1b3;
}

.sv-industry-card--fintech .sv-industry-points li::before { background: #56d4ff; }
.sv-industry-card--health .sv-industry-points li::before { background: #3be79b; }
.sv-industry-card--saas .sv-industry-points li::before { background: #9eb2ff; }
.sv-industry-card--retail .sv-industry-points li::before { background: #ffb37a; }
.sv-industry-card--startup .sv-industry-points li::before { background: #ffae8b; }
.sv-industry-card--enterprise .sv-industry-points li::before { background: #c49bff; }
.sv-industry-card--robotics .sv-industry-points li::before { background: #5ee8d4; }
.sv-industry-card--embedded .sv-industry-points li::before { background: #7dffb8; }
.sv-industry-card--ai-ml .sv-industry-points li::before { background: #7eb8ff; }

/* ── Tech stack ── */
.sv-tech-sec .sv-sec-hdr { margin-bottom: clamp(32px, 5vw, 48px); }

.sv-tech-meta {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(66, 209, 179, 0.75);
  letter-spacing: 0.2px;
}

.sv-tech-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sv-tech-group {
  position: relative;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(5, 22, 40, 0.92), rgba(3, 14, 28, 0.96));
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.sv-tech-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, #42d1b3, #56d4ff);
  opacity: 0.75;
}

.sv-tech-group:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 209, 179, 0.25);
  box-shadow: 0 12px 32px rgba(1, 8, 18, 0.35);
}

.sv-tech-group--backend::before { background: linear-gradient(90deg, #56d4ff, #7f9dff); }
.sv-tech-group--cloud::before { background: linear-gradient(90deg, #7f9dff, #5de2d0); }
.sv-tech-group--design::before { background: linear-gradient(90deg, #ff7ca8, #ffb37a); }
.sv-tech-group--commerce::before { background: linear-gradient(90deg, #ffb37a, #ff8f6b); }
.sv-tech-group--devops::before { background: linear-gradient(90deg, #4fb7ff, #7b8dff); }
.sv-tech-group--ai::before { background: linear-gradient(90deg, #c49bff, #7f9dff); }
.sv-tech-group--security::before { background: linear-gradient(90deg, #3be79b, #42d1b3); }
.sv-tech-group--analytics::before { background: linear-gradient(90deg, #9cffd2, #56d4ff); }
.sv-tech-group--frontend::before { background: linear-gradient(90deg, #42d1b3, #56d4ff); }
.sv-tech-group--embedded::before { background: linear-gradient(90deg, #5de2d0, #3be79b); }
.sv-tech-group--robotics::before { background: linear-gradient(90deg, #7f9dff, #42d1b3); }
.sv-tech-group--integrations::before { background: linear-gradient(90deg, #ffb37a, #c49bff); }

.sv-tech-group-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(66, 209, 179, 0.85);
  margin-bottom: 14px;
}

.sv-tech-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sv-tech-pills li {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

/* ── Outcomes ── */
.sv-outcome-meta {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(66, 209, 179, 0.75);
  letter-spacing: 0.2px;
}

.sv-outcome-stats {
  list-style: none;
  margin: 0 auto clamp(36px, 5vw, 48px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.sv-outcome-stats li {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-outcome-stats li:nth-child(4n) { border-right: none; }

.sv-outcome-stats li:nth-child(n+5) {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-outcome-val {
  display: block;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #42d1b3, #b8ffe8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sv-outcome-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.sv-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.sv-outcome-card {
  position: relative;
  padding: 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(6, 30, 52, 0.88), rgba(4, 16, 30, 0.95));
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.sv-outcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #42d1b3, #56d4ff);
  opacity: 0.8;
}

.sv-outcome-card--design::before { background: linear-gradient(90deg, #ff7ca8, #ffb37a); }
.sv-outcome-card--specialized::before { background: linear-gradient(90deg, #c49bff, #7f9dff); }
.sv-outcome-card--enterprise::before { background: linear-gradient(90deg, #7f9dff, #5de2d0); }
.sv-outcome-card--dev::before { background: linear-gradient(90deg, #56d4ff, #5f88ff); }
.sv-outcome-card--startup::before { background: linear-gradient(90deg, #ff8f6b, #ff5dd5); }
.sv-outcome-card--quality::before { background: linear-gradient(90deg, #4fb7ff, #7b8dff); }
.sv-outcome-card--security::before { background: linear-gradient(90deg, #3be79b, #42d1b3); }
.sv-outcome-card--health::before { background: linear-gradient(90deg, #3be79b, #9cffd2); }

.sv-outcome-card:hover {
  transform: translateY(-3px);
  border-color: rgba(86, 212, 255, 0.3);
  box-shadow: 0 14px 36px rgba(1, 8, 18, 0.4);
}

.sv-outcome-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.sv-outcome-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #56d4ff;
  border: 1px solid rgba(86, 212, 255, 0.35);
  background: rgba(86, 212, 255, 0.1);
}

.sv-outcome-card--design .sv-outcome-tag { color: #ffb37a; border-color: rgba(255, 179, 122, 0.4); background: rgba(255, 179, 122, 0.1); }
.sv-outcome-card--specialized .sv-outcome-tag { color: #c49bff; border-color: rgba(196, 155, 255, 0.4); background: rgba(196, 155, 255, 0.1); }
.sv-outcome-card--enterprise .sv-outcome-tag { color: #9eb2ff; border-color: rgba(158, 178, 255, 0.4); background: rgba(158, 178, 255, 0.1); }
.sv-outcome-card--dev .sv-outcome-tag { color: #56d4ff; border-color: rgba(86, 212, 255, 0.4); background: rgba(86, 212, 255, 0.1); }
.sv-outcome-card--startup .sv-outcome-tag { color: #ffae8b; border-color: rgba(255, 174, 139, 0.4); background: rgba(255, 174, 139, 0.1); }
.sv-outcome-card--quality .sv-outcome-tag { color: #78ccff; border-color: rgba(120, 204, 255, 0.4); background: rgba(120, 204, 255, 0.1); }
.sv-outcome-card--security .sv-outcome-tag { color: #3be79b; border-color: rgba(59, 231, 155, 0.4); background: rgba(59, 231, 155, 0.1); }
.sv-outcome-card--health .sv-outcome-tag { color: #9cffd2; border-color: rgba(156, 255, 210, 0.4); background: rgba(156, 255, 210, 0.1); }
.sv-outcome-card--launch-pad .sv-outcome-tag,
.sv-outcome-card--craft-studio .sv-outcome-tag,
.sv-outcome-card--code-forge .sv-outcome-tag,
.sv-outcome-card--scale-hub .sv-outcome-tag,
.sv-outcome-card--shield-works .sv-outcome-tag,
.sv-outcome-card--edge-labs .sv-outcome-tag,
.sv-outcome-card--silicon .sv-outcome-tag,
.sv-outcome-card--mecha .sv-outcome-tag,
.sv-outcome-card--neural .sv-outcome-tag { color: #42d1b3; border-color: rgba(66, 209, 179, 0.35); background: rgba(66, 209, 179, 0.1); }
.sv-outcome-card--mobile-launch::before { background: linear-gradient(90deg, #56d4ff, #7f9dff); }
.sv-outcome-card--integration-programme::before { background: linear-gradient(90deg, #7f9dff, #5de2d0); }
.sv-outcome-card--design-system::before { background: linear-gradient(90deg, #ff7ca8, #ffb37a); }

.sv-outcome-metric {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #42d1b3;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(66, 209, 179, 0.12);
  border: 1px solid rgba(66, 209, 179, 0.25);
}

.sv-outcome-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #f0fbf8;
  margin-bottom: 10px;
  line-height: 1.35;
}

.sv-outcome-card p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
}

.sv-outcome-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Testimonials (static grid, no slider) ── */
.page-services .sv-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.page-services .sv-testi-card {
  background: rgba(5, 20, 34, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 32px 28px 36px;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  margin: 0;
  transition: border-color 0.3s, transform 0.3s;
}

.page-services .sv-testi-card:hover {
  border-color: rgba(66, 209, 179, 0.18);
  transform: translateY(-4px);
}

.page-services .sv-testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, transparent 5%, rgba(66, 209, 179, 0.35) 40%, rgba(156, 255, 210, 0.35) 60%, transparent 95%);
}

.page-services .sv-testi-stars {
  display: block;
  margin-bottom: 18px;
  color: #fbbf24;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}

.page-services .sv-testi-quote-mark {
  font-size: 52px;
  line-height: 1;
  color: rgba(66, 209, 179, 0.12);
  font-weight: 800;
  font-style: normal;
  margin-bottom: -8px;
  display: block;
}

.page-services .sv-testi-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 24px;
  padding: 0;
  border: none;
}

.page-services .sv-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(66, 209, 179, 0.1);
}

.page-services .sv-testi-meta {
  min-width: 0;
}

.page-services .sv-testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #051422;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.page-services .sv-testi-av-a { background: linear-gradient(135deg, #42d1b3, #2db89c); }
.page-services .sv-testi-av-b { background: linear-gradient(135deg, #56d4ff, #5f88ff); }
.page-services .sv-testi-av-c { background: linear-gradient(135deg, #7f9dff, #5de2d0); }
.page-services .sv-testi-av-d { background: linear-gradient(135deg, #9eb2ff, #5de2d0); }
.page-services .sv-testi-av-e { background: linear-gradient(135deg, #ff7ca8, #ffb37a); }
.page-services .sv-testi-av-f { background: linear-gradient(135deg, #ff8f6b, #ff5dd5); }

.page-services .sv-testi-name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  font-style: normal;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

.page-services .sv-testi-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  margin: 4px 0 0;
  line-height: 1.45;
}

/* ── FAQ ── */
.sv-faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sv-faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.sv-faq-item[open] {
  border-color: rgba(66, 209, 179, 0.28);
  background: rgba(66, 209, 179, 0.05);
}

.sv-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #f0fbf8;
  line-height: 1.4;
  position: relative;
  user-select: none;
  transition: color 0.2s ease;
}

.sv-faq-item summary:hover {
  color: #bffaf0;
}

.sv-faq-item summary::-webkit-details-marker { display: none; }

.sv-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: #42d1b3;
  line-height: 1;
  transition: transform 0.25s ease;
}

.sv-faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.sv-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.sv-faq-item[open] .sv-faq-answer {
  grid-template-rows: 1fr;
}

.sv-faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .sv-faq-answer { transition: none; }
  .sv-faq-item summary::after { transition: none; }
}



/* ── Reveal ── */
.sv-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.sv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sv-reveal.d1 { transition-delay: 0.08s; }
.sv-reveal.d2 { transition-delay: 0.16s; }
.sv-reveal.d3 { transition-delay: 0.24s; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .sv-svc-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 4px;
  }
  .sv-svc-grid::-webkit-scrollbar { height: 4px; }
  .sv-svc-card {
    flex: 0 0 auto;
    width: min(280px, 42vw);
    min-height: 100%;
  }
  .sv-hero-cats,
  .sv-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .sv-hero-cats { gap: 10px; }
  .sv-hero-cat {
    flex: 0 0 auto;
    min-width: 108px;
  }
  .sv-tabs::-webkit-scrollbar,
  .sv-hero-cats::-webkit-scrollbar { height: 4px; }
  .sv-tab {
    flex: 0 0 auto;
    min-width: 108px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
  }
  .sv-engage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-included-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-services .sv-testi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-tech-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-outcome-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .sv-delivery { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .sv-delivery::before { display: none; }
  .sv-value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-included-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-services .sv-testi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-tech-board { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .sv-outcome-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-outcome-stats li { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .sv-outcome-stats li:nth-child(4n) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .sv-outcome-stats li:nth-child(2n) { border-right: none; }
  .sv-outcome-stats li:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
}

@media (max-width: 640px) {
  body.page-services main.sv-main { padding-top: 94px; padding-bottom: 0; }
  body.page-services main.sv-main .sw > .site-cta-sec {
    margin-top: 32px;
    padding-bottom: 20px;
  }
  body.page-services .lt-footer { margin: 20px auto 20px !important; }
  .sv-wrap { padding-left: 16px; padding-right: 16px; }
  .sv-hero-shell { padding: 32px 20px 28px; border-radius: 18px; }
  .sv-hero-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-metric:nth-child(2) { border-right: none; }
  .sv-metric:nth-child(1),
  .sv-metric:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .sv-hero h1 em { display: inline; margin-top: 0; }
  .sv-value-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .sv-value-card--featured { order: -1; }
  .sv-engage-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .sv-included-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .sv-industry-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .page-services .sv-testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .sv-outcome-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 100%; }
  .sv-outcome-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .sv-tab-label { font-size: 11px; }
  .sv-hero-cat { min-width: 100px; }
  .sv-tab { min-width: 100px; }
  .sv-svc-card { width: min(260px, 78vw); }
  .sv-delivery {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 8px;
  }
  .sv-delivery-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    padding: 0 0 28px 0;
  }
  .sv-delivery-step::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 72px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(66, 209, 179, 0.5), rgba(66, 209, 179, 0.1));
  }
  .sv-delivery-step:last-child::before { display: none; }
  .sv-delivery-step:last-child { padding-bottom: 0; }
  .sv-delivery-node {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    margin-bottom: 0;
  }
  .sv-delivery-card { text-align: left; flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .page-services { animation: none; }
  .sv-reveal { opacity: 1; transform: none; transition: none; }
  .sv-panel { animation: none; }
}
