@import './tokens.css';

/* =========================================================
   The Doggo Scoop — pet-waste-removal.css
   Pet Waste Removal Service Page
   All selectors scoped with pwr- prefix
   Depends on: styles.css (tokens, .btn, .container, .reveal)
   .faqItem / .faqBody / .faqHead shared from styles.css
   ========================================================= */

/* ── SHARED PAGE UTILITIES ─────────────────────────────── */

.pwrKicker {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), .45);
  margin: 0 0 10px;
}

.pwrSectionTitle {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--newBrand);
}

.pwrBody {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--ink-rgb), .70);
  line-height: 1.65;
}

.pwrBody--centered {
  text-align: center;
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── CHECK LIST ────────────────────────────────────────── */

.pwrCheckList {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pwrCheckList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}

.pwrCheckList li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(var(--blush-rgb), .15);
  color: var(--blush);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ── SKIP LINK ─────────────────────────────────────────── */

.skipLink {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  font-size: 14px;
  border-radius: 0 0 8px 0;
}
.skipLink:focus { left: 0; }

/* =========================================================
   1. HERO — identical to turf.html .tfHeroV2 / deoHeroV2
   ========================================================= */

.pwrHero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 42%, rgba(220, 232, 255, .25), transparent 34%),
    linear-gradient(135deg, #05155E 0%, #1672DD 48%, #05155E 100%);
  color: #fff;
  padding: 34px 0 0;
}

.pwrHero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/images/hero-pattern.png");
  background-repeat: repeat;
  background-size: 520px 520px;
  background-position: center top;
  opacity: 0.04;
}

.pwrHeroGlow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 84% 26%, rgba(22, 114, 221, .22), transparent 26%),
    radial-gradient(circle at 70% 75%, rgba(248, 251, 255, .14), transparent 28%);
  pointer-events: none;
}

.pwrHeroInner {
  display: grid;
  grid-template-columns: minmax(390px, .9fr) minmax(520px, 1.1fr);
  gap: clamp(34px, 4vw, 70px);
  align-items: center;
  min-height: 680px;
  position: relative;
  z-index: 2;
}

.pwrHeroCopy {
  position: relative;
  z-index: 2;
  padding: 50px 0 110px;
}


.pwrHeroTitle {
  margin: 16px 0 18px;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 950;
  color: #fff;
}

.pwrUnderline {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: #fff;
  font-style: normal;
  padding-bottom: 10px;
}

.pwrUnderline::after {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  bottom: -21px;
  height: 46px;
  background: url("/images/underline-white.png") no-repeat center;
  background-size: 85% auto;
  z-index: -1;
  pointer-events: none;
  transform: rotate(-1deg);
}

.pwrHeroText {
  max-width: 52ch;
  margin: 0 0 32px;
  color: rgba(248,251,255,.78);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.62;
}

.pwrHeroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pwrHeroBtn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.pwrHeroBtn--primary {
  background: #F8FBFF;
  color: #05155E;
  box-shadow: 0 18px 34px rgba(22, 114, 221, .28);
}

.pwrHeroBtn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(22, 114, 221, .38);
}

.pwrHeroBtn--ghost {
  color: #fff;
  background: rgba(248,251,255,.07);
  border: 1px solid rgba(248,251,255,.34);
}

.pwrHeroBtn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(248,251,255,.12);
  border-color: rgba(248,251,255,.55);
}

/* Visual / image card */

.pwrHeroVisual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  min-width: 0;
}

.pwrHeroImgCard {
  position: relative;
  width: min(880px, 100%);
  height: clamp(490px, 56vw, 670px);
  overflow: hidden;
  border-radius: 34px 0 0 34px;
  box-shadow:
    0 28px 70px rgba(0,0,0,.34),
    inset 0 0 0 1px rgba(248,251,255,.18);
  transform: skewX(-7deg);
  transform-origin: center;
  background: #123;
}

.pwrHeroImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewX(7deg) scale(1.13);
  transform-origin: center;
  filter: saturate(1.12) brightness(1.03);
}

/* Trust card — identical to .tfHeroV2Trust / .deoHeroV2Trust */

.pwrHeroTrust {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1180px;
  margin-top: -72px;
  padding: 34px 44px;
  border-radius: 22px;
  background: rgba(248,251,255,.96);
  color: #123;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.pwrHeroTrustItem {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pwrHeroTrustItem strong {
  display: block;
  margin-bottom: 3px;
  color: #1672DD;
  font-size: 15px;
  font-weight: 950;
}

.pwrHeroTrustItem p {
  margin: 0;
  color: rgba(5, 21, 94, .72);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.pwrHeroTrustDivider {
  width: 1px;
  height: 54px;
  background: rgba(5, 21, 94, .14);
}

.pwrHeroFaces {
  display: flex;
}

.pwrHeroFaces span {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 3px solid #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #f2c2a2 0 22%, transparent 23%),
    radial-gradient(circle at 50% 72%, #42526a 0 28%, transparent 29%),
    #d8e5ef;
}

.pwrHeroFaces span:first-child { margin-left: 0; }

.pwrHeroTrustIcon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(22, 114, 221, .08);
  color: #1672DD;
  font-size: 26px;
}

/* =========================================================
   2. EXPLAINER — mirrors .deoExplainer / .tfExplainer
   ========================================================= */

.pwrExplainer {
  padding: 80px 0;
  background: var(--cream);
}

.pwrExplainerInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pwrExplainerImg {
  border-radius: var(--radius);
  overflow: hidden;
}

.pwrExplainerImg img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

/* =========================================================
   3. PROCESS — mirrors .promiseSection / .promiseItem
      Same container override as turf.css .tfProcessPromise
   ========================================================= */

.pwrProcess {
  padding: 96px 0 100px;
  background: var(--cream);
}

.pwrProcessWrap {
  text-align: center;
  max-width: 1480px;
  margin: 0 auto;
}

.pwrProcessWrap.container {
  width: 100%;
  max-width: 1480px;
  padding-left: clamp(56px, 8vw, 120px);
  padding-right: clamp(56px, 8vw, 120px);
}

.pwrProcessKicker {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 18px;
  color: rgba(var(--ink-rgb), .45);
}

.pwrProcessTitle {
  margin: 0 0 48px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--blush);
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.06;
}

.pwrProcessList {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  column-gap: 48px;
  row-gap: 72px;
}

.pwrProcessItem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: 36px 32px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.pwrProcessItem:hover {
  background: #F8FBFF;
  border-color: rgba(var(--ink-rgb), 0.08);
  box-shadow: 0 18px 40px rgba(var(--ink-rgb), 0.18);
}

.pwrProcessIcon {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  text-align: left;
}

.pwrProcessIconImg {
  width: 70px;
  height: auto;
  display: block;
  margin: 0;
  opacity: .95;
  filter: drop-shadow(0 14px 26px rgba(var(--ink-rgb), .14));
}

.pwrProcessCardTitle {
  margin: 0 0 16px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.06;
}

.pwrProcessCardText {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}

/* =========================================================
   4. SERVICE PLANS — mirrors #services .servicesBand
   ========================================================= */

.pwrPlans {
  padding: 72px 0;
  background: var(--cream);
}

.pwrPlansContainer {
  width: min(100%, 1500px);
}

.pwrPlansBand {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 36px 28px 32px;
  background: var(--slate);
  border: 1px solid rgba(var(--ink-rgb), .10);
  box-shadow: 0 18px 44px rgba(var(--ink-rgb), .09);
}

.pwrPlansBand::before {
  content: "";
  position: absolute;
  inset: -120px;
  background-image: url("/images/whitePaw.png");
  background-repeat: repeat;
  background-size: 420px 420px;
  transform: rotate(-6deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.055;
}

.pwrPlansBand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 240px at 50% 40%,
    rgba(var(--cream-rgb), .14),
    rgba(var(--cream-rgb), 0) 60%
  );
  pointer-events: none;
  z-index: 0;
}

.pwrPlansBand > * {
  position: relative;
  z-index: 1;
}

.pwrPlansHead {
  margin-bottom: 28px;
}

.pwrPlansTitle {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 950;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.06;
}

.pwrPlansSub {
  margin: 0;
  font-size: 16px;
  color: rgba(var(--ink-rgb), .55);
  font-weight: 650;
}

/* 5-card grid: 3 on top row, 2 centered below */
.pwrPlansGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pwrPlansGrid > *:nth-child(4) { grid-column: 1; }
.pwrPlansGrid > *:nth-child(5) { grid-column: 2; }

.pwrPlanCard {
  position: relative;
  border-radius: 18px;
  border: 2px solid rgba(var(--ink-rgb), .18);
  background: rgba(var(--cream-rgb), .88);
  box-shadow: 0 14px 28px rgba(var(--ink-rgb), .07);
  padding: 20px 20px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.pwrPlanCard:not(.pwrPlanCard--featured):hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(var(--ink-rgb), .11);
  border-color: rgba(var(--blush-rgb), .45);
}

.pwrPlanCard--featured {
  border-color: rgba(var(--ink-rgb), .22);
  box-shadow: 0 18px 44px rgba(var(--ink-rgb), .13);
}

.pwrPlanBadge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--newBrand);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.pwrPlanIconWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}

.pwrPlanIcon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  opacity: .95;
}

.pwrPlanIcon--lg {
  width: 66px;
  height: 66px;
}

.pwrPlanTitle {
  margin: 4px 0 6px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--ink);
}

.pwrPlanDesc {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(var(--ink-rgb), .60);
  text-align: center;
  line-height: 1.5;
}

.pwrPlanBullets {
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.55;
  font-size: 13px;
  flex: 1;
}

.pwrPlanBullets li { margin: 6px 0; }

.pwrPlanBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 12px;
  padding: 11px 14px;
  font-weight: 950;
  font-size: 13px;
  letter-spacing: -0.01em;
  border: 1px solid rgba(var(--ink-rgb), .14);
  background: var(--slate-d);
  color: var(--cream);
  box-shadow: 0 10px 22px rgba(var(--ink-rgb), .24);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
  margin-top: auto;
}

.pwrPlanBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(var(--ink-rgb), .30);
}

.pwrPlanBtn--ghost {
  background: var(--blush);
  color: rgba(var(--ink-rgb), .92);
  border: 2px solid var(--blush-l);
  box-shadow: 0 8px 18px rgba(var(--blush-rgb), .18);
}

.pwrPlanBtn--ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(var(--blush-rgb), .24);
}

.pwrPlansNote {
  margin: 22px 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--ink-rgb), .55);
}

.pwrPlansNote a {
  color: var(--newBrand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================================
   5. WHY CHOOSE US — mirrors .whyBand from styles.css
   ========================================================= */

.pwrWhyBand {
  padding: 120px 0 118px;
  background: var(--cream);
}

.pwrWhyContainer {
  width: min(100%, 1500px);
  padding-left: 24px;
  padding-right: 24px;
}

.pwrWhyHead {
  max-width: 920px;
  margin: 0 auto 72px;
  text-align: center;
}

.pwrWhyTitle {
  margin: 14px 0 18px;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 950;
  color: var(--blush);
}

.pwrWhySub {
  margin: 0 auto;
  max-width: 70ch;
  color: rgba(var(--ink-rgb), .45);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.7;
}

.pwrWhyList {
  width: 100%;
  max-width: none;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pwrWhyItem {
  background: #F8FBFF;
  border: 1.5px solid rgba(5, 21, 94, 0.15);
  border-radius: 28px;
  padding: 40px 36px 36px;
  min-height: 390px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  box-shadow:
    0 1px 0 rgba(248,251,255,.8) inset,
    0 10px 24px rgba(var(--ink-rgb), .05);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.pwrWhyItem:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(248,251,255,.9) inset,
    0 18px 38px rgba(var(--ink-rgb), .08);
}

.pwrWhyItem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 3px;
  background: var(--blush);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity .25s ease, transform .25s ease;
}

.pwrWhyItem:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.pwrWhyMark {
  margin: 0 0 26px;
}

.pwrWhyIconPng {
  width: 97px;
  height: 97px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.pwrWhyItem h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-weight: 900;
  color: var(--ink);
}

.pwrWhyItem p {
  margin: 0;
  color: rgba(var(--ink-rgb), .76);
  font-weight: 600;
  line-height: 1.7;
  font-size: 16px;
}

/* =========================================================
   BONE PATTERN WRAPPER — reviews + add-ons + CTA
   Mirrors .sectionsFlow--areasReviews / .tfBoneFlow / .deoBoneFlow
   ========================================================= */

.pwrBoneFlow {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  z-index: 1;
  isolation: isolate;
}

.pwrBoneFlow::before,
.pwrBoneFlow::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-image: url("/images/navyBonepattern.png");
  background-repeat: repeat;
  z-index: 0;
}

.pwrBoneFlow::before {
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: 400px 400px;
  background-position: 90px 10px;
  opacity: 0.07;
  transform: rotate(17deg);
}

.pwrBoneFlow::after {
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: 600px 600px;
  background-position: 341px 60px;
  opacity: 0.05;
  transform: rotate(1deg);
}

.pwrBoneFlow > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
   6. REVIEWS — mirrors .reviews from styles.css
   ========================================================= */

.pwrReviews {
  padding: 92px 0 80px;
  background: transparent;
}

.pwrReviewsHead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.pwrReviewsTitle {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 900;
  color: var(--blush);
  letter-spacing: -.02em;
}

.pwrReviewsSub {
  margin: 0;
  color: rgba(var(--ink-rgb), .45);
  font-size: 16px;
  font-weight: 600;
}

.pwrReviewsGrid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pwrReviewCard {
  background: rgba(var(--cream-rgb), .94);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(var(--ink-rgb), .12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--slate-d);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pwrReviewCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(var(--ink-rgb), .14);
}

.pwrReviewCard--featured {
  border-color: var(--blush);
}

.pwrStars {
  color: var(--blush);
  font-size: 18px;
  letter-spacing: 2px;
}

.pwrQuote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  flex: 1;
}

.pwrReviewer {
  font-size: 14px;
  color: var(--slate-l);
  font-weight: 600;
}

/* =========================================================
   7. ADD-ON CARDS
   ========================================================= */

.pwrAddons {
  padding: 72px 0 80px;
  background: transparent;
}

.pwrAddonsHead {
  text-align: center;
  margin-bottom: 44px;
}

.pwrAddonsGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pwrAddonCard {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: rgba(var(--cream-rgb), .92);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 10px 26px rgba(var(--ink-rgb), .07);
  transition: transform .18s ease, box-shadow .18s ease;
}

.pwrAddonCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(var(--ink-rgb), .11);
}

.pwrAddonIcon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pwrAddonIcon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(var(--ink-rgb), .12));
}

.pwrAddonBody h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}

.pwrAddonBody p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--ink-rgb), .65);
  line-height: 1.6;
}

.pwrAddonLink {
  font-size: 13px;
  font-weight: 800;
  color: var(--newBrand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================================
   8. FINAL CTA — mirrors .tfCta
   ========================================================= */

.pwrCta {
  padding: 80px 0;
  background: transparent;
}

.pwrCtaInner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.pwrCtaBones {
  font-size: 28px;
  letter-spacing: 8px;
  margin-bottom: 16px;
  opacity: .5;
}

.pwrCtaTitle {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--newBrand);
}

.pwrCtaText {
  margin: 0 0 28px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(var(--ink-rgb), .65);
  line-height: 1.55;
}

.pwrCtaButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pwrCtaBtn--primary {
  background: var(--slate-d);
  color: #fff;
  border-color: var(--slate-d);
  font-size: 15px;
  font-weight: 950;
  padding: 14px 28px;
}

.pwrCtaBtn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(var(--ink-rgb), .32);
}

.pwrCtaBtn--ghost {
  background: rgba(var(--cream-rgb), .96);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

/* =========================================================
   9. FAQ — reuses .faqItem/.faqBody from styles.css
   ========================================================= */

.pwrFaq {
  padding: 80px 20px;
  background: var(--cream);
}

.pwrFaqHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.pwrFaqHead h2 {
  margin: 0;
  font-size: 32px;
  color: var(--blush);
}

.pwrFaqHead p {
  margin: 0;
  color: rgba(var(--ink-rgb), .45);
  font-size: 16px;
}

.pwrFaqGrid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Hero */
@media (max-width: 1100px) {
  .pwrHeroInner { grid-template-columns: 1fr; min-height: auto; }
  .pwrHeroCopy { padding: 60px 0 0; }
  .pwrHeroVisual { justify-content: center; }
  .pwrHeroImgCard { border-radius: 30px; transform: none; height: clamp(420px, 62vw, 580px); }
  .pwrHeroImg { transform: none; }
  .pwrHeroTrust { grid-template-columns: 1fr; margin-top: 28px; }
  .pwrHeroTrustDivider { display: none; }
}

@media (max-width: 760px) {
  .pwrHero { padding-top: 20px; }
  .pwrHeroCopy { padding-top: 42px; }
  .pwrHeroTitle { font-size: clamp(42px, 13vw, 58px); line-height: .96; }
  .pwrUnderline::after { bottom: -9px; height: 22px; }
  .pwrHeroActions { flex-direction: column; }
  .pwrHeroBtn { width: 100%; }
  .pwrHeroImgCard { height: 400px; border-radius: 22px; }
  .pwrHeroTrust { padding: 22px; border-radius: 18px; }
}

/* Explainer */
@media (max-width: 960px) {
  .pwrExplainerInner { grid-template-columns: 1fr; gap: 40px; }
}

/* Process */
@media (max-width: 1100px) {
  .pwrProcess { padding: 84px 0 90px; }
  .pwrProcessTitle { margin-bottom: 40px; }
  .pwrProcessList { column-gap: 28px; row-gap: 56px; }
  .pwrProcessItem { padding: 28px 22px; }
}

@media (max-width: 720px) {
  .pwrProcess { padding: 72px 0 48px; }
  .pwrProcessWrap.container { width: 100%; max-width: none; margin: 0; padding-left: 0; padding-right: 0; }
  .pwrProcessWrap { width: 100%; max-width: none; margin: 0; text-align: left; }
  .pwrProcessKicker, .pwrProcessTitle { padding-left: 24px; padding-right: 24px; text-align: left; }
  .pwrProcessTitle { margin-bottom: 28px; font-size: clamp(32px, 10vw, 46px); }
  .pwrProcessList { grid-template-columns: 1fr; column-gap: 0; row-gap: 14px; }
  .pwrProcessItem { padding: 18px 20px; border-radius: 0; }
  .pwrProcessIconImg { width: 60px; }
}

/* Plans */
@media (max-width: 980px) {
  .pwrPlansBand { padding: 22px 16px 18px; border-radius: 24px; }
  .pwrPlansGrid { grid-template-columns: 1fr 1fr; }
  .pwrPlansGrid > *:nth-child(4) { grid-column: auto; }
  .pwrPlansGrid > *:nth-child(5) { grid-column: auto; }
}

@media (max-width: 640px) {
  .pwrPlans { padding: 56px 0; }
  .pwrPlansGrid { grid-template-columns: 1fr; }
}

/* Why */
@media (max-width: 1100px) {
  .pwrWhyBand { padding: 92px 0; }
  .pwrWhyHead { margin-bottom: 54px; }
  .pwrWhyList { gap: 22px; }
  .pwrWhyItem { padding: 32px 28px 30px; min-height: 330px; }
  .pwrWhyIconPng { width: 88px; height: 88px; }
  .pwrWhyItem h3 { font-size: 22px; }
  .pwrWhyItem p { font-size: 15.5px; }
}

@media (max-width: 980px) {
  .pwrWhyBand { padding: 78px 0 82px; }
  .pwrWhyHead { text-align: left; margin: 0 0 44px; max-width: 760px; }
  .pwrWhySub { margin: 0; max-width: 62ch; }
  .pwrWhyList { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 28px; }
  .pwrWhyItem { min-height: 310px; }
}

@media (max-width: 560px) {
  .pwrWhyBand { padding: 68px 0 72px; }
  .pwrWhyHead { margin-bottom: 34px; }
  .pwrWhyTitle { font-size: clamp(30px, 8vw, 38px); }
  .pwrWhySub { font-size: 15px; }
  .pwrWhyList { grid-template-columns: 1fr; gap: 18px; margin-top: 22px; }
  .pwrWhyItem { min-height: unset; padding: 30px 24px 28px; border-radius: 24px; }
  .pwrWhyIconPng { width: 96px; height: 96px; }
  .pwrWhyItem h3 { font-size: 22px; }
  .pwrWhyItem p { font-size: 15.5px; }
}

/* Reviews + Add-ons + CTA */
@media (max-width: 760px) {
  .pwrAddonsGrid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .pwrAddonCard { flex-direction: column; }
}

/* FAQ */
@media (max-width: 860px) {
  .pwrFaqHead { flex-direction: column; align-items: flex-start; }
  .pwrFaqGrid { grid-template-columns: 1fr; }
}

/* CTA buttons */
@media (max-width: 480px) {
  .pwrCtaButtons { flex-direction: column; align-items: stretch; }
  .pwrCtaBtn--primary, .pwrCtaBtn--ghost { width: 100%; justify-content: center; }
}