/* Single Service page — mockup layout */

main#SingleService {
  --ss-ink: #0a2540;
  --ss-muted: #6c777d;
  --ss-blue: #0000ff;
  --ss-bg: #f7f8fc;
  --ss-card: #ffffff;
  font-family: Poppins, sans-serif;
  color: var(--ss-ink);
  background: #fff;
  overflow-x: hidden;
}

main#SingleService .ss-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  main#SingleService .ss-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ----- Hero ----- */
.ss-hero {
  position: relative;
  isolation: isolate;
  padding: 42px 0 78px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 0, 255, 0.11), transparent 29%),
    radial-gradient(circle at 12% 86%, rgba(124, 58, 237, 0.07), transparent 25%),
    linear-gradient(180deg, #fbfcff 0%, #f5f7ff 100%);
}

.ss-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
  content: "";
  pointer-events: none;
}

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

@media (min-width: 960px) {
  .ss-hero {
    padding: 52px 0 96px;
  }
}

.ss-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .ss-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
}

.ss-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  color: #8a95a5;
  font-size: 12px;
}

.ss-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ss-breadcrumb a:hover {
  color: var(--ss-blue);
}

.ss-breadcrumb__sep {
  color: #8a95a5;
}

.ss-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ss-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ss-hero__title {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--ss-ink);
  font-family: Poppins, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
}

.ss-hero__title-accent {
  display: inline;
  background: linear-gradient(to right, #0000ff, #0000ff, #0000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 1024px) {
  .ss-hero__title {
    font-size: 50px;
    line-height: 70px;
  }
}

.ss-hero__excerpt {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ss-muted);
  max-width: 540px;
}

.ss-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 20px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ss-btn--primary {
  background: var(--ss-blue);
  color: #fff;
  box-shadow: 0 4px 14px -6px rgba(0, 0, 255, 0.45);
}

.ss-btn--primary:hover {
  background: #0000cc;
  color: #fff;
  transform: scale(1.02);
}

.ss-btn--ghost {
  background: transparent;
  color: var(--ss-ink);
  border: 1px solid var(--ss-blue);
}

.ss-btn--ghost:hover {
  background: var(--ss-blue);
  color: #fff;
}

.ss-btn--light {
  background: #fff;
  color: var(--ss-blue);
}

.ss-btn--light:hover {
  background: #f0f0ff;
  color: var(--ss-blue);
}

.ss-btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.ss-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ss-hero__visual {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .ss-hero__visual {
    min-height: 340px;
  }
}

.ss-delivery-map {
  width: 100%;
  max-width: 440px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px -38px rgba(10, 37, 64, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ss-delivery-map__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid #e4e9f3;
}

.ss-delivery-map__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #0000ff;
  color: #fff;
  font-size: 16px;
}

.ss-delivery-map__title {
  min-width: 0;
}

.ss-delivery-map__title small,
.ss-delivery-map__title strong {
  display: block;
}

.ss-delivery-map__title small {
  margin-bottom: 2px;
  color: #8a95a5;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ss-delivery-map__title strong {
  overflow: hidden;
  color: #0a2540;
  font-size: 12px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ss-delivery-map__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 999px;
  background: #e9fbf4;
  color: #07875d;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.ss-delivery-map__status i {
  font-size: 6px;
}

.ss-delivery-map__flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 22px;
  padding: 0;
  list-style: none;
}

.ss-delivery-map__flow::before {
  position: absolute;
  top: 20px;
  right: 16%;
  left: 16%;
  border-top: 1px dashed rgba(0, 0, 255, 0.25);
  content: "";
}

.ss-delivery-map__flow li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ss-delivery-map__flow li > span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  border: 1px solid #dde3f0;
  border-radius: 11px;
  background: #f6f7ff;
  color: #0000ff;
  font-size: 13px;
}

.ss-delivery-map__flow li.is-active > span {
  border-color: #0000ff;
  background: #0000ff;
  color: #fff;
  box-shadow: 0 10px 22px -14px rgba(0, 0, 255, 0.8);
}

.ss-delivery-map__flow small {
  margin-bottom: 2px;
  color: #a0a9b7;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ss-delivery-map__flow strong {
  color: #526071;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.3;
}

.ss-delivery-map__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #e4e9f3;
  color: #64748b;
  font-size: 9px;
  font-weight: 600;
}

.ss-delivery-map__footer i {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9fbf4;
  color: #07875d;
  font-size: 8px;
}

@media (max-width: 479px) {
  .ss-delivery-map {
    padding: 16px;
  }

  .ss-delivery-map__status {
    display: none;
  }
}

/* ----- Stats ----- */
.ss-stats {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  background: linear-gradient(120deg, #0000ff 0%, #1717c9 100%);
  color: #fff;
}

.ss-stats::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.8px, transparent 0.8px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  content: "";
  pointer-events: none;
}

.ss-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 44px -34px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ss-stat {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  min-width: 0;
  padding: 18px 14px;
  text-align: left;
  transition: background-color 0.3s ease;
}

.ss-stat:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.ss-stat:nth-child(n + 3) {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ss-stat:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ss-stat__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ss-stat__content {
  min-width: 0;
}

.ss-stat__value {
  display: block;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.ss-stat__label {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .ss-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ss-stat {
    padding: 22px 20px;
  }

  .ss-stat:nth-child(even) {
    border-left: 0;
  }

  .ss-stat:nth-child(n + 3) {
    border-top: 0;
  }

  .ss-stat + .ss-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 479px) {
  .ss-stat {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ----- Features (What we do) ----- */
.ss-features {
  padding: 72px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
}

@media (min-width: 1024px) {
  .ss-features {
    padding: 98px 0;
  }
}

.ss-features__grid {
  display: block;
}

.ss-features__head {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.ss-features__head .ss-section-text {
  max-width: 820px;
  margin: 18px auto 0;
  line-height: 1.75;
}

.ss-section-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #212121;
}

.ss-section-title__accent {
  display: inline;
  background: linear-gradient(to right, #0000ff, #0000ff, #0000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ss-section-title__accent--light {
  background: none;
  color: #aeb8ff;
  -webkit-text-fill-color: currentColor;
}

@media (min-width: 1024px) {
  .ss-section-title {
    font-size: 40px;
    line-height: 1.2;
  }
}

.ss-section-text {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ss-muted);
}

.ss-feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .ss-feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ss-feature-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ss-feature-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  overflow: hidden;
  padding: 26px 24px 24px;
  border: 1px solid #e2e7f1;
  border-radius: 18px;
  background: var(--ss-card);
  box-shadow: 0 14px 32px -28px rgba(10, 37, 64, 0.45);
  transition: transform 0.65s ease, box-shadow 0.65s ease, border-color 0.65s ease;
}

.ss-feature-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, #0000ff 0%, #1717c9 72%, #3434d8 100%);
  opacity: 0;
  content: "";
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.ss-feature-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 24px 44px -24px rgba(0, 0, 255, 0.42);
}

.ss-feature-card:hover::before {
  opacity: 1;
}

.ss-feature-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.ss-feature-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 255, 0.08);
  border-radius: 13px;
  background: #eeeefe;
  color: var(--ss-blue);
  font-size: 17px;
  transition: color 0.65s ease, background-color 0.65s ease, border-color 0.65s ease;
}

.ss-feature-card__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ss-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.65s ease;
}

.ss-feature-card__desc {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: var(--ss-muted);
  font-size: 13px;
  line-height: 1.7;
  transition: color 0.65s ease;
}

.ss-feature-card:hover .ss-feature-card__icon {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.ss-feature-card:hover .ss-feature-card__title,
.ss-feature-card:hover .ss-feature-card__desc {
  color: #fff;
}

/* ----- Service editor content (strictly scoped rich-text defaults) ----- */
.ss-service-content {
  padding: 0 0 72px;
  background: #f8f9ff;
}

.ss-service-content__body {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ss-muted);
  font-size: 15px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.ss-service-content__body > :first-child {
  margin-top: 0;
}

.ss-service-content__body > :last-child {
  margin-bottom: 0;
}

.ss-service-content__body h1,
.ss-service-content__body h2,
.ss-service-content__body h3,
.ss-service-content__body h4,
.ss-service-content__body h5,
.ss-service-content__body h6 {
  margin: 1.55em 0 0.55em;
  color: var(--ss-ink);
  font-family: Poppins, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
}

.ss-service-content__body h1 {
  font-size: clamp(32px, 4vw, 48px);
}

.ss-service-content__body h2 {
  font-size: clamp(27px, 3.2vw, 38px);
}

.ss-service-content__body h3 {
  font-size: clamp(22px, 2.5vw, 29px);
}

.ss-service-content__body h4 {
  font-size: 21px;
}

.ss-service-content__body h5 {
  font-size: 18px;
}

.ss-service-content__body h6 {
  color: var(--ss-blue);
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ss-service-content__body p,
.ss-service-content__body ul,
.ss-service-content__body ol,
.ss-service-content__body blockquote,
.ss-service-content__body figure,
.ss-service-content__body table,
.ss-service-content__body pre {
  margin-top: 0;
  margin-bottom: 1.35em;
}

.ss-service-content__body p {
  line-height: inherit;
}

.ss-service-content__body a {
  color: var(--ss-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.ss-service-content__body a:hover {
  color: #0000bb;
}

.ss-service-content__body strong,
.ss-service-content__body b {
  color: #34445f;
  font-weight: 700;
}

.ss-service-content__body ul,
.ss-service-content__body ol {
  padding-left: 1.4em;
}

.ss-service-content__body ul {
  list-style: disc;
}

.ss-service-content__body ol {
  list-style: decimal;
}

.ss-service-content__body li {
  margin-bottom: 0.55em;
  padding-left: 0.2em;
}

.ss-service-content__body li::marker {
  color: var(--ss-blue);
  font-weight: 700;
}

.ss-service-content__body blockquote {
  padding: 22px 24px;
  border-left: 4px solid var(--ss-blue);
  border-radius: 0 14px 14px 0;
  background: #fff;
  color: #41506a;
  font-size: 17px;
  font-style: italic;
  box-shadow: 0 14px 34px -28px rgba(10, 37, 64, 0.45);
}

.ss-service-content__body blockquote > :last-child {
  margin-bottom: 0;
}

.ss-service-content__body img,
.ss-service-content__body video {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.ss-service-content__body figure {
  max-width: 100%;
}

.ss-service-content__body figcaption,
.ss-service-content__body .wp-caption-text {
  margin-top: 9px;
  color: #7c8799;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.ss-service-content__body hr {
  height: 1px;
  margin: 2.4em 0;
  border: 0;
  background: #dde3ee;
}

.ss-service-content__body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border: 1px solid #dfe5ef;
  border-spacing: 0;
  border-collapse: collapse;
  border-radius: 12px;
  background: #fff;
}

.ss-service-content__body th,
.ss-service-content__body td {
  min-width: 130px;
  padding: 13px 15px;
  border: 1px solid #e3e8f1;
  text-align: left;
  vertical-align: top;
}

.ss-service-content__body th {
  background: #eeeefe;
  color: var(--ss-ink);
  font-weight: 700;
}

.ss-service-content__body code,
.ss-service-content__body kbd {
  padding: 0.15em 0.4em;
  border-radius: 5px;
  background: #e9eaff;
  color: #1515bc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
}

.ss-service-content__body pre {
  max-width: 100%;
  padding: 20px;
  overflow-x: auto;
  border-radius: 14px;
  background: #10182a;
  color: #eef2ff;
  font-size: 13px;
  line-height: 1.7;
}

.ss-service-content__body pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.ss-service-content__body iframe,
.ss-service-content__body embed,
.ss-service-content__body object {
  max-width: 100%;
}

.ss-service-content__body .wp-block-embed__wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.ss-service-content__body .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.ss-service-content__body .wp-block-column {
  min-width: 0;
  flex: 1 1 260px;
}

.ss-service-content__body .wp-block-button__link,
.ss-service-content__body a.wp-element-button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 2px;
  background: var(--ss-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.ss-service-content__body .aligncenter {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.ss-service-content__body .alignleft {
  float: left;
  margin: 0 24px 18px 0;
}

.ss-service-content__body .alignright {
  float: right;
  margin: 0 0 18px 24px;
}

.ss-service-content__body::after {
  display: block;
  clear: both;
  content: "";
}

@media (min-width: 1024px) {
  .ss-service-content {
    padding-bottom: 96px;
  }

  .ss-service-content__body {
    font-size: 16px;
  }
}

@media (max-width: 639px) {
  .ss-service-content__body .alignleft,
  .ss-service-content__body .alignright {
    float: none;
    margin-right: auto;
    margin-left: auto;
  }
}

/* ----- Process ----- */
.ss-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ss-blue);
}

.ss-process {
  padding: 72px 0;
  background: #fff;
}

@media (min-width: 1024px) {
  .ss-process {
    padding: 96px 0;
  }
}

.ss-process__head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
}

.ss-process__head .ss-section-text {
  max-width: 820px;
  margin: 18px auto 0;
  line-height: 1.75;
}

.ss-process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .ss-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ss-process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ss-process__step {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border: 1px solid #e4e9f3;
  border-radius: 16px;
  background: #f9faff;
  text-align: left;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ss-process__step:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 255, 0.2);
  box-shadow: 0 18px 36px -26px rgba(0, 0, 255, 0.35);
}

.ss-process__icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  border: 1px solid rgba(0, 0, 255, 0.08);
  border-radius: 13px;
  background: #eeeefe;
  color: var(--ss-blue);
  font-size: 17px;
}

.ss-process__title {
  margin: 0;
  color: var(--ss-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.ss-process__desc {
  margin: 10px 0 0;
  color: var(--ss-muted);
  font-size: 13px;
  line-height: 1.75;
}

/* ----- Tech (2nd image layout: left copy + single icon row) ----- */
.ss-tech {
  padding: 56px 0 80px;
  background: #fff;
}

.ss-tech__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .ss-tech__layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

.ss-tech__copy {
  flex: 0 0 auto;
  max-width: 280px;
}

.ss-tech__title {
  max-width: 260px;
}

.ss-tech__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px 18px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
  .ss-tech__row {
    flex: 1 1 auto;
    justify-content: flex-end;
    overflow: visible;
    gap: 20px 28px;
    width: auto;
  }
}

.ss-tech__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 70px;
}

.ss-tech__badge {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eef1f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ss-tech-color, var(--ss-blue));
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ss-tech__item:hover .ss-tech__badge {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -14px rgba(0, 0, 255, 0.25);
}

.ss-tech__name {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  white-space: nowrap;
}

/* ----- Featured work: LEFT heading | RIGHT related project ----- */
.ss-works {
  padding: 64px 0 72px;
  background: transparent;
}

@media (min-width: 1024px) {
  .ss-works {
    padding: 88px 0 96px;
  }
}

.ss-works__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .ss-works__layout {
    grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
    gap: clamp(44px, 6vw, 82px);
  }
}

.ss-works__copy {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  max-width: 430px;
}

.ss-works__copy .ss-section-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  text-align: left;
}

@media (min-width: 1024px) {
  .ss-works__copy .ss-section-title {
    font-size: 40px;
    line-height: 1.12;
  }
}

.ss-works__details {
  max-width: 410px;
  margin: 20px 0 0;
}

.ss-works__details p {
  margin: 0;
  color: var(--ss-muted);
  font-size: 15px;
  line-height: 1.75;
}

.ss-works__details p + p {
  margin-top: 14px;
}

.ss-works__outcomes {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ss-works__outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #516079;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.ss-works__outcomes i {
  margin-top: 3px;
  color: var(--ss-blue);
  font-size: 11px;
}

.ss-works__actions {
  margin-top: 26px;
}

.ss-works__actions img {
  width: 16px;
  height: auto;
  margin-left: 8px;
}

.ss-featured-work {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid #dfe5f0;
  border-radius: 24px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 24px 60px -42px rgba(10, 37, 64, 0.58);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.ss-featured-work:hover {
  border-color: rgba(0, 0, 255, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 255, 0.35);
}

.ss-featured-work__media {
  position: relative;
  display: flex;
  min-height: 270px;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 14%, rgba(0, 0, 255, 0.14), transparent 34%),
    linear-gradient(145deg, #f2f3ff 0%, #e9efff 100%);
}

.ss-featured-work__media::after {
  position: absolute;
  right: -72px;
  bottom: -96px;
  width: 230px;
  height: 230px;
  border: 45px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  content: "";
}

.ss-featured-work__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ss-featured-work__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border: 1px solid rgba(0, 0, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #263a5b;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 9px 20px -14px rgba(15, 23, 42, 0.7);
}

.ss-featured-work__badges span:first-child {
  border-color: var(--ss-blue);
  background: var(--ss-blue);
  color: #fff;
  box-shadow: 0 12px 24px -14px rgba(0, 0, 255, 0.8);
}

.ss-featured-work__media img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 92%;
  max-height: 230px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 22px 40px -22px rgba(15, 23, 42, 0.58);
  display: block;
  transition: transform 0.5s ease;
}

.ss-featured-work__media--image {
  aspect-ratio: 16 / 8.5;
  min-height: 0;
  padding: 0;
  background: #edf0f8;
}

.ss-featured-work__media--image::after {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(8, 20, 42, 0.22) 0%, rgba(8, 20, 42, 0) 44%, rgba(8, 20, 42, 0.08) 100%);
}

.ss-featured-work__media--image img {
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.ss-featured-work__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 38px -28px rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(9px);
}

.ss-featured-work__visual-head,
.ss-featured-work__visual-output {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ss-featured-work__visual-head {
  padding-bottom: 12px;
  border-bottom: 1px solid #e6eaf4;
}

.ss-featured-work__visual-head span,
.ss-featured-work__visual-head small,
.ss-featured-work__visual-output span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ss-featured-work__visual-head span {
  color: #152746;
  font-size: 10px;
  font-weight: 700;
}

.ss-featured-work__visual-head span i {
  color: var(--ss-blue);
}

.ss-featured-work__visual-head small {
  color: #16855b;
  font-size: 8px;
  font-weight: 700;
}

.ss-featured-work__visual-head small i {
  font-size: 5px;
}

.ss-featured-work__visual-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  padding: 16px 0;
}

.ss-featured-work__visual-flow > div {
  display: flex;
  min-width: 0;
  min-height: 70px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 4px;
  border: 1px solid #e2e7f2;
  border-radius: 10px;
  background: #f8f9fd;
  text-align: center;
}

.ss-featured-work__visual-flow > div.is-primary {
  border-color: var(--ss-blue);
  background: var(--ss-blue);
  box-shadow: 0 12px 25px -16px rgba(0, 0, 255, 0.8);
}

.ss-featured-work__visual-flow > div span {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #e9eaff;
  color: var(--ss-blue);
  font-size: 10px;
}

.ss-featured-work__visual-flow > div.is-primary span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.ss-featured-work__visual-flow strong {
  color: #34445f;
  font-size: 8px;
  line-height: 1.2;
}

.ss-featured-work__visual-flow > div.is-primary strong {
  color: #fff;
}

.ss-featured-work__visual-flow > i {
  color: var(--ss-blue);
  font-size: 8px;
}

.ss-featured-work__visual-output {
  padding: 10px 11px;
  border-radius: 10px;
  background: #eefaf5;
  color: #16855b;
  font-size: 8px;
  font-weight: 700;
}

.ss-featured-work:hover .ss-featured-work__media img {
  transform: scale(1.025);
}

.ss-featured-work__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
}

.ss-featured-work__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #77839a;
  font-size: 11px;
  font-weight: 600;
}

.ss-featured-work__topline > i {
  color: var(--ss-blue);
  flex-shrink: 0;
}

.ss-featured-work__content h3 {
  margin: 16px 0 0;
  color: var(--ss-ink);
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

.ss-featured-work__content > p {
  margin: 12px 0 0;
  color: var(--ss-muted);
  font-size: 13px;
  line-height: 1.7;
}

.ss-featured-work__results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.ss-featured-work__results > div {
  min-width: 0;
  padding: 13px 10px;
  border: 1px solid #e7eaf3;
  border-radius: 12px;
  background: #f8f9fc;
}

.ss-featured-work__results strong,
.ss-featured-work__results span {
  display: block;
}

.ss-featured-work__results strong {
  color: var(--ss-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.ss-featured-work__results span {
  margin-top: 4px;
  color: #66738a;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.35;
}

.ss-featured-work__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: 23px;
  color: var(--ss-blue);
  font-size: 12px;
  font-weight: 700;
}

.ss-featured-work__cta i {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.ss-featured-work:hover .ss-featured-work__cta i {
  transform: translateX(4px);
}

@media (min-width: 700px) {
  .ss-featured-work__media--visual {
    min-height: 330px;
    padding: 34px;
  }

  .ss-featured-work__media--visual img {
    max-width: 88%;
    max-height: 275px;
  }

  .ss-featured-work__content {
    padding: 34px 36px 38px;
  }
}

@media (max-width: 479px) {
  .ss-featured-work__results {
    grid-template-columns: 1fr;
  }
}

/* ----- Testimonials ----- */
.ss-testimonials {
  padding: 64px 0;
  background: #fff;
}

@media (min-width: 1024px) {
  .ss-testimonials {
    padding: 88px 0;
  }
}

.ss-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.ss-testimonials__copy {
  max-width: 360px;
  text-align: left;
}

@media (min-width: 1024px) {
  .ss-testimonials__grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 36px;
    align-items: start;
  }
}

.ss-quote-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .ss-quote-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ss-quote-card {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 8px 22px -20px rgba(10, 37, 64, 0.35);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ss-quote-card__mark {
  color: var(--ss-blue);
  font-size: 22px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.ss-quote-card__text {
  margin: 0;
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  color: #4b5563;
}

.ss-quote-card__person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.ss-quote-card__person img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.ss-quote-card__name {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ss-ink);
}

.ss-quote-card__role {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--ss-muted);
}

/* ----- FAQ ----- */
.ss-faq {
  padding: 64px 0;
  background: var(--ss-bg);
}

@media (min-width: 1024px) {
  .ss-faq {
    padding: 88px 0;
  }
}

.ss-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 1024px) {
  .ss-faq__grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 40px;
    align-items: start;
  }
}

.ss-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ss-faq__cta {
  margin-top: 26px;
}

.ss-faq__cta img {
  width: 16px;
  height: auto;
  margin-left: 8px;
}

.ss-faq__item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8eef5;
  overflow: hidden;
  box-shadow: 0 6px 18px -16px rgba(10, 37, 64, 0.3);
}

.ss-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ss-ink);
}

.ss-faq__question i {
  color: var(--ss-blue);
  transition: transform 0.25s ease;
}

.ss-faq__item.is-open .ss-faq__question i {
  transform: rotate(45deg);
}

.ss-faq__answer {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ss-muted);
}

.ss-faq__item.is-open .ss-faq__answer {
  display: block;
}

/* ----- Bottom CTA ----- */
.ss-cta {
  padding: 40px 0 72px;
  background: #fff;
}

.ss-cta__panel {
  background: var(--ss-blue);
  border-radius: 20px;
  color: #fff;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.ss-cta__chevrons {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -68px;
  width: 128px;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

.ss-cta__visual,
.ss-cta__content {
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .ss-cta__panel {
    grid-template-columns: 0.85fr 1.15fr;
    padding: 44px 48px;
  }

  .ss-cta__chevrons {
    right: -90px;
    width: 180px;
  }

  .ss-cta__content {
    padding-right: 38px;
  }
}

.ss-cta__visual {
  display: flex;
  justify-content: center;
}

.ss-partnership {
  width: 100%;
  max-width: 420px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 42px -30px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ss-partnership__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ss-partnership__nodes {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
  align-items: center;
  margin-top: 18px;
}

.ss-partnership__nodes::before {
  position: absolute;
  top: 50%;
  right: 22%;
  left: 22%;
  border-top: 1px dashed rgba(255, 255, 255, 0.42);
  content: "";
}

.ss-partnership__node {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 138px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
}

.ss-partnership__node > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #fff;
  color: #0000ff;
  font-size: 14px;
}

.ss-partnership__node strong,
.ss-partnership__node small {
  display: block;
}

.ss-partnership__node strong {
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
}

.ss-partnership__node small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  line-height: 1.35;
}

.ss-partnership__connection {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.ss-partnership__connection span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 4px solid #0000ff;
  border-radius: 50%;
  background: #fff;
  color: #0000ff;
  font-size: 14px;
}

.ss-partnership__outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  padding: 11px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.45;
}

.ss-partnership__outcome i {
  flex: 0 0 auto;
  color: #83edc4;
  font-size: 13px;
}

@media (max-width: 479px) {
  .ss-partnership {
    padding: 16px;
  }

  .ss-partnership__node {
    min-height: 124px;
    padding-inline: 7px;
  }
}

.ss-cta__title {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .ss-cta__title {
    font-size: 36px;
  }
}

.ss-cta__text {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 480px;
}

.ss-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ss-cta__arrow {
  filter: brightness(0) saturate(100%) invert(9%) sepia(100%) saturate(7496%) hue-rotate(248deg) brightness(99%) contrast(145%);
}
