@import url(https://fonts.googleapis.com/css2?family=Afacad:wght@400;500;600;700&display=swap);
/* Webflow Code Components run in Shadow DOM, so this @import scopes the
   font to the component itself. Also keeping it in index.html for the
   Vite local preview. */

.pp-root {
  font-family: "Afacad", system-ui, sans-serif;
  color: hsl(220 30% 15%);
  background: hsl(210 20% 98%);
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.pp-root h1,
.pp-root h2,
.pp-root h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.pp-root *,
.pp-root *::before,
.pp-root *::after {
  box-sizing: border-box;
}

/* Background blobs */
.pp-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.pp-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.5;
}
.pp-blob-1 {
  width: 600px;
  height: 600px;
  background: hsl(96 60% 90%);
  top: -200px;
  left: -250px;
  animation: pp-float 22s ease-in-out infinite;
}
.pp-blob-2 {
  width: 500px;
  height: 500px;
  background: hsl(160 40% 90%);
  top: 30%;
  right: -250px;
  opacity: 0.45;
  animation: pp-float 26s ease-in-out infinite -8s;
}
.pp-blob-3 {
  width: 450px;
  height: 450px;
  background: hsl(96 60% 90%);
  bottom: 5%;
  left: -120px;
  opacity: 0.35;
  animation: pp-float 30s ease-in-out infinite -14s;
}
@keyframes pp-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.pp-main {
  position: relative;
  z-index: 1;
}
.pp-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.pp-hero {
  /* top padding compensates for the 425PPM sticky nav (banner ~50px + main
     nav ~80px ≈ 130px); 160 leaves breathing room above the kicker */
  padding: 160px 0 56px;
  text-align: center;
}
.pp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: 9999px;
  background: white;
  color: hsl(220 30% 15%);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid hsl(220 15% 90%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.pp-kicker-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: hsl(96 52% 49%);
  color: white;
}
.pp-kicker-dot svg {
  width: 11px;
  height: 11px;
}
.pp-kicker-sep {
  color: hsl(220 15% 80%);
  margin: 0 4px;
}
.pp-kicker-strong {
  color: hsl(96 52% 30%);
  font-weight: 700;
}
.pp-h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 22px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.035em;
  text-align: center;
  text-wrap: balance;
}
.pp-grad {
  background: linear-gradient(135deg, hsl(96 52% 49%) 0%, hsl(96 52% 35%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.pp-h1-sub {
  display: inline-block;
  position: relative;
}
.pp-h1-sub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.32em;
  background: hsl(96 52% 49% / 0.18);
  z-index: -1;
  border-radius: 4px;
}
.pp-lead {
  font-size: 19px;
  color: hsl(220 10% 45%);
  max-width: 660px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.pp-hero-ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.pp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: 1.5px solid transparent;
  font-family: inherit;
  text-decoration: none;
}
.pp-hero-cta-primary {
  background: hsl(96 52% 49%);
  color: white;
  box-shadow: 0 8px 24px -8px hsl(96 52% 49% / 0.5);
}
.pp-hero-cta-primary:hover {
  background: hsl(96 52% 42%);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px hsl(96 52% 49% / 0.6);
}
.pp-hero-cta-ghost {
  background: white;
  color: hsl(220 30% 15%);
  border-color: hsl(220 15% 88%);
}
.pp-hero-cta-ghost:hover {
  border-color: hsl(220 30% 15%);
}
.pp-hero-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s;
}
.pp-hero-cta-primary:hover svg {
  transform: translateX(3px);
}

/* Hero stats */
.pp-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 920px;
  margin: 0 auto 32px;
  padding: 28px 0;
  border-top: 1px solid hsl(220 15% 90%);
  border-bottom: 1px solid hsl(220 15% 90%);
}
@media (max-width: 760px) {
  .pp-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }
}
.pp-hero-stat {
  padding: 0 24px;
  border-right: 1px solid hsl(220 15% 90%);
  text-align: left;
}
.pp-hero-stat:last-child {
  border-right: none;
}
@media (max-width: 760px) {
  .pp-hero-stat:nth-child(2) {
    border-right: none;
  }
}
.pp-hero-stat-val {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: hsl(220 30% 15%);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pp-hero-stat-val .pct {
  color: hsl(96 52% 35%);
}
.pp-hero-stat-lbl {
  font-size: 13.5px;
  color: hsl(220 10% 50%);
  margin-top: 6px;
  line-height: 1.4;
}

/* Trust bar */
.pp-trust {
  padding: 16px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  color: hsl(220 10% 50%);
  font-size: 13.5px;
}
.pp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pp-trust-item svg {
  width: 14px;
  height: 14px;
  color: hsl(96 52% 49%);
}

/* Service tabs */
.pp-tabs-wrap {
  padding: 56px 0 24px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: hsl(210 20% 98% / 0.85);
  backdrop-filter: blur(12px);
  /* anchor scroll lands below the 425PPM sticky nav, not behind it */
  scroll-margin-top: 160px;
}
.pp-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.pp-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid hsl(220 15% 90%);
  background: white;
  color: hsl(220 10% 50%);
  font-family: inherit;
}
.pp-tab:hover {
  color: hsl(96 52% 30%);
  border-color: hsl(96 52% 80%);
}
.pp-tab.is-active {
  background: hsl(96 52% 49%);
  color: white;
  border-color: hsl(96 52% 49%);
  box-shadow: 0 4px 14px hsl(96 52% 49% / 0.25);
}
.pp-tab svg {
  width: 15px;
  height: 15px;
}

/* Service header */
.pp-svc-head {
  text-align: center;
  padding: 48px 0 40px;
}
.pp-svc-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 12px;
}
.pp-svc-head p {
  font-size: 17px;
  color: hsl(220 10% 50%);
  max-width: 560px;
  margin: 0 auto;
}

/* Cards */
.pp-cards {
  display: grid;
  gap: 24px;
  padding-bottom: 24px;
}
.pp-cards.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.pp-cards.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .pp-cards.cols-3,
  .pp-cards.cols-2 {
    grid-template-columns: 1fr;
  }
}

.pp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid hsl(220 15% 90%);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.pp-card:hover {
  border-color: hsl(96 52% 60%);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px -12px hsl(96 52% 49% / 0.18);
}
.pp-card.is-hl {
  border: 1.5px solid hsl(96 52% 49%);
  box-shadow: 0 16px 50px -12px hsl(96 52% 49% / 0.25);
  transform: translateY(-8px);
}
.pp-card.is-hl:hover {
  transform: translateY(-12px);
}

.pp-card-bar {
  position: absolute;
  top: -1.5px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, hsl(96 52% 49%), hsl(96 52% 70%));
  border-radius: 0 0 6px 6px;
}
.pp-pop {
  position: absolute;
  top: -14px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: hsl(96 52% 49%);
  color: white;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 14px hsl(96 52% 49% / 0.35);
}
.pp-pop svg {
  width: 11px;
  height: 11px;
}

.pp-card-name {
  font-size: 22px;
  font-weight: 700;
}
.pp-card-sub {
  font-size: 14px;
  color: hsl(220 10% 50%);
  margin-top: 4px;
}
.pp-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 24px;
}
.pp-price {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.pp-unit {
  color: hsl(220 10% 50%);
  font-size: 15px;
  font-weight: 500;
}
.pp-note {
  font-size: 13px;
  color: hsl(220 10% 50%);
  margin-top: 6px;
}

.pp-divider {
  height: 1px;
  background: hsl(220 15% 92%);
  margin: 28px 0 24px;
}

.pp-feats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.pp-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pp-feat-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: hsl(96 52% 95%);
  color: hsl(96 52% 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pp-feat-check svg {
  width: 13px;
  height: 13px;
}
.pp-feat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pp-feat-cat {
  font-size: 11px;
  font-weight: 600;
  color: hsl(96 52% 35%);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pp-feat-val {
  font-size: 14.5px;
  line-height: 1.45;
}

.pp-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-family: inherit;
}
.pp-cta-primary {
  background: hsl(96 52% 49%);
  color: white;
}
.pp-cta-primary:hover {
  background: hsl(96 52% 42%);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px hsl(96 52% 49% / 0.3);
}
.pp-cta-outline {
  background: white;
  color: hsl(96 52% 35%);
  border: 1.5px solid hsl(96 52% 80%);
}
.pp-cta-outline:hover {
  background: hsl(96 52% 95%);
  border-color: hsl(96 52% 49%);
}
.pp-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s;
}
.pp-cta:hover svg {
  transform: translateX(3px);
}

.pp-svc-foot {
  margin-top: 32px;
  text-align: center;
}
.pp-svc-foot p {
  display: inline-block;
  padding: 16px 24px;
  border: 1px solid hsl(220 15% 90%);
  border-radius: 16px;
  background: white;
  font-size: 14px;
  color: hsl(220 10% 50%);
  max-width: 640px;
}

/* FAQ */
.pp-faq-section {
  padding: 104px 0 80px;
}
.pp-faq-head {
  text-align: center;
  margin-bottom: 56px;
}
.pp-faq-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pp-faq-head p {
  font-size: 17px;
  color: hsl(220 10% 50%);
  max-width: 540px;
  margin: 0 auto;
}
.pp-faq-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 760px) {
  .pp-faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.pp-faq-nav {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 760px) {
  .pp-faq-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
}
.pp-faq-nav-btn {
  text-align: left;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: hsl(220 10% 50%);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-faq-nav-btn:hover {
  color: hsl(96 52% 30%);
  background: hsl(96 52% 97%);
}
.pp-faq-nav-btn.is-active {
  background: hsl(96 52% 95%);
  color: hsl(96 52% 28%);
}
.pp-faq-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: hsl(220 15% 80%);
  transition: all 0.2s;
}
.pp-faq-nav-btn.is-active .pp-faq-nav-dot {
  background: hsl(96 52% 49%);
  transform: scale(1.4);
}
.pp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pp-faq-item {
  background: white;
  border: 1px solid hsl(220 15% 90%);
  border-radius: 14px;
  transition: all 0.25s;
  overflow: hidden;
}
.pp-faq-item:hover {
  border-color: hsl(96 52% 55%);
}
.pp-faq-item.is-open {
  border-color: hsl(96 52% 49%);
  box-shadow: 0 8px 24px -10px hsl(96 52% 49% / 0.18);
}
.pp-faq-q {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 600;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.pp-faq-q-text {
  display: flex;
  gap: 12px;
  align-items: baseline;
  /* h3 reset — inherit typo from button */
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
.pp-faq-q-num {
  font-size: 12px;
  font-weight: 700;
  color: hsl(96 52% 35%);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  padding-top: 1px;
  letter-spacing: 0.04em;
}
.pp-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: hsl(96 52% 95%);
  color: hsl(96 52% 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.pp-faq-item.is-open .pp-faq-icon {
  background: hsl(96 52% 49%);
  color: white;
  transform: rotate(45deg);
}
.pp-faq-icon svg {
  width: 14px;
  height: 14px;
}
.pp-faq-a {
  padding: 0 24px 24px 60px;
  font-size: 15.5px;
  line-height: 1.65;
  color: hsl(220 10% 38%);
  max-width: 640px;
}
.pp-faq-a strong {
  color: hsl(220 30% 15%);
  font-weight: 600;
}
.pp-faq-cta {
  margin-top: 56px;
  padding: 32px 36px;
  background: white;
  border: 1px solid hsl(220 15% 90%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.pp-faq-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pp-faq-cta-text strong {
  font-size: 17px;
  font-weight: 600;
  color: hsl(220 30% 15%);
}
.pp-faq-cta-text span {
  font-size: 14.5px;
  color: hsl(220 10% 50%);
}
.pp-faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: hsl(96 52% 49%);
  color: white;
  border-radius: 9999px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.pp-faq-cta-link:hover {
  background: hsl(96 52% 42%);
  transform: translateY(-1px);
}
.pp-faq-cta-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.pp-faq-cta-link:hover svg {
  transform: translateX(3px);
}

/* Contact section (removable in Designer if it duplicates a global footer CTA) */
.pp-contact {
  padding: 80px 0 96px;
  border-top: 1px solid hsl(220 15% 90%);
}
.pp-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .pp-contact-grid {
    grid-template-columns: 1fr;
  }
}
.pp-contact h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 18px;
}
.pp-contact-lead {
  color: hsl(220 10% 50%);
  font-size: 17px;
  margin-bottom: 28px;
  line-height: 1.55;
}
.pp-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pp-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
}
.pp-step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: hsl(96 52% 49%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.pp-contact-card {
  padding: 32px;
  border: 1px solid hsl(220 15% 90%);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 40px -12px rgba(0, 0, 0, 0.08);
}
.pp-contact-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.pp-contact-card p {
  font-size: 14.5px;
  color: hsl(220 10% 50%);
  margin-bottom: 22px;
}
.pp-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: hsl(96 52% 49%);
  color: white;
  border-radius: 9999px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.pp-contact-link:hover {
  background: hsl(96 52% 42%);
  transform: translateY(-1px);
}
.pp-contact-link svg {
  width: 14px;
  height: 14px;
}
.pp-contact-direct {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid hsl(220 15% 92%);
  font-size: 14px;
  color: hsl(220 10% 50%);
}
.pp-contact-direct strong {
  color: hsl(220 30% 15%);
  font-weight: 600;
}

