@import './tokens.css';

/* =========================================================
   The Doggo Scoop — pressureWash.css
   Pressure Washing Service Page
   All selectors scoped with pw- prefix
   Depends on: styles.css (tokens, .btn, .container, .reveal)
   Mirrors turf.css design system exactly
   ========================================================= */

/* ── SHARED PAGE UTILITIES (mirrors turf.css) ──────────── */

.tfKicker {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 0 0 10px;
}

.tfKicker--light {
  color: rgba(var(--blush-rgb), .85);
}

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

.tfSectionTitle em {
  font-style: italic;
  color: var(--blush);
}

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

.tfBody--light {
  color: rgba(248, 251, 255, .78);
}

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

/* ── REVEAL ANIMATION ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── 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 — mirrors tfHeroV2 exactly
   ========================================================= */

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

.pwHero::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;
}

.pwHeroGlow {
  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;
}

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

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


.pwHeroTitle {
  position: relative;
  margin: 16px 0 18px;
  max-width: 620px;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 950;
  color: #fff;
  z-index: 1;
}

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

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

.pwHeroText {
  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;
}

/* Visual / Before-After Slider */
.pwHeroVisual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  min-width: 0;
}

.pwHeroSlider {
  --split: 56%;
  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;
}

.pwHeroImg,
.pwHeroAfterWrap {
  position: absolute;
  inset: 0;
}

.pwHeroImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewX(7deg) scale(1.13);
  transform-origin: center;
}

.pwHeroImg--before {
  filter: saturate(1.12) brightness(1.03);
}

.pwHeroAfterWrap {
  width: 100%;
  clip-path: inset(0 0 0 var(--split));
}

.pwHeroImg--after {
  filter: saturate(1.12) brightness(1.03);
}

.pwHeroDivider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 4px;
  background: #F8FBFF;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 0 20px rgba(0,0,0,.25);
}

.pwHeroHandle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66px;
  height: 66px;
  transform: translate(-50%, -50%) skewX(7deg);
  border: 0;
  border-radius: 50%;
  background: rgba(248,251,255,.94);
  color: #1672DD;
  font-size: 25px;
  font-weight: 900;
  cursor: grab;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
}

.pwHeroHandle:active { cursor: grabbing; }

.pwHeroLabel {
  position: absolute;
  z-index: 6;
  transform: skewX(7deg);
  color: #fff;
}

.pwHeroLabel strong {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 13px;
  border-radius: 7px;
  background: rgba(0,0,0,.70);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pwHeroLabel--before {
  left: 70px;
  bottom: 92px;
}

.pwHeroLabel--after {
  right: 82px;
  bottom: 92px;
}

.pwHeroLabel--after strong {
  background: var(--blush, #1672DD);
}

/* Trust card */
.pwHeroTrust {
  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);
}

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

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

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

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

.pwHeroFaces {
  display: flex;
}

.pwHeroFaces 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;
}

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

.pwHeroTrustIcon {
  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;
}

/* Hero responsive */
@media (max-width: 1100px) {
  .pwHeroInner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pwHeroCopy { padding: 60px 0 0; }
  .pwHeroVisual { justify-content: center; }
  .pwHeroSlider {
    border-radius: 30px;
    transform: none;
    height: clamp(420px, 62vw, 580px);
  }
  .pwHeroImg { transform: none; }
  .pwHeroHandle,
  .pwHeroLabel { transform: none; }
  .pwHeroTrust {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .pwHeroTrustDivider { display: none; }
}

@media (max-width: 760px) {
  .pwHero { padding-top: 20px; }
  .pwHeroCopy { padding-top: 42px; }
  .pwHeroTitle {
    font-size: clamp(46px, 14vw, 68px);
    line-height: .96;
  }
  .pwUnderline::after { bottom: -9px; height: 22px; }
  .pwHeroSlider { height: 430px; border-radius: 24px; }
  .pwHeroLabel--before { left: 22px; bottom: 42px; }
  .pwHeroLabel--after { right: 22px; bottom: 42px; }
  .pwHeroTrust { padding: 24px; border-radius: 18px; }
}

@media (max-width: 520px) {
  .pwHeroTitle { font-size: clamp(42px, 15vw, 58px); }
  .pwHeroText { font-size: 16px; }
  .pwHeroSlider { height: 360px; }
  .pwHeroHandle { width: 54px; height: 54px; font-size: 20px; }
}

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

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

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

.pwExplainerImg {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

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

.pwExplainerImgBadge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--blush);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(var(--blush-rgb), .40);
  max-width: 180px;
  line-height: 1.3;
  text-align: center;
}

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

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

.pwCheckList 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;
}

/* =========================================================
   3. HOW IT WORKS — mirrors tfProcess
   ========================================================= */

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

/* ─── Contained card — .container wraps this, mirrors .servicesBand ─── */
.pwProcessInner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--newBrand);
  padding: 48px 40px 52px;
  border: 1px solid rgba(5,21,94,.10);
  box-shadow: 0 18px 44px rgba(5,21,94,.09);
}

.pwProcessInner::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;
}

.pwProcessInner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 240px at 50% 40%,
    rgba(248,251,255,.06),
    rgba(248,251,255,0) 60%
  );
  pointer-events: none;
  z-index: 0;
}

.pwProcessInner > * {
  position: relative;
  z-index: 1;
}
/* ──────────────────────────────────────────────────────── */

.pwProcessHead {
  text-align: center;
  margin-bottom: 48px;
}

.pwSectionTitle--light {
  color: #fff;
}

.pwSteps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.pwStep {
  background: rgba(248,251,255,.07);
  border: 1px solid rgba(248,251,255,.12);
  border-radius: var(--radius);
  padding: 48px 32px 44px;
  text-align: center;
  position: relative;
  transition: background .2s, border-color .2s;
}

.pwStep:hover {
  background: rgba(248,251,255,.10);
  border-color: rgba(var(--blush-rgb), .35);
}

.pwStepNum {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blush);
  color: var(--newBrand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 999px;
}

.pwStepIcon {
  font-size: 36px;
  margin: 8px 0 12px;
  display: block;
}

.pwStepTitle {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
}

.pwStepText {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(248,251,255,.72);
  line-height: 1.6;
}

.pwStepArrow {
  font-size: 28px;
  color: rgba(248,251,255,.25);
  align-self: center;
  padding: 0 12px;
  margin-top: 20px;
}

/* =========================================================
   4. WHAT THIS SERVICE COVERS — mirrors tfWhy layout
   ========================================================= */

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

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

.pwCoversImg {
  position: relative;
}

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

.pwCoversImgCard {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--newBrand);
  border-radius: 14px;
  padding: 14px 18px;
  max-width: 230px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.pwCoversImgStat {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 4px;
  line-height: 1.3;
}

.pwCoversImgSub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(248,251,255,.70);
  line-height: 1.5;
}

/* =========================================================
   5. WHY IT WORKS — mirrors tfWhy
   ========================================================= */

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

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

.pwWhyPoints {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.pwWhyPoint {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pwWhyPointIcon {
  font-size: 24px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--blush-rgb), .12);
  border: 1px solid rgba(var(--blush-rgb), .22);
  border-radius: 12px;
}

.pwWhyPoint strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

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

.pwWhyImg {
  position: relative;
}

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

.pwWhyImgCard {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--newBrand);
  border-radius: 14px;
  padding: 14px 18px;
  max-width: 230px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.pwWhyImgStat {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 4px;
  line-height: 1.3;
}

.pwWhyImgSub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(248,251,255,.70);
  line-height: 1.5;
}

/* =========================================================
   6. RECURRING MAINTENANCE — mirrors tfRecurring
   ========================================================= */

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

.pwRecurringInner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--newBrand);
  padding: 48px 40px 52px;
  border: 1px solid rgba(5,21,94,.10);
  box-shadow: 0 18px 44px rgba(5,21,94,.09);
}

.pwRecurringInner::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;
}

.pwRecurringInner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 240px at 50% 40%,
    rgba(248,251,255,.06),
    rgba(248,251,255,0) 60%
  );
  pointer-events: none;
  z-index: 0;
}

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

.pwRecurringContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Override tfKicker/tfSectionTitle/tfBody for dark background context */
.pwRecurring .tfKicker { color: rgba(var(--blush-rgb), .85); }
.pwRecurring .tfSectionTitle { color: #fff; }
.pwRecurring .tfBody { color: rgba(248,251,255,.78); }

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

.pwRecurringList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(248,251,255,.88);
  line-height: 1.4;
}

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

.pwRecurringSchedule {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pwScheduleCard {
  background: rgba(248,251,255,.08);
  border: 1px solid rgba(248,251,255,.14);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background .15s, border-color .15s;
}

.pwScheduleCard:hover {
  background: rgba(248,251,255,.13);
  border-color: rgba(var(--blush-rgb), .40);
}

.pwScheduleCardIcon { font-size: 24px; margin-bottom: 4px; }

.pwScheduleCard h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
}

.pwScheduleCard p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(248,251,255,.65);
  line-height: 1.45;
}

/* =========================================================
   7. GALLERY — mirrors tfGallery
   ========================================================= */

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

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

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

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

.pwBoneFlow .pwGallery,
.pwBoneFlow .pwCta {
  position: relative;
  background: transparent;
  z-index: 1;
}

.pwGallery {
  padding: 80px 0 72px;
}

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

.pwGalleryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.pwGalleryPair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.pwGalleryImg {
  position: relative;
  overflow: hidden;
}

.pwGalleryImg img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.pwGalleryItem:hover .pwGalleryImg img {
  transform: scale(1.04);
}

.pwGalleryLabel {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
}

.pwGalleryLabel--after { background: var(--blush); }

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

.pwCta {
  padding: 80px 0;
}

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

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

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

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

.pwCtaBtnLg {
  font-size: 16px;
  padding: 15px 32px;
}

/* =========================================================
   9. FAQ — exact copy of turf.css faq styles
   ========================================================= */

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

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

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

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

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

@media (max-width: 860px) {
  .faqHead { flex-direction: column; align-items: flex-start; }
  .faqGrid  { grid-template-columns: 1fr; }
}

.faqItem {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 10px 25px rgba(var(--ink-rgb), .06);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.faqItem:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(var(--ink-rgb), .09);
  border-color: rgba(var(--blush-rgb), .35);
}

.faqItem summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  transition: color .2s ease;
}

.faqItem summary::-webkit-details-marker { display: none; }

.faqItem summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: rgba(var(--blush-rgb), .55);
}

.faqItem[open] summary { color: var(--blush); }
.faqItem[open] summary span:first-child { color: var(--blush); }

.faqIcon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(var(--cream-rgb), .90);
  position: relative;
  flex: 0 0 auto;
}

.faqIcon::before,
.faqIcon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(var(--blush-rgb), .95);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.faqIcon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faqBody {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(var(--ink-rgb), .06);
}

.faqBody p {
  margin: 14px 0 0;
  color: var(--slate-l);
  font-size: 15px;
  line-height: 1.6;
}

.faqItem[open] .faqIcon {
  background: rgba(var(--blush-rgb), .10);
  border-color: rgba(var(--blush-rgb), .35);
}

.faqItem[open] .faqIcon::after { display: none; }

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

@media (max-width: 960px) {
  .pwExplainerInner,
  .pwCoversInner,
  .pwWhyInner,
  .pwRecurringContent {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pwWhyImgCard,
  .pwCoversImgCard {
    position: static;
    margin-top: 12px;
    max-width: 100%;
  }

  .pwExplainerImgBadge { bottom: 8px; right: 8px; }

  .pwSteps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pwStepArrow { display: none; }

  .pwGalleryGrid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .pwExplainer,
  .pwCovers,
  .pwWhy,
  .pwGallery,
  .pwFaq,
  .pwCta { padding: 56px 0; }

  .pwRecurringInner { padding: 32px 20px 36px; border-radius: 24px; }
  .pwProcess { padding: 48px 0; }
  .pwProcessInner { padding: 22px 16px 18px; border-radius: 24px; }

  .pwWhyPoint { flex-direction: column; gap: 8px; }
  .pwScheduleCard { padding: 14px 16px; }

  .pwGalleryPair { grid-template-columns: 1fr 1fr; }
  .pwGalleryImg img { aspect-ratio: 1/1; }

  .pwSteps { gap: 20px; }
  .pwStep { padding: 22px 18px 18px; }
}