/**
 * Services compatibility-review landing page.
 * Scope every rule to .sph-services so the module cannot affect other pages.
 */

.sph-services {
  --services-dark: #0f141d;
  --services-ink: #18211c;
  --services-muted: #5d6962;
  --services-light: #f4f7f5;
  --services-white: #ffffff;
  --services-green: var(--sph-color-brand, #39a751);
  --services-green-dark: #267d39;
  --services-border: #dfe6e1;
  --services-container: 1360px;
  overflow: clip;
  background: var(--services-white);
  color: var(--services-ink);
  font-family: inherit;
  line-height: 1.65;
}

.sph-services *,
.sph-services *::before,
.sph-services *::after {
  box-sizing: border-box;
}

.sph-services h1,
.sph-services h2,
.sph-services h3,
.sph-services p,
.sph-services ol,
.sph-services ul,
.sph-services figure {
  margin-top: 0;
}

.sph-services h1,
.sph-services h2,
.sph-services h3 {
  color: inherit;
  font-family: inherit;
  letter-spacing: -0.025em;
}

.sph-services h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 4.9vw, 4.65rem);
  line-height: 1.04;
}

.sph-services h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.12;
}

.sph-services h3 {
  margin-bottom: 12px;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.3;
}

.sph-services p {
  margin-bottom: 0;
}

.sph-services__section {
  position: relative;
  width: 100%;
  padding: clamp(72px, 8vw, 120px) clamp(20px, 4.5vw, 64px);
}

.sph-services__container {
  position: relative;
  z-index: 1;
  width: min(100%, var(--services-container));
  margin: 0 auto;
}

.sph-services__eyebrow {
  margin-bottom: 18px;
  color: var(--services-green);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sph-services__lead,
.sph-services__section-heading > p:last-child,
.sph-services__intro {
  max-width: 760px;
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
}

.sph-services__section-heading {
  max-width: 880px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.sph-services__actions,
.sph-services__final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.sph-services__button,
.sph-services__card-link,
.sph-services__text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sph-services__button {
  padding: 14px 22px;
}

.sph-services__button:hover,
.sph-services__card-link:hover,
.sph-services__text-link:hover {
  transform: translateY(-2px);
}

.sph-services__button:focus-visible,
.sph-services__card-link:focus-visible,
.sph-services__text-link:focus-visible {
  outline: 3px solid rgba(72, 229, 107, 0.4);
  outline-offset: 3px;
}

.sph-services__button--primary {
  background: var(--services-green);
  color: #07130a;
}

.sph-services__button--primary:hover {
  background: #4bd269;
  color: #07130a;
}

.sph-services__button--secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
  color: var(--services-white);
}

.sph-services__button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
  color: var(--services-white);
}

.sph-services__button--light {
  background: var(--services-white);
  color: #184421;
}

.sph-services__button--light:hover {
  background: #effff2;
  color: #184421;
}

.sph-services__button--full {
  width: 100%;
  margin-top: 30px;
}

.sph-services__icon-svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

/* Hero */
.sph-services__hero {
  min-height: 760px;
  padding-top: clamp(84px, 9vw, 140px);
  padding-bottom: clamp(72px, 8vw, 112px);
  background:
    radial-gradient(circle at 12% 18%, rgba(57, 167, 81, 0.2), transparent 31%),
    radial-gradient(circle at 86% 72%, rgba(57, 167, 81, 0.1), transparent 28%),
    linear-gradient(135deg, #0b1017 0%, var(--services-dark) 55%, #101a14 100%);
  color: var(--services-white);
}

.sph-services__hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: '';
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.sph-services__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.76fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.sph-services__hero-copy > .sph-services__lead {
  color: #c7d1ca;
}

.sph-services__review-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(22, 31, 42, 0.88);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.sph-services__review-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.sph-services__review-card > p:not(.sph-services__eyebrow) {
  color: #b9c6bd;
}

.sph-services__requirements {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.sph-services__requirements li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sph-services__requirements li > span {
  color: var(--services-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sph-services__requirements strong {
  display: block;
  margin-bottom: 5px;
  color: var(--services-white);
  font-size: 0.86rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.sph-services__requirements p {
  color: #aab8ae;
  font-size: 0.91rem;
  line-height: 1.55;
}

.sph-services__card-link {
  width: 100%;
  margin-top: 10px;
  padding: 14px 20px;
  border-color: rgba(72, 229, 107, 0.32);
  background: rgba(57, 167, 81, 0.12);
  color: #85e398;
}

.sph-services__card-link:hover {
  background: rgba(57, 167, 81, 0.2);
  color: #a2efb1;
}

/* Core support */
.sph-services__support {
  background: var(--services-light);
}

.sph-services__support .sph-services__section-heading > p:last-child,
.sph-services__process .sph-services__section-heading > p:last-child {
  color: var(--services-muted);
}

.sph-services__support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 2.6vw, 32px);
}

.sph-services__support-card {
  min-height: 100%;
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--services-border);
  border-radius: 16px;
  background: var(--services-white);
  box-shadow: 0 10px 34px rgba(13, 37, 20, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sph-services__support-card:hover {
  border-color: rgba(57, 167, 81, 0.45);
  box-shadow: 0 18px 46px rgba(13, 37, 20, 0.1);
  transform: translateY(-4px);
}

.sph-services__support-card > p {
  max-width: 680px;
  color: var(--services-muted);
}

.sph-services__icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #e8f7ec;
  color: var(--services-green-dark);
  place-items: center;
}

/* Process */
.sph-services__process {
  background: var(--services-white);
}

.sph-services__process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.sph-services__process-list li {
  position: relative;
  margin: 0;
  padding: 30px 28px 28px;
  border-top: 2px solid var(--services-border);
}

.sph-services__process-list li::before {
  position: absolute;
  top: -7px;
  left: 28px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--services-white);
  border-radius: 50%;
  background: var(--services-green);
  box-shadow: 0 0 0 1px var(--services-green);
  content: '';
}

.sph-services__step-number {
  display: block;
  margin-bottom: 26px;
  color: var(--services-green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sph-services__process-list p {
  color: var(--services-muted);
  font-size: 0.95rem;
}

.sph-services__process-disclaimer {
  max-width: 820px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--services-border);
  color: var(--services-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Final CTA */
.sph-services__final {
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(64px, 7vw, 92px);
  background: var(--services-light);
}

.sph-services__final-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  padding: clamp(34px, 5vw, 64px);
  border-radius: 22px;
  background: linear-gradient(130deg, #25833b, #39a751 58%, #2a8b40);
  box-shadow: 0 24px 60px rgba(35, 111, 52, 0.2);
  color: var(--services-white);
}

.sph-services__final-card .sph-services__eyebrow {
  color: #d8ffe0;
}

.sph-services__final-card h2 {
  max-width: 780px;
}

.sph-services__final-card p:last-child {
  max-width: 740px;
  color: #e6f5e9;
}

.sph-services__final-actions {
  align-items: stretch;
  flex-direction: column;
  gap: 18px;
  margin-top: 0;
}

.sph-services__text-link,
.sph-services__text-link:hover {
  color: var(--services-white);
}

/* Gutenberg hybrid adapters.
 * Core blocks own editable content; these rules preserve the established
 * Services presentation without exposing layout controls in the editor.
 */
.sph-services .wp-block-group,
.sph-services .wp-block-buttons {
  margin-block-start: 0;
  margin-block-end: 0;
}

.sph-services .wp-block-button.sph-services__button,
.sph-services .wp-block-button.sph-services__card-link,
.sph-services .wp-block-button.sph-services__text-link {
  display: block;
  min-height: 0;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.sph-services .wp-block-button.sph-services__button > .wp-block-button__link,
.sph-services .wp-block-button.sph-services__card-link > .wp-block-button__link,
.sph-services .wp-block-button.sph-services__text-link > .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sph-services .wp-block-button.sph-services__button--primary > .wp-block-button__link {
  background: var(--services-green);
  color: #07130a;
}

.sph-services .wp-block-button.sph-services__button--primary > .wp-block-button__link:hover {
  background: #4bd269;
  color: #07130a;
}

.sph-services .wp-block-button.sph-services__button--secondary > .wp-block-button__link {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
  color: var(--services-white);
}

.sph-services .wp-block-button.sph-services__button--secondary > .wp-block-button__link:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
  color: var(--services-white);
}

.sph-services .wp-block-button.sph-services__button--light > .wp-block-button__link {
  background: var(--services-white);
  color: #184421;
}

.sph-services .wp-block-button.sph-services__button--light > .wp-block-button__link:hover {
  background: #effff2;
  color: #184421;
}

.sph-services .wp-block-button.sph-services__button--full,
.sph-services .wp-block-button.sph-services__button--full > .wp-block-button__link,
.sph-services .wp-block-button.sph-services__card-link,
.sph-services .wp-block-button.sph-services__card-link > .wp-block-button__link {
  width: 100%;
}

.sph-services .wp-block-button.sph-services__button--full {
  margin-top: 30px;
}

.sph-services .wp-block-button.sph-services__card-link {
  margin-top: 10px;
}

.sph-services .wp-block-button.sph-services__card-link > .wp-block-button__link {
  border-color: rgba(72, 229, 107, 0.32);
  background: rgba(57, 167, 81, 0.12);
  color: #85e398;
}

.sph-services .wp-block-button.sph-services__card-link > .wp-block-button__link:hover {
  background: rgba(57, 167, 81, 0.2);
  color: #a2efb1;
}

.sph-services .wp-block-button.sph-services__text-link > .wp-block-button__link,
.sph-services .wp-block-button.sph-services__text-link > .wp-block-button__link:hover {
  background: transparent;
  color: var(--services-white);
}

.sph-services .wp-block-button.sph-services__text-link > .wp-block-button__link {
  border-color: rgba(255, 255, 255, 0.5);
}

.sph-services .wp-block-button.sph-services__text-link > .wp-block-button__link:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
}

.sph-services .wp-block-button.sph-services__button--primary > .wp-block-button__link::after,
.sph-services .wp-block-button.sph-services__button--light > .wp-block-button__link::after,
.sph-services .wp-block-button.sph-services__card-link > .wp-block-button__link::after,
.sph-services .wp-block-button.sph-services__text-link > .wp-block-button__link::after {
  content: '\2192';
  font-size: 1.15em;
  line-height: 1;
}

.sph-services .wp-block-button > .wp-block-button__link:focus-visible {
  outline: 3px solid rgba(72, 229, 107, 0.4);
  outline-offset: 3px;
}

.sph-services__requirement {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sph-services__requirement-number {
  color: var(--services-green) !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sph-services__requirement-copy h3 {
  margin-bottom: 5px;
  color: var(--services-white);
  font-size: 0.86rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.sph-services__icon-box:empty::before {
  width: 20px;
  height: 20px;
  background: currentColor;
  content: '';
  -webkit-mask: var(--services-icon) center / contain no-repeat;
  mask: var(--services-icon) center / contain no-repeat;
}

.sph-services__icon-box--search {
  --services-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4M8 11h6M11 8v6'/%3E%3C/svg%3E");
}

.sph-services__icon-box--check {
  --services-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.sph-services__icon-box--package {
  --services-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='m21 8-9-5-9 5 9 5 9-5Z'/%3E%3Cpath d='m3 8 9 5 9-5v8l-9 5-9-5V8ZM12 13v8'/%3E%3C/svg%3E");
}

.sph-services__icon-box--document {
  --services-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M6 2h9l4 4v16H6zM14 2v5h5M9 12h6M9 16h6'/%3E%3C/svg%3E");
}

.sph-services__icon-box--bolt {
  --services-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='m13 2-9 12h7l-1 8 9-12h-7z'/%3E%3C/svg%3E");
}

.sph-services__icon-box--ruler {
  --services-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M3 7 7 3l14 14-4 4L3 7Zm5-1L6 8m6 2-2 2m6 2-2 2'/%3E%3C/svg%3E");
}

.sph-services__icon-box--plug {
  --services-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M8 2v5m8-5v5M6 7h12v3a6 6 0 0 1-12 0V7Zm6 9v6'/%3E%3C/svg%3E");
}

.sph-services__icon-box--network {
  --services-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='6' rx='1'/%3E%3Crect x='14' y='15' width='7' height='6' rx='1'/%3E%3Cpath d='M10 6h4a3 3 0 0 1 3 3v6M7 9v3a3 3 0 0 0 3 3h4'/%3E%3C/svg%3E");
}

.sph-services__process-step {
  position: relative;
  margin: 0;
  padding: 30px 28px 28px;
  border-top: 2px solid var(--services-border);
}

.sph-services__process-step::before {
  position: absolute;
  top: -7px;
  left: 28px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--services-white);
  border-radius: 50%;
  background: var(--services-green);
  box-shadow: 0 0 0 1px var(--services-green);
  content: '';
}

.sph-services__final-card > .wp-block-group:first-child > p:last-child {
  max-width: 740px;
  color: #e6f5e9;
}

@media (max-width: 1100px) {
  .sph-services__hero-grid {
    grid-template-columns: 1fr;
  }

  .sph-services__hero-copy,
  .sph-services__review-card {
    max-width: 820px;
  }

  .sph-services__process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .sph-services__section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .sph-services__support-grid,
  .sph-services__final-card {
    grid-template-columns: 1fr;
  }

  .sph-services__process-list {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .sph-services__process-list li {
    margin-left: 8px;
    padding: 8px 0 34px 34px;
    border-top: 0;
    border-left: 2px solid var(--services-border);
  }

  .sph-services__process-step {
    margin-left: 8px;
    padding: 8px 0 34px 34px;
    border-top: 0;
    border-left: 2px solid var(--services-border);
  }

  .sph-services__process-list li::before {
    top: 5px;
    left: -7px;
  }

  .sph-services__process-step::before {
    top: 5px;
    left: -7px;
  }

  .sph-services__step-number {
    margin-bottom: 10px;
  }

  .sph-services__final-actions {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .sph-services h1 {
    font-size: clamp(2.35rem, 12vw, 3.15rem);
  }

  .sph-services__section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .sph-services__actions,
  .sph-services__actions .sph-services__button,
  .sph-services__final-actions,
  .sph-services__final-actions .sph-services__button,
  .sph-services__final-actions .sph-services__text-link,
  .sph-services__actions .sph-services__button > .wp-block-button__link,
  .sph-services__final-actions .sph-services__button > .wp-block-button__link,
  .sph-services__final-actions .sph-services__text-link > .wp-block-button__link {
    width: 100%;
  }

  .sph-services__review-card,
  .sph-services__support-card,
  .sph-services__final-card {
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sph-services *,
  .sph-services *::before,
  .sph-services *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================================================
   Services layout refinements
   Restore spacing suppressed by the global margin resets
   (".sph-services h2" etc. outrank component classes; the
   Gutenberg adapter zeroes .wp-block-group margins) — the
   prefixed selectors below re-establish the intended rhythm.
================================================== */

.sph-services .sph-services__eyebrow {
  margin-bottom: 14px;
}

.sph-services .sph-services__section-heading {
  margin-block-end: clamp(38px, 4vw, 52px);
}

.sph-services .sph-services__requirements {
  margin-top: 24px;
}

.sph-services__support,
.sph-services__process {
  padding-block: clamp(68px, 6vw, 92px);
}

.sph-services__support-card {
  padding: clamp(26px, 2.7vw, 36px);
}

.sph-services__icon-box {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.sph-services__support-card h3 {
  margin-bottom: 8px;
}

.sph-services__process-list li,
.sph-services__process-step {
  padding: 26px 24px 20px;
}

.sph-services__step-number {
  margin-bottom: 12px;
}

.sph-services .sph-services__process-disclaimer {
  max-width: none;
  margin-top: 32px;
  padding-top: 18px;
}

.sph-services__final {
  padding-block: clamp(56px, 5vw, 76px);
}

.sph-services__final-card {
  padding: clamp(34px, 4vw, 52px);
}

/* ==================================================
   Services visual refinement
   More compact, technical and B2B-oriented
================================================== */

.sph-services {
  --services-container: 1280px;
  --services-light: #f2f5f3;
  --services-border: #d8e1db;
}

.sph-services__hero {
  min-height: 700px;
  padding-top: clamp(80px, 7vw, 110px);
  padding-bottom: clamp(68px, 6vw, 90px);
}

.sph-services__hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(48px, 5vw, 72px);
}

.sph-services h1 {
  max-width: 700px;
  font-size: clamp(2.55rem, 4.5vw, 4.3rem);
  line-height: 1.01;
  letter-spacing: -0.035em;
}

.sph-services__lead {
  max-width: 700px;
}

.sph-services__review-card {
  padding: clamp(30px, 3vw, 38px);
  border-radius: 16px;
  background: rgba(21, 30, 40, 0.94);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.25);
}

.sph-services__requirements li {
  padding: 16px 0;
}

.sph-services__support,
.sph-services__process {
  padding-block: clamp(68px, 6vw, 90px);
}

.sph-services__support-grid {
  gap: 24px;
}

.sph-services__support-card {
  padding: 30px 32px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(13, 37, 20, 0.045);
}

.sph-services__support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(13, 37, 20, 0.075);
}

.sph-services__icon-box {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 10px;
}

.sph-services__support-card h3 {
  margin-bottom: 8px;
}

.sph-services .sph-services__section-heading {
  margin-block-end: clamp(40px, 4vw, 52px);
}

.sph-services__process-list li,
.sph-services__process-step {
  padding: 26px 24px 22px;
  border-top-width: 1px;
}

.sph-services__process-list li::before,
.sph-services__process-step::before {
  top: -6px;
  width: 10px;
  height: 10px;
  border-width: 2px;
}

.sph-services__step-number {
  margin-bottom: 12px;
}

.sph-services .sph-services__process-disclaimer {
  max-width: none;
  margin-top: 30px;
  padding-top: 18px;
}

.sph-services__final {
  padding-block: clamp(56px, 5vw, 74px);
}

.sph-services__final-card {
  padding: clamp(38px, 4vw, 52px);
  border-radius: 18px;
  background: linear-gradient(130deg, #287f3a, #35a34c);
  box-shadow: 0 18px 44px rgba(35, 111, 52, 0.16);
}

.sph-services .sph-services__lead {
  margin-bottom: 20px;
}

/* Icon and title on one row inside support cards */
.sph-services__support-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "icon title"
    "body body";
  align-items: center;
  column-gap: 16px;
}

.sph-services__support-card .sph-services__icon-box {
  grid-area: icon;
  margin-bottom: 0;
}

.sph-services__support-card h3 {
  grid-area: title;
  margin-bottom: 0;
}

.sph-services__support-card > p {
  grid-area: body;
  margin-top: 14px;
}
