/* Service page */
.service-page {
  background: var(--color-white);
}

.service-page section {
  width: min(var(--max-width), 100% - 40px);
  margin: 0 auto;
}

.po-hero {
  margin-top: 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1d9e75 0%, #085041 100%);
  color: #fff;
  padding: clamp(44px, 7vw, 82px) 28px;
  text-align: center;
}

.po-hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.po-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.3vw, 52px);
  line-height: 1.08;
  color: #fff;
}

.po-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.po-hero-content > div {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.po-problem-solution {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.po-problem-solution > div {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.po-problem-solution .solution {
  background: var(--color-teal-light);
  border-color: rgba(29, 158, 117, 0.25);
}

.po-problem-solution h2 {
  margin: 0 0 10px;
  color: var(--color-custom-gray);
}

.po-problem-solution ul {
  margin: 0;
  padding-left: 18px;
  color: var(--color-custom-gray);
  line-height: 1.8;
}

.po-features {
  margin-top: 58px;
}

.po-features-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
}

.po-features-header h2 {
  margin: 0 0 10px;
  color: var(--color-custom-gray);
}

.po-features-header p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.po-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.po-feature-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--color-white);
}

.po-feature-card i {
  font-size: 28px;
  color: var(--color-custom-green);
}

.po-feature-card h4 {
  margin: 12px 0 8px;
  color: var(--color-custom-gray);
}

.po-feature-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.po-how-it-works {
  margin-top: 58px;
  text-align: center;
}

.po-how-it-works > h2 {
  margin: 0;
  color: var(--color-custom-gray);
}

.po-how-it-works > p {
  margin: 10px auto 0;
  max-width: 680px;
  color: var(--color-muted);
  line-height: 1.7;
}

.po-steps-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.po-step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
}

.po-step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-custom-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.po-step h4 {
  margin: 0 0 8px;
  color: var(--color-custom-gray);
}

.po-step p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.po-savings {
  margin-top: 58px;
  padding: 46px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1d9e75 0%, #085041 100%);
}

.po-savings h2 {
  margin: 0 0 20px;
  color: #fff;
  text-align: center;
}

.po-savings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.po-savings-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.po-savings-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.po-cta {
  margin: 58px auto 72px;
  text-align: center;
}

.po-cta h2 {
  margin: 0;
  color: var(--color-custom-gray);
}

.po-cta p {
  max-width: 720px;
  margin: 10px auto 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.po-cta .btn {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .po-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .po-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .service-page section {
    width: min(var(--max-width), 100% - 24px);
  }

  .po-problem-solution {
    grid-template-columns: 1fr;
  }

  .po-features-grid,
  .po-steps-grid,
  .po-savings-grid {
    grid-template-columns: 1fr;
  }

  .po-hero {
    border-radius: 14px;
    margin-top: 18px;
  }
}
