.gpw-wrap {
  --gpw-ink: #151825;
  --gpw-line: #cbc7ce;
  --gpw-image-width: 28%;
  --gpw-feature-width: 22%;
  width: 100%;
  color: var(--gpw-ink);
/*   background: #f8f6f9; */
  font-family: inherit;
  padding:0 !important;
}

.gpw-wrap *,
.gpw-wrap *::before,
.gpw-wrap *::after {
  box-sizing: border-box;
}

.gpw-inner {
  width: 100%;
  margin-inline: auto;
}

.gpw-heading {
  margin: 0 0 44px;
  max-width: 1100px;
  color: var(--gpw-ink);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.gpw-services-list {
  display: grid;
  gap: 8px;
}

.gpw-service-card {
  display: grid;
  grid-template-columns: minmax(240px, var(--gpw-image-width)) minmax(0, 1fr) minmax(210px, var(--gpw-feature-width));
  min-height: 365px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--gpw-line);
  border-radius: 20px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, opacity .35s ease;
}

.gpw-service-card:hover {
  border-color: #aaa5ad;
  box-shadow: 0 18px 45px rgba(22, 24, 37, .07);
}

.gpw-service-image-wrap {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: #211e24;
}

.gpw-service-image,
.gpw-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gpw-service-image {
  transition: transform .55s cubic-bezier(.2, .65, .3, 1);
}

.gpw-service-card:hover .gpw-service-image {
  transform: scale(1.025);
}

.gpw-service-main {
  min-width: 0;
  padding: 50px 48px 48px;
  display: flex;
  flex-direction: column;
}

.gpw-service-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.gpw-service-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 15px;
  border-radius: 999px;
  background: #e2e0e4;
  color: var(--gpw-ink);
  font-size: .88rem;
  font-weight: 500;
  line-height: 1;
}

.gpw-service-arrow {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  margin-top: -8px;
  margin-right: -6px;
  padding: 6px;
  border: 0;
  background: transparent;
  color: #302d36;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color .25s ease, transform .3s ease;
}

.gpw-service-arrow:hover,
.gpw-service-arrow:focus-visible {
  background: rgba(21, 24, 37, .06);
  transform: translate(2px, -2px);
  outline: none;
}

.gpw-service-arrow svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gpw-service-copy {
  margin-top: auto;
}

.gpw-service-title {
  margin: 0 0 15px;
  color: var(--gpw-ink);
  font-size: clamp(1.75rem, 2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.gpw-service-description {
  max-width: 760px;
  color: var(--gpw-ink);
  font-size: clamp(.98rem, 1.03vw, 1.08rem);
  line-height: 1.52;
  letter-spacing: -0.015em;
}

.gpw-service-description p {
  margin: 0;
}

.gpw-service-features {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 36px 46px;
  border-left: 1px solid var(--gpw-line);
}

.gpw-service-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.gpw-service-features li {
  color: var(--gpw-ink);
  font-size: .98rem;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.gpw-service-features li::before {
  content: "#";
  display: inline-block;
  margin-right: 7px;
  font-weight: 500;
}

.gpw-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.gpw-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 132px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--gpw-ink);
  color: #fff;
  font: inherit;
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, opacity .2s ease;
}

.gpw-button:hover,
.gpw-button:focus-visible {
  background: #34384a;
  color: #fff;
  transform: translateY(-1px);
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.gpw-button[disabled] {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.gpw-button[hidden],
.gpw-actions[hidden] {
  display: none !important;
}

.gpw-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: gpw-spin .7s linear infinite;
}

.gpw-is-loading .gpw-spinner {
  display: inline-block;
}

.gpw-status {
  min-height: 1.5em;
  margin: 10px 0 0;
  text-align: center;
  font-size: .9rem;
}

.gpw-status:empty {
  margin: 0;
  min-height: 0;
}

.gpw-reveal {
  opacity: 0;
  transform: translateY(20px);
}

.gpw-reveal.gpw-is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease, border-color .25s ease, box-shadow .25s ease;
}

.gpw-editor-empty {
  padding: 20px;
  border: 1px dashed #aaa;
  text-align: center;
}

@keyframes gpw-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1199px) {
  .gpw-service-card {
    grid-template-columns: minmax(280px, 37%) minmax(0, 63%);
  }

  .gpw-service-image-wrap {
    grid-row: 1 / span 2;
    min-height: 430px;
  }

  .gpw-service-main {
    min-height: 300px;
    padding: 38px;
  }

  .gpw-service-features {
    grid-column: 2;
    border-left: 1px solid var(--gpw-line);
    border-top: 1px solid var(--gpw-line);
    padding: 26px 38px 30px;
  }

  .gpw-service-features ul {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }
}

@media (max-width: 767px) {
  .gpw-heading {
    margin-bottom: 26px;
  }

  .gpw-services-list {
    gap: 14px;
  }

  .gpw-service-card {
    display: block;
    min-height: 0 !important;
    border-radius: 17px;
  }

  .gpw-service-image-wrap {
    min-height: 0;
    aspect-ratio: 1.2 / 1;
  }

  .gpw-service-main {
    min-height: 280px;
    padding: 28px 24px 30px;
  }

  .gpw-service-arrow {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    margin-top: -7px;
    margin-right: -5px;
  }

  .gpw-service-title {
    font-size: clamp(1.65rem, 7vw, 2.05rem);
  }

  .gpw-service-description {
    font-size: .98rem;
  }

  .gpw-service-features {
    display: block;
    padding: 26px 24px 29px;
    border-left: 0;
    border-top: 1px solid var(--gpw-line);
  }

  .gpw-service-features ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gpw-actions {
    align-items: stretch;
  }

  .gpw-button {
    min-width: min(100%, 160px);
  }
}

@media (max-width: 420px) {
  .gpw-service-main {
    min-height: 300px;
    padding-inline: 20px;
  }

  .gpw-service-badge {
    min-height: 30px;
    padding-inline: 13px;
    font-size: .82rem;
  }

  .gpw-service-features {
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gpw-wrap *,
  .gpw-wrap *::before,
  .gpw-wrap *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
