/* =====================================================
   SECTION 1: HEAD HERO CSS
   ===================================================== */

.home-hero-mobile {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--pepti-bg-dark-alt, #0a0a0f);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* =====================================================
   SERVICE DETAIL HERO BOXES — PEPTICLINIC BRANDED
   ===================================================== */

.pc-service-box-hero {
  --pepti-hero-primary: #7c3aed;
  --pepti-hero-primary-hover: #6d28d9;
  --pepti-hero-accent: #a855f7;
  --pepti-hero-text: #1a1a2e;
  --pepti-hero-text-muted: #4b5563;
  --pepti-hero-bg-tint-1: #f3e8ff;
  --pepti-hero-bg-tint-2: #faf5ff;
  --pepti-hero-glow: rgba(124, 58, 237, 0.35);
  --pepti-hero-shadow: rgba(124, 58, 237, 0.35);
  --pepti-hero-shadow-hover: rgba(124, 58, 237, 0.5);
  --pepti-hero-check-bg: #ede9fe;
  --pepti-hero-check-color: #7c3aed;
  position: relative;
  display: block;
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, var(--pepti-hero-bg-tint-1) 0%, #ffffff 55%, var(--pepti-hero-bg-tint-2) 100%);
}

html[data-gender="men"] .pc-service-box-hero {
  --pepti-hero-primary: #2563eb;
  --pepti-hero-primary-hover: #1d4ed8;
  --pepti-hero-accent: #3b82f6;
  --pepti-hero-bg-tint-1: #dbeafe;
  --pepti-hero-bg-tint-2: #eff6ff;
  --pepti-hero-glow: rgba(37, 99, 235, 0.35);
  --pepti-hero-shadow: rgba(37, 99, 235, 0.35);
  --pepti-hero-shadow-hover: rgba(37, 99, 235, 0.5);
  --pepti-hero-check-bg: #dbeafe;
  --pepti-hero-check-color: #2563eb;
}

html[data-gender="women"] .pc-service-box-hero {
  --pepti-hero-primary: #db2777;
  --pepti-hero-primary-hover: #be185d;
  --pepti-hero-accent: #ec4899;
  --pepti-hero-bg-tint-1: #fce7f3;
  --pepti-hero-bg-tint-2: #fdf2f8;
  --pepti-hero-glow: rgba(219, 39, 119, 0.35);
  --pepti-hero-shadow: rgba(219, 39, 119, 0.35);
  --pepti-hero-shadow-hover: rgba(219, 39, 119, 0.5);
  --pepti-hero-check-bg: #fce7f3;
  --pepti-hero-check-color: #db2777;
}

.pc-service-box-hero__top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.16) 52%, rgba(0, 0, 0, 0) 100%);
}

.pc-service-box-hero__bg-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.pc-service-box-hero__bg-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.5;
}

.pc-service-box-hero__bg-blob--top {
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--pepti-hero-glow) 0%, transparent 70%);
}

.pc-service-box-hero__bg-blob--bottom {
  bottom: -200px;
  left: -150px;
  width: 400px;
  height: 400px;
  opacity: 0.3;
  background: radial-gradient(circle, var(--pepti-hero-glow) 0%, transparent 70%);
}

.pc-service-box-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 40px 80px;
}

.pc-service-box-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 68px;
  align-items: center;
}

.pc-service-box-hero__content {
  max-width: 610px;
}

.pc-service-box-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 8px 16px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--pepti-hero-text-muted);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.pc-service-box-hero__eyebrow strong {
  color: var(--pepti-hero-primary);
  font-weight: 700;
}

.pc-service-box-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pepti-hero-primary);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
  animation: pcServiceBoxPulse 2s infinite;
}

html[data-gender="men"] .pc-service-box-hero__eyebrow-dot {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

html[data-gender="women"] .pc-service-box-hero__eyebrow-dot {
  box-shadow: 0 0 0 4px rgba(219, 39, 119, 0.14);
}

@keyframes pcServiceBoxPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.pc-service-box-hero__title {
  margin: 0 0 20px;
  color: var(--pepti-hero-text);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.pc-service-box-hero__title-accent {
  display: block;
  color: var(--pepti-hero-primary);
  background: linear-gradient(135deg, var(--pepti-hero-primary) 0%, var(--pepti-hero-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pc-service-box-hero__subtitle {
  margin: 0 0 30px;
  color: var(--pepti-hero-text-muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
}

.pc-service-box-hero__benefits {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.pc-service-box-hero__benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--pepti-hero-text);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.5;
}

.pc-service-box-hero__check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--pepti-hero-check-color);
  background: var(--pepti-hero-check-bg);
}

.pc-service-box-hero__check svg {
  width: 16px;
  height: 16px;
}

.pc-service-box-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.pc-service-box-hero__btn,
.pc-service-box-hero__btn:link,
.pc-service-box-hero__btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 196px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.pc-service-box-hero__btn--primary,
.pc-service-box-hero__btn--primary:link,
.pc-service-box-hero__btn--primary:visited {
  color: #ffffff !important;
  background: var(--pepti-hero-primary) !important;
  box-shadow: 0 8px 22px var(--pepti-hero-shadow);
}

.pc-service-box-hero__btn--primary:hover,
.pc-service-box-hero__btn--primary:focus,
.pc-service-box-hero__btn--primary:active {
  color: #ffffff !important;
  background: var(--pepti-hero-primary-hover) !important;
  box-shadow: 0 10px 26px var(--pepti-hero-shadow-hover);
  transform: translateY(-2px);
}

.pc-service-box-hero__btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.22s ease;
}

.pc-service-box-hero__btn--primary:hover .pc-service-box-hero__btn-arrow {
  transform: translateX(3px);
}

.pc-service-box-hero__btn--secondary,
.pc-service-box-hero__btn--secondary:link,
.pc-service-box-hero__btn--secondary:visited {
  color: var(--pepti-hero-text) !important;
  border-color: #e5e7eb;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.pc-service-box-hero__btn--secondary:hover,
.pc-service-box-hero__btn--secondary:focus,
.pc-service-box-hero__btn--secondary:active {
  color: var(--pepti-hero-primary) !important;
  border-color: var(--pepti-hero-primary);
  background: #ffffff !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.pc-service-box-hero__disclaimer {
  max-width: 560px;
  margin: 0;
  color: var(--pepti-hero-text-muted);
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.82;
}

.pc-service-box-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.pc-service-box-hero__visual-glow {
  position: absolute;
  inset: 4%;
  z-index: 0;
  filter: blur(38px);
  background: radial-gradient(circle at center, var(--pepti-hero-glow) 0%, transparent 66%);
}

.pc-service-box-hero__product {
  position: relative;
  z-index: 1;
  display: none;
  width: min(100%, 620px);
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(124, 58, 237, 0.22));
  transition: transform 0.32s ease;
}

html:not([data-gender]) .pc-service-box-hero__product[data-show="neutral"],
html[data-gender=""] .pc-service-box-hero__product[data-show="neutral"],
html[data-gender="neutral"] .pc-service-box-hero__product[data-show="neutral"] {
  display: block;
}

html[data-gender="men"] .pc-service-box-hero__product[data-show="men"],
html[data-gender="women"] .pc-service-box-hero__product[data-show="women"] {
  display: block;
}

html[data-gender="men"] .pc-service-box-hero__product {
  filter: drop-shadow(0 24px 44px rgba(37, 99, 235, 0.22));
}

html[data-gender="women"] .pc-service-box-hero__product {
  filter: drop-shadow(0 24px 44px rgba(219, 39, 119, 0.22));
}

.pc-service-box-hero__visual:hover .pc-service-box-hero__product {
  transform: translateY(-5px);
}

.pc-service-box-hero__price-badge {
  position: absolute;
  top: 8%;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pepti-hero-primary) 0%, var(--pepti-hero-accent) 100%);
  box-shadow: 0 12px 30px var(--pepti-hero-shadow);
  transform: rotate(-8deg);
}

.pc-service-box-hero__price-from {
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.86;
}

.pc-service-box-hero__price-amount {
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.pc-service-box-hero__price-period {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.86;
}

.pc-service-box-hero__gender-text {
  display: none;
}

html:not([data-gender]) .pc-service-box-hero__gender-text[data-show="neutral"],
html[data-gender=""] .pc-service-box-hero__gender-text[data-show="neutral"],
html[data-gender="neutral"] .pc-service-box-hero__gender-text[data-show="neutral"],
html[data-gender="men"] .pc-service-box-hero__gender-text[data-show="men"],
html[data-gender="women"] .pc-service-box-hero__gender-text[data-show="women"] {
  display: inline;
}

@media (max-width: 1100px) {
  .pc-service-box-hero__container {
    padding: 88px 30px 68px;
  }

  .pc-service-box-hero__grid {
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .pc-service-box-hero__container {
    padding: 100px 26px 52px;
  }

  .pc-service-box-hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pc-service-box-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    text-align: center;
  }

  .pc-service-box-hero__benefits {
    width: min(100%, 620px);
    text-align: left;
  }

  .pc-service-box-hero__buttons {
    justify-content: center;
  }

  .pc-service-box-hero__disclaimer {
    max-width: 620px;
  }

  .pc-service-box-hero__visual {
    order: -1;
    min-height: 320px;
  }

  .pc-service-box-hero__product {
    width: min(100%, 430px);
    max-height: 350px;
  }

  .pc-service-box-hero__price-badge {
    right: calc(50% - 210px);
    width: 88px;
    height: 88px;
  }

  .pc-service-box-hero__price-amount {
    font-size: 19px;
  }
}

@media (max-width: 600px) {
  .pc-service-box-hero__container {
    padding: 108px 20px 42px;
  }

  .pc-service-box-hero__eyebrow {
    margin-bottom: 18px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .pc-service-box-hero__title {
    margin-bottom: 14px;
    font-size: clamp(28px, 7vw, 36px);
  }

  .pc-service-box-hero__subtitle {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .pc-service-box-hero__benefits {
    gap: 10px;
    margin-bottom: 24px;
  }

  .pc-service-box-hero__benefit {
    gap: 12px;
    font-size: 14.5px;
  }

  .pc-service-box-hero__check {
    width: 22px;
    height: 22px;
  }

  .pc-service-box-hero__check svg {
    width: 14px;
    height: 14px;
  }

  .pc-service-box-hero__buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 12px;
  }

  .pc-service-box-hero__btn,
  .pc-service-box-hero__btn:link,
  .pc-service-box-hero__btn:visited {
    width: 100%;
    min-width: 0;
    padding: 13px 22px;
    font-size: 14.5px;
  }

  .pc-service-box-hero__visual {
    min-height: 250px;
  }

  .pc-service-box-hero__product {
    max-height: 265px;
  }

  .pc-service-box-hero__price-badge {
    top: 2px;
    right: 4px;
    width: 74px;
    height: 74px;
  }

  .pc-service-box-hero__price-from,
  .pc-service-box-hero__price-period {
    font-size: 8px;
  }

  .pc-service-box-hero__price-amount {
    font-size: 16px;
  }

  .pc-service-box-hero__disclaimer {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-service-box-hero__eyebrow-dot {
    animation: none;
  }

  .pc-service-box-hero__btn,
  .pc-service-box-hero__product,
  .pc-service-box-hero__btn-arrow {
    transition: none;
  }
}

.home-hero-mobile.height-locked {
  min-height: var(--hero-locked-height) !important;
  height: var(--hero-locked-height) !important;
  max-height: var(--hero-locked-height) !important;
}

.home-hero-mobile *,
.home-hero-mobile *::before,
.home-hero-mobile *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.home-hero-mobile__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.home-hero-mobile__aurora {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse at 20% 20%, var(--pepti-hero-glow-1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, var(--pepti-hero-glow-2) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 60%, var(--pepti-hero-glow-3) 0%, transparent 40%);
  animation: heroAuroraMove 20s ease-in-out infinite;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes heroAuroraMove {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(5%, -5%) rotate(5deg) scale(1.05); }
  50% { transform: translate(-5%, 5%) rotate(-5deg) scale(1); }
  75% { transform: translate(3%, 3%) rotate(3deg) scale(1.02); }
}

.home-hero-mobile__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--pepti-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--pepti-border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}

.home-hero-mobile__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  animation: heroGlowFloat 8s ease-in-out infinite;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.home-hero-mobile__glow--1 {
  width: 400px; height: 400px;
  background: var(--pepti-hero-glow-1);
  top: -100px; left: -50px;
}

.home-hero-mobile__glow--2 {
  width: 350px; height: 350px;
  background: var(--pepti-hero-glow-2);
  bottom: -100px; right: -50px;
  animation-delay: -3s;
}

.home-hero-mobile__glow--3 {
  width: 300px; height: 300px;
  background: var(--pepti-hero-glow-3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -6s;
}

@keyframes heroGlowFloat {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.8; }
}

/* Intro Animation */
.home-hero-mobile__intro {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.home-hero-mobile__intro.complete {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

.home-hero-mobile__flash {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: none;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.home-hero-mobile__flash.stomp {
  opacity: 1;
  transform: scale(1);
  animation: heroFlashStomp 0.15s ease-out forwards;
}

.home-hero-mobile__flash.fade-out {
  animation: heroFlashFade 0.2s ease-out forwards;
}

@keyframes heroFlashStomp {
  0% { opacity: 0; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes heroFlashFade {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* Accordion Panels */
.home-hero-mobile__accordion {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.home-hero-mobile__accordion.reveal {
  opacity: 1;
  pointer-events: none;
}

.home-hero-mobile__panel {
  flex: 1 1 0%;
  min-width: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.home-hero-mobile__accordion.reveal .home-hero-mobile__panel {
  transform: scaleX(1);
}

.home-hero-mobile__accordion.reveal .home-hero-mobile__panel:nth-child(1) { transition-delay: 0s; }
.home-hero-mobile__accordion.reveal .home-hero-mobile__panel:nth-child(2) { transition-delay: 0.08s; }
.home-hero-mobile__accordion.reveal .home-hero-mobile__panel:nth-child(3) { transition-delay: 0.16s; }
.home-hero-mobile__accordion.reveal .home-hero-mobile__panel:nth-child(4) { transition-delay: 0.24s; }
.home-hero-mobile__accordion.reveal .home-hero-mobile__panel:nth-child(5) { transition-delay: 0.32s; }
.home-hero-mobile__accordion.reveal .home-hero-mobile__panel:nth-child(6) { transition-delay: 0.4s; }

.home-hero-mobile__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.1) 70%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.home-hero-mobile__panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 1;
  pointer-events: none;
}

.home-hero-mobile__panel:first-child::before {
  display: none;
}

/* Overlay Content */
.home-hero-mobile__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding: clamp(14px, 2vh, 20px);
  padding-bottom: max(env(safe-area-inset-bottom, 0px), clamp(14px, 2vh, 20px));
  opacity: 0;
  pointer-events: none;
}

.home-hero-mobile__overlay.reveal {
  opacity: 1;
  pointer-events: none;
}

.home-hero-mobile__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(86px, 10vh, 112px) 0 clamp(28px, 5vh, 48px);
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.home-hero-mobile__content::before {
  content: '';
  position: absolute;
  inset: 11% -8% auto;
  height: min(420px, 52vh);
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.18), transparent 30%),
    radial-gradient(circle at 50% 55%, var(--pepti-glow-medium), transparent 58%);
  filter: blur(28px);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.75s ease 0.35s, transform 0.75s ease 0.35s;
  pointer-events: none;
  z-index: -1;
}

.home-hero-mobile__overlay.reveal .home-hero-mobile__content::before {
  opacity: 0.9;
  transform: scale(1);
}

.home-hero-mobile__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 11px;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--pepti-border-strong);
  border-radius: 16px;
  margin-bottom: clamp(18px, 3vh, 26px);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s, border-color 0.25s ease;
  pointer-events: auto;
  box-shadow: 0 14px 36px rgba(0,0,0,0.22), 0 0 28px var(--pepti-glow-light);
}

.home-hero-mobile__overlay.reveal .home-hero-mobile__badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-hero-mobile__badge-icon {
  width: 28px; height: 28px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--pepti-gradient-primary);
  box-shadow: 0 0 18px var(--pepti-glow);
}

.home-hero-mobile__badge-icon svg {
  width: 15px; height: 15px;
  fill: none;
  stroke: currentColor;
}

.home-hero-mobile__badge span {
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-hero-mobile__title {
  font-size: clamp(2.5rem, 5.6vw, 4.9rem);
  font-weight: 850;
  line-height: 1.04;
  margin-bottom: clamp(16px, 2.5vh, 22px);
  color: white;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease 0.48s, transform 0.65s ease 0.48s;
  text-shadow: 0 12px 38px rgba(0,0,0,0.38);
}

.home-hero-mobile__overlay.reveal .home-hero-mobile__title {
  opacity: 1;
  transform: translateY(0);
}

.home-hero-mobile__title-line {
  display: block;
}

.home-hero-mobile__title-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0.04em 0 0.02em;
}

.home-hero-mobile__number {
  display: inline-block;
  font-size: clamp(3.8rem, 8.2vw, 7.1rem);
  font-weight: 900;
  line-height: 1.04;
  background: linear-gradient(135deg, var(--pepti-primary-light) 0%, #ffffff 48%, var(--pepti-primary) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px var(--pepti-glow-strong));
  animation: homeHeroGradientShift 4s ease-in-out infinite;
}

@keyframes homeHeroGradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.home-hero-mobile__subtitle {
  font-size: clamp(1rem, 1.65vw, 1.28rem);
  line-height: 1.56;
  color: rgba(255,255,255,0.86);
  margin-bottom: clamp(24px, 4vh, 32px);
  max-width: 700px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.62s, transform 0.6s ease 0.62s;
  text-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

.home-hero-mobile__overlay.reveal .home-hero-mobile__subtitle {
  opacity: 1;
  transform: translateY(0);
}

.home-hero-mobile__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.76s, transform 0.6s ease 0.76s;
}

.home-hero-mobile__overlay.reveal .home-hero-mobile__cta {
  opacity: 1;
  transform: translateY(0);
}

.home-hero-mobile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 154px;
  padding: 17px 32px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  pointer-events: auto;
  position: relative;
  overflow: hidden;
}

.home-hero-mobile__btn--primary {
  background: linear-gradient(135deg, var(--pepti-primary), var(--pepti-accent-light));
  color: white;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 12px 34px var(--pepti-hero-btn-shadow), inset 0 1px 0 rgba(255,255,255,0.22);
}

.home-hero-mobile__btn--primary:hover {
  background: linear-gradient(135deg, var(--pepti-primary-hover), var(--pepti-primary-light));
  transform: translateY(-3px);
  box-shadow: 0 18px 44px var(--pepti-hero-btn-shadow-hover), inset 0 1px 0 rgba(255,255,255,0.24);
}

.home-hero-mobile__btn--primary svg {
  width: 18px; height: 18px;
  transition: transform 0.3s ease;
}

.home-hero-mobile__btn--primary:hover svg {
  transform: translateX(4px);
}

.home-hero-mobile__btn--ghost {
  background: rgba(255,255,255,0.94);
  color: #111827;
  border: 1px solid rgba(255,255,255,0.64);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.home-hero-mobile__btn--ghost:hover {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.28), 0 0 28px var(--pepti-glow-light);
}

/* Stats Bar */
.home-hero-mobile__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  width: min(1120px, calc(100% - 44px));
  padding: clamp(16px, 2.1vh, 20px) 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 20px;
  margin: auto auto clamp(42px, 6vh, 58px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease 0.9s, transform 0.7s ease 0.9s;
  flex-wrap: wrap;
  pointer-events: auto;
  box-shadow: 0 22px 70px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.12);
}

.home-hero-mobile__overlay.reveal .home-hero-mobile__stats {
  opacity: 1;
  transform: translateY(0);
}

.home-hero-mobile__stat {
  text-align: center;
  padding: 0 8px;
  min-width: 124px;
}

.home-hero-mobile__stat-number {
  display: block;
  font-size: clamp(1.28rem, 2.5vw, 2rem);
  font-weight: 850;
  line-height: 1.16;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 10%, var(--pepti-primary-light) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-mobile__stat-label {
  display: block;
  font-size: clamp(0.68rem, 1.2vw, 0.82rem);
  line-height: 1.25;
  color: rgba(255,255,255,0.66);
  margin-top: 4px;
  font-weight: 600;
}

.home-hero-mobile__stat-divider {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.26), transparent);
}

.home-hero-mobile__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.5s ease 1s;
  pointer-events: none;
}

.home-hero-mobile__overlay.reveal .home-hero-mobile__scroll {
  opacity: 0.6;
}

.home-hero-mobile__scroll span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.home-hero-mobile__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: heroScrollPulse 2s ease-in-out infinite;
}

@keyframes heroScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

@media (max-width: 480px) {
  .home-hero-mobile__content {
    max-width: 100%;
    width: 100%;
    padding: 130px 14px 72px;
  }
  .home-hero-mobile__badge {
    margin-bottom: 22px;
    padding: 8px 12px 8px 9px;
    border-radius: 13px;
    max-width: calc(100vw - 32px);
    justify-content: flex-start;
  }
  .home-hero-mobile__badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    flex: 0 0 auto;
  }
  .home-hero-mobile__badge span {
    font-size: 0.66rem;
    line-height: 1.25;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .home-hero-mobile__title {
    width: 100%;
    max-width: calc(100vw - 34px);
    font-size: clamp(1.75rem, 7.4vw, 2.1rem);
    margin-bottom: 18px;
    line-height: 1.02;
    text-wrap: balance;
  }
  .home-hero-mobile__number {
    font-size: clamp(3rem, 13.2vw, 4.15rem);
  }
  .home-hero-mobile__subtitle {
    max-width: calc(100vw - 42px);
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 26px;
  }
  .home-hero-mobile__cta {
    gap: 10px;
  }
  .home-hero-mobile__btn {
    min-width: 0;
    padding: 13px 17px;
    font-size: 13px;
    border-radius: 12px;
  }
  .home-hero-mobile__stats {
    width: calc(100% - 28px);
    gap: 8px;
    padding: 14px 10px;
    border-radius: 16px;
  }
  .home-hero-mobile__stat {
    min-width: calc(50% - 12px);
    padding: 4px;
  }
  .home-hero-mobile__stat-divider {
    display: none;
  }
  .home-hero-mobile__scroll { display: none; }
}

@media (max-width: 380px) {
  .home-hero-mobile__content {
    padding-top: 116px;
  }
  .home-hero-mobile__badge span {
    font-size: 0.6rem;
  }
  .home-hero-mobile__title {
    font-size: 2.16rem;
  }
  .home-hero-mobile__number {
    font-size: 3.5rem;
  }
  .home-hero-mobile__stats {
    gap: 6px;
  }
}

@supports (-webkit-touch-callout: none) {
  .home-hero-mobile { -webkit-overflow-scrolling: touch; }
  .home-hero-mobile__bg,
  .home-hero-mobile__aurora,
  .home-hero-mobile__glow,
  .home-hero-mobile__flash,
  .home-hero-mobile__panel,
  .home-hero-mobile__accordion {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* =====================================================
   SECTION 2: INTRO WITH NURSE CSS
   ===================================================== */

.pc-intro-hero {
  padding: 80px 20px;
  background: var(--pepti-bg-light);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pc-intro-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pc-intro-hero__text { max-width: 540px; }

.pc-intro-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pepti-primary);
  margin-bottom: 16px;
}

.pc-intro-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--pepti-text-dark);
  margin-bottom: 20px;
}

.pc-intro-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pepti-text);
  margin-bottom: 32px;
}

.pc-intro-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pc-intro-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.pc-intro-hero__btn--primary {
  background: var(--pepti-gradient-primary);
  color: white;
  box-shadow: var(--pepti-shadow);
}

.pc-intro-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px var(--pepti-glow);
}

.pc-intro-hero__btn--primary svg {
  width: 18px; height: 18px;
  transition: transform 0.3s ease;
}

.pc-intro-hero__btn--primary:hover svg {
  transform: translateX(4px);
}

.pc-intro-hero__btn--secondary {
  background: white;
  color: var(--pepti-text-dark);
  border: 2px solid var(--pepti-border);
}

.pc-intro-hero__btn--secondary:hover {
  border-color: var(--pepti-primary);
  color: var(--pepti-primary);
}

.pc-intro-hero__image { position: relative; }
.pc-intro-hero__image-wrapper { position: relative; }

.pc-intro-hero__image-wrapper img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  display: block;
}

.pc-intro-hero__badge-card {
  position: absolute;
  bottom: 30px; left: -30px;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: introBadgeFloat 3s ease-in-out infinite;
}

@keyframes introBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.pc-intro-hero__badge-icon {
  width: 48px; height: 48px;
  background: var(--pepti-glow-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-intro-hero__badge-icon svg {
  width: 24px; height: 24px;
  color: var(--pepti-primary);
}

.pc-intro-hero__badge-text {
  display: flex;
  flex-direction: column;
}

.pc-intro-hero__badge-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--pepti-text-dark);
}

.pc-intro-hero__badge-sub {
  font-size: 12px;
  color: var(--pepti-text-muted);
}

@media (max-width: 900px) {
  .pc-intro-hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .pc-intro-hero__text { max-width: 100%; order: 2; }
  .pc-intro-hero__image { order: 1; }
  .pc-intro-hero__image-wrapper { display: flex; justify-content: center; }
  .pc-intro-hero__image-wrapper img { max-width: 350px; }
  .pc-intro-hero__buttons { justify-content: center; }
  .pc-intro-hero__badge-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
  @keyframes introBadgeFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
  }
}

@media (max-width: 480px) {
  .pc-intro-hero { padding: 60px 16px; }
  .pc-intro-hero__buttons { flex-direction: column; }
  .pc-intro-hero__btn { width: 100%; justify-content: center; }
  .pc-intro-hero__badge-card { padding: 12px 16px; gap: 10px; }
  .pc-intro-hero__badge-icon { width: 40px; height: 40px; }
  .pc-intro-hero__badge-icon svg { width: 20px; height: 20px; }
}

/* =====================================================
   SECTION 3: GOALS / SERVICES GRID CSS
   ===================================================== */

.pc-goals {
  padding: 80px 20px;
  background: var(--pepti-bg-gradient);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pc-goals__container { max-width: 1200px; margin: 0 auto; }

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

.pc-goals__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pepti-primary);
  margin-bottom: 12px;
}

.pc-goals__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--pepti-text-dark);
  margin-bottom: 16px;
}

.pc-goals__subtitle {
  font-size: 16px;
  color: var(--pepti-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pc-goals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pc-goals__card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.pc-goals__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pc-goals__card.is-touch-active {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.pc-goals__card.is-touch-active .pc-goals__icon {
  transform: scale(1.1);
  background: var(--pepti-primary);
  border-color: var(--pepti-primary);
  opacity: 1;
  box-shadow: 0 8px 20px var(--pepti-glow);
}

.pc-goals__card.is-touch-active .pc-goals__icon svg { stroke: white; }

/* Gender-specific card visibility */
.pc-goals__card[data-show="neutral"],
.pc-goals__card[data-show="men"],
.pc-goals__card[data-show="women"] {
  display: none;
}

html[data-gender="neutral"] .pc-goals__card[data-show="neutral"],
html:not([data-gender]) .pc-goals__card[data-show="neutral"],
html[data-gender="men"] .pc-goals__card[data-show="men"],
html[data-gender="women"] .pc-goals__card[data-show="women"] {
  display: block;
}

.pc-goals__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

/* Gender-specific video visibility */
.pc-goals__video[data-show="neutral"],
.pc-goals__video[data-show="men"],
.pc-goals__video[data-show="women"] {
  display: none;
}

html[data-gender="neutral"] .pc-goals__video[data-show="neutral"],
html:not([data-gender]) .pc-goals__video[data-show="neutral"],
html[data-gender="men"] .pc-goals__video[data-show="men"],
html[data-gender="women"] .pc-goals__video[data-show="women"] {
  display: block;
}

.pc-goals__video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.pc-goals__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.pc-goals__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: white;
}

.pc-goals__icon {
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.pc-goals__card:hover .pc-goals__icon {
  transform: scale(1.1);
  background: var(--pepti-primary);
  border-color: var(--pepti-primary);
  opacity: 1;
  box-shadow: 0 8px 20px var(--pepti-glow);
}

.pc-goals__icon svg {
  width: 24px; height: 24px;
  stroke: rgba(255, 255, 255, 0.8);
  transition: stroke 0.3s ease;
}

.pc-goals__card:hover .pc-goals__icon svg { stroke: white; }

.pc-goals__card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.pc-goals__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  line-height: 1.5;
}

.pc-goals__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pepti-accent-light);
  transition: all 0.3s ease;
}

.pc-goals__link svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.pc-goals__card:hover .pc-goals__link { color: white; }
.pc-goals__card:hover .pc-goals__link svg { transform: translateX(4px); }

.pc-goals__cta { text-align: center; }

.pc-goals__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--pepti-gradient-primary);
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--pepti-shadow);
}

.pc-goals__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px var(--pepti-glow);
}

.pc-goals__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-goals__btn-icon svg {
  width: 18px; height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.pc-goals__btn:hover .pc-goals__btn-icon svg { transform: translateX(4px); }

.pc-goals__btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.pc-goals__btn:hover .pc-goals__btn-shine { left: 100%; }

@media (max-width: 900px) {
  .pc-goals__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
  .pc-goals { padding: 60px 16px; }
  .pc-goals__header { margin-bottom: 32px; }
  .pc-goals__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pc-goals__card { border-radius: 16px; }
  .pc-goals__content { padding: 16px; }
  .pc-goals__icon { width: 40px; height: 40px; margin-bottom: 12px; opacity: 0.6; }
  .pc-goals__icon svg { width: 20px; height: 20px; }
  .pc-goals__card-title { font-size: 16px; margin-bottom: 4px; }
  .pc-goals__desc {
    font-size: 12px; margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .pc-goals__link { font-size: 12px; }
  .pc-goals__link svg { width: 14px; height: 14px; }
  .pc-goals__btn { padding: 14px 24px; font-size: 14px; }
}

@media (max-width: 380px) {
  .pc-goals__grid { gap: 10px; }
  .pc-goals__content { padding: 12px; }
  .pc-goals__icon { width: 36px; height: 36px; margin-bottom: 8px; }
  .pc-goals__card-title { font-size: 14px; }
  .pc-goals__desc { font-size: 11px; }
}

/* =====================================================
   SECTION 4: WHY CHOOSE US CSS
   ===================================================== */

.pc-why {
  padding: 80px 20px;
  background: white;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pc-why__container { max-width: 1100px; margin: 0 auto; }

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

.pc-why__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pepti-primary);
  margin-bottom: 12px;
}

.pc-why__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--pepti-text-dark);
  margin-bottom: 16px;
}

.pc-why__subtitle {
  font-size: 16px;
  color: var(--pepti-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pc-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pc-why__card {
  background: var(--pepti-bg-light);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--pepti-border);
}

.pc-why__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--pepti-primary);
}

.pc-why__card-icon {
  width: 64px; height: 64px;
  background: var(--pepti-glow-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.pc-why__card:hover .pc-why__card-icon { background: var(--pepti-primary); }

.pc-why__card-icon svg {
  width: 28px; height: 28px;
  color: var(--pepti-primary);
  transition: color 0.3s ease;
}

.pc-why__card:hover .pc-why__card-icon svg { color: white; }

.pc-why__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pepti-text-dark);
  margin-bottom: 12px;
}

.pc-why__card-desc {
  font-size: 14px;
  color: var(--pepti-text);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .pc-why__grid { grid-template-columns: 1fr; gap: 24px; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .pc-why { padding: 60px 16px; }
  .pc-why__card { padding: 24px; }
  .pc-why__card-icon { width: 56px; height: 56px; }
  .pc-why__card-icon svg { width: 24px; height: 24px; }
}

/* =====================================================
   SECTION 5: JOURNEY TIMELINE CSS
   ===================================================== */

.pc-journey {
  padding: 80px 20px;
  background: var(--pepti-bg-light);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pc-journey__container { max-width: 800px; margin: 0 auto; }

.pc-journey__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--pepti-text-dark);
  text-align: center;
  margin-bottom: 48px;
}

.pc-journey__timeline {
  position: relative;
  padding-left: 60px;
}

.pc-journey__timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: var(--pepti-gradient-primary);
  border-radius: 1px;
}

.pc-journey__step {
  position: relative;
  padding-bottom: 40px;
}

.pc-journey__step:last-child { padding-bottom: 0; }

.pc-journey__icon {
  position: absolute;
  left: -60px; top: 0;
  width: 48px; height: 48px;
  background: var(--pepti-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--pepti-shadow);
  z-index: 1;
}

.pc-journey__icon span {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.pc-journey__content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pepti-text-dark);
  margin-bottom: 8px;
}

.pc-journey__content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--pepti-text);
  margin: 0;
}

@media (max-width: 600px) {
  .pc-journey { padding: 60px 16px; }
  .pc-journey__timeline { padding-left: 50px; }
  .pc-journey__timeline::before { left: 18px; }
  .pc-journey__icon { left: -50px; width: 40px; height: 40px; }
  .pc-journey__icon span { font-size: 16px; }
  .pc-journey__step { padding-bottom: 32px; }
  .pc-journey__content h3 { font-size: 16px; }
  .pc-journey__content p { font-size: 14px; }
}

/* =====================================================
   SECTION 6: OTC PRODUCTS CSS
   ===================================================== */

.pepti-otc-products {
  --otc-primary: #7c3aed;
  --otc-primary-hover: #6d28d9;
  --otc-primary-light: rgba(124, 58, 237, 0.1);
  --otc-primary-glow: rgba(124, 58, 237, 0.3);
  --otc-bg: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
  --otc-text-light: #ffffff;
  --otc-text-muted: rgba(255, 255, 255, 0.7);
  --otc-accent: #a78bfa;
  --otc-border: rgba(167, 139, 250, 0.2);
}

html[data-gender="men"] .pepti-otc-products {
  --otc-primary: #2563eb;
  --otc-primary-hover: #1d4ed8;
  --otc-primary-light: rgba(54, 157, 211, 0.15);
  --otc-primary-glow: rgba(54, 157, 211, 0.3);
  --otc-bg: linear-gradient(135deg, #0a1628 0%, #142540 100%);
  --otc-accent: #60a5fa;
  --otc-border: rgba(91, 184, 232, 0.2);
}

html[data-gender="women"] .pepti-otc-products {
  --otc-primary: #ec4899;
  --otc-primary-hover: #db2777;
  --otc-primary-light: rgba(207, 45, 172, 0.15);
  --otc-primary-glow: rgba(207, 45, 172, 0.3);
  --otc-bg: linear-gradient(135deg, #280a22 0%, #3d1a35 100%);
  --otc-accent: #f472b6;
  --otc-border: rgba(232, 125, 199, 0.2);
}

.pepti-otc-products {
  padding: 80px 20px;
  background: var(--otc-bg);
  position: relative;
  overflow: hidden;
}

.pepti-otc-products__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pepti-otc-products__label {
  display: inline-block;
  padding: 8px 20px;
  background: var(--otc-primary-light);
  color: var(--otc-accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid var(--otc-border);
}

.pepti-otc-products__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--otc-text-light);
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.pepti-otc-products__subtitle {
  font-size: 18px;
  color: var(--otc-text-muted);
  margin: 0 0 30px 0;
  line-height: 1.6;
}

.pepti-otc-products__categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.pepti-otc-products__category {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--otc-border);
  border-radius: 10px;
  color: var(--otc-text-light);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pepti-otc-products__category:hover,
.pepti-otc-products__category:focus-visible,
.pepti-otc-products__category--active {
  background: var(--otc-primary-light);
  border-color: var(--otc-primary);
}

.pepti-otc-products__category:focus-visible {
  outline: 2px solid var(--otc-accent);
  outline-offset: 2px;
}

.pepti-otc-products__category-icon {
  color: var(--otc-accent);
  font-size: 12px;
}

.pepti-otc-products__features {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.pepti-otc-products__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--otc-text-muted);
  font-size: 14px;
}

.pepti-otc-products__feature svg {
  width: 18px; height: 18px;
  color: var(--otc-accent);
}

.pepti-otc-products__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: var(--otc-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--otc-primary-glow);
}

.pepti-otc-products__btn svg {
  width: 20px; height: 20px;
  transition: transform 0.3s ease;
}

.pepti-otc-products__btn:hover {
  background: var(--otc-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--otc-primary-glow);
  color: #ffffff;
  text-decoration: none;
}

.pepti-otc-products__btn:hover svg { transform: translateX(4px); }

.pepti-otc-products__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pepti-otc-products__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.pepti-otc-products__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.28));
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pepti-otc-products__image-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed var(--otc-border);
  border-radius: 20px;
  color: var(--otc-text-muted);
}

.pepti-otc-products__image-placeholder svg { width: 60px; height: 60px; opacity: 0.5; }

.pepti-otc-products__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-weight: 600;
  color: #1e1b4b;
  line-height: 1.3;
  animation: otcFloat 3s ease-in-out infinite;
}

.pepti-otc-products__badge--1 { top: 10%; right: -10px; animation-delay: 0s; }
.pepti-otc-products__badge--2 { bottom: 15%; left: -10px; animation-delay: 1.5s; }

@keyframes otcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.pepti-otc-products__badge-icon { font-size: 20px; }

.pepti-otc-products::before {
  content: '';
  position: absolute;
  top: 50%; right: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--otc-primary-glow) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .pepti-otc-products__container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .pepti-otc-products__visual { order: -1; }
  .pepti-otc-products__category { justify-content: center; }
  .pepti-otc-products__features { justify-content: center; }
  .pepti-otc-products__badge--1 { top: 5%; right: 5%; }
  .pepti-otc-products__badge--2 { bottom: 5%; left: 5%; }
  .pepti-otc-products::before { right: 50%; transform: translate(50%, -50%); width: 300px; height: 300px; }
}

@media (max-width: 600px) {
  .pepti-otc-products__categories { grid-template-columns: 1fr; }
}

/* =====================================================
   SECTION 7: WELLNESS TEAM CSS
   ===================================================== */

.pepti-wellness-team {
  --wt-primary: #7c3aed;
  --wt-primary-hover: #6d28d9;
  --wt-primary-light: rgba(124, 58, 237, 0.1);
  --wt-bg: #f8f9fc;
  --wt-card-bg: #ffffff;
  --wt-text-dark: #1e1b4b;
  --wt-text: #4c4866;
  --wt-text-muted: #6b5b7e;
  --wt-border: rgba(124, 58, 237, 0.15);
  --wt-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
  --wt-shadow-hover: 0 8px 30px rgba(124, 58, 237, 0.15);
}

html[data-gender="men"] .pepti-wellness-team {
  --wt-primary: #2563eb;
  --wt-primary-hover: #1d4ed8;
  --wt-primary-light: rgba(54, 157, 211, 0.1);
  --wt-text-dark: #2B4A6F;
  --wt-text: #47627B;
  --wt-text-muted: #5a7289;
  --wt-border: rgba(54, 157, 211, 0.15);
  --wt-shadow: 0 4px 20px rgba(54, 157, 211, 0.08);
  --wt-shadow-hover: 0 8px 30px rgba(54, 157, 211, 0.15);
}

html[data-gender="women"] .pepti-wellness-team {
  --wt-primary: #ec4899;
  --wt-primary-hover: #db2777;
  --wt-primary-light: rgba(207, 45, 172, 0.1);
  --wt-text-dark: #4a2b6f;
  --wt-text: #714b7e;
  --wt-text-muted: #8a6b9a;
  --wt-border: rgba(207, 45, 172, 0.15);
  --wt-shadow: 0 4px 20px rgba(207, 45, 172, 0.08);
  --wt-shadow-hover: 0 8px 30px rgba(207, 45, 172, 0.15);
}

.pepti-wellness-team {
  padding: 80px 20px;
  background: var(--wt-bg);
}

.pepti-wellness-team__container { max-width: 1200px; margin: 0 auto; }

.pepti-wellness-team__header { text-align: center; margin-bottom: 50px; }

.pepti-wellness-team__label {
  display: inline-block;
  padding: 8px 20px;
  background: var(--wt-primary-light);
  color: var(--wt-primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.pepti-wellness-team__title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  color: var(--wt-text-dark);
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.pepti-wellness-team__subtitle {
  font-size: 18px;
  color: var(--wt-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pepti-wellness-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.pepti-wellness-team__card {
  background: var(--wt-card-bg);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid var(--wt-border);
  box-shadow: var(--wt-shadow);
  transition: all 0.3s ease;
}

.pepti-wellness-team__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--wt-shadow-hover);
  border-color: var(--wt-primary);
}

.pepti-wellness-team__icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: var(--wt-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pepti-wellness-team__icon svg {
  width: 32px; height: 32px;
  color: var(--wt-primary);
  transition: all 0.3s ease;
}

.pepti-wellness-team__card:hover .pepti-wellness-team__icon { background: var(--wt-primary); }
.pepti-wellness-team__card:hover .pepti-wellness-team__icon svg { color: #ffffff; }

.pepti-wellness-team__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--wt-text-dark);
  margin: 0 0 12px 0;
}

.pepti-wellness-team__card-text {
  font-size: 14px;
  color: var(--wt-text-muted);
  line-height: 1.6;
  margin: 0;
}

.pepti-wellness-team__cta { text-align: center; }

.pepti-wellness-team__btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--wt-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.pepti-wellness-team__btn:hover {
  background: var(--wt-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .pepti-wellness-team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pepti-wellness-team__grid { grid-template-columns: 1fr; }
  .pepti-wellness-team { padding: 60px 16px; }
}

/* =====================================================
   SECTION 8: FOOTER CTA HERO CSS
   ===================================================== */

.pc-footer-cta {
  position: relative;
  padding: 100px 20px;
  background: var(--pepti-bg-dark-alt);
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pc-footer-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.pc-footer-cta__aurora {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse at 20% 20%, var(--pepti-hero-glow-1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, var(--pepti-hero-glow-2) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 60%, var(--pepti-hero-glow-3) 0%, transparent 40%);
  animation: footerAuroraMove 20s ease-in-out infinite;
}

@keyframes footerAuroraMove {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(5%, -5%) rotate(5deg) scale(1.05); }
  50% { transform: translate(-5%, 5%) rotate(-5deg) scale(1); }
  75% { transform: translate(3%, 3%) rotate(3deg) scale(1.02); }
}

.pc-footer-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--pepti-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--pepti-border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.pc-footer-cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: footerGlowFloat 8s ease-in-out infinite;
}

.pc-footer-cta__glow--1 { width: 400px; height: 400px; background: var(--pepti-hero-glow-1); top: -100px; left: 10%; }
.pc-footer-cta__glow--2 { width: 350px; height: 350px; background: var(--pepti-hero-glow-2); bottom: -100px; right: 10%; animation-delay: -3s; }
.pc-footer-cta__glow--3 { width: 300px; height: 300px; background: var(--pepti-hero-glow-3); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: -6s; }

@keyframes footerGlowFloat {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.7; }
}

.pc-footer-cta__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.pc-footer-cta__particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--pepti-accent);
  border-radius: 50%;
  opacity: 0;
  animation: footerParticleFloat 10s infinite;
}

.pc-footer-cta__particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.pc-footer-cta__particles span:nth-child(2) { left: 20%; animation-delay: 1s; }
.pc-footer-cta__particles span:nth-child(3) { left: 30%; animation-delay: 2s; }
.pc-footer-cta__particles span:nth-child(4) { left: 40%; animation-delay: 3s; }
.pc-footer-cta__particles span:nth-child(5) { left: 50%; animation-delay: 4s; }
.pc-footer-cta__particles span:nth-child(6) { left: 60%; animation-delay: 5s; }
.pc-footer-cta__particles span:nth-child(7) { left: 70%; animation-delay: 6s; }
.pc-footer-cta__particles span:nth-child(8) { left: 80%; animation-delay: 7s; }
.pc-footer-cta__particles span:nth-child(9) { left: 85%; animation-delay: 8s; }
.pc-footer-cta__particles span:nth-child(10) { left: 95%; animation-delay: 9s; }

@keyframes footerParticleFloat {
  0% { bottom: -10px; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { bottom: 100%; opacity: 0; }
}

.pc-footer-cta__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pc-footer-cta__number-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(200px, 40vw, 400px);
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  z-index: -1;
  line-height: 1;
}

.pc-footer-cta__content { margin-bottom: 40px; }

.pc-footer-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  margin-bottom: 32px;
}

.pc-footer-cta__badge-icon { width: 22px; height: 22px; color: var(--pepti-accent); }
.pc-footer-cta__badge-icon svg { width: 100%; height: 100%; fill: var(--pepti-accent); }

.pc-footer-cta__badge span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

.pc-footer-cta__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
}

.pc-footer-cta__title-line { display: block; }

.pc-footer-cta__title-highlight {
  display: block;
  background: var(--pepti-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pc-footer-cta__subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pc-footer-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.pc-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.pc-footer-cta__btn--primary {
  background: var(--pepti-gradient-primary);
  color: white;
  box-shadow: var(--pepti-shadow);
}

.pc-footer-cta__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--pepti-glow);
}

.pc-footer-cta__btn--primary svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.pc-footer-cta__btn--primary:hover svg { transform: translateX(4px); }

.pc-footer-cta__btn--ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pc-footer-cta__btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.pc-footer-cta__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.pc-footer-cta__stat { text-align: center; }

.pc-footer-cta__stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.pc-footer-cta__stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.pc-footer-cta__stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
}

.pc-footer-cta__disclaimer {
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .pc-footer-cta { padding: 80px 16px; }
  .pc-footer-cta__badge { padding: 8px 16px; }
  .pc-footer-cta__badge span { font-size: 11px; }
  .pc-footer-cta__btn { padding: 14px 24px; font-size: 14px; }
  .pc-footer-cta__stats { flex-direction: column; gap: 16px; padding: 20px; }
  .pc-footer-cta__stat-divider { width: 60px; height: 1px; }
}


/* =====================================================
   SERVICES PAGE - SECTION 1: HERO + TRUST BADGES
   ===================================================== */

.pc-services-hero {
  position: relative;
  z-index: 1;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--pepti-bg-dark);
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ===== DESKTOP ACCORDION ===== */
.pc-services-hero__accordion {
  display: flex;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  min-height: 600px;
  max-height: 1000px;
}

.pc-services-hero__accordion.height-locked {
  height: var(--services-hero-locked-height) !important;
  min-height: var(--services-hero-locked-height) !important;
  max-height: var(--services-hero-locked-height) !important;
}

.pc-services-hero__panel {
  position: relative;
  flex: 1;
  min-width: 90px;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.pc-services-hero__panel:not(.pc-services-hero__panel--static):hover {
  flex: 3.5;
}

.pc-services-hero__panel--static {
  flex: 2.5;
  min-width: 420px;
  cursor: default;
}

.pc-services-hero__panel-bg {
  position: absolute;
  inset: 0;
  background-image: var(--panel-image);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pc-services-hero__panel:hover .pc-services-hero__panel-bg {
  transform: scale(1.05);
}

.pc-services-hero__panel-overlay--static {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.pc-services-hero__static-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  z-index: 2;
}

.pc-services-hero__title {
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.pc-services-hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 340px;
}

.pc-services-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 260px;
}

/* ===== UNIFIED BUTTONS ===== */
.pc-services-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.pc-services-hero__btn--primary,
.pc-services-hero__btn--primary:link,
.pc-services-hero__btn--primary:visited {
  background: var(--pepti-hero-btn-primary) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px var(--pepti-hero-btn-shadow);
}

.pc-services-hero__btn--primary:hover,
.pc-services-hero__btn--primary:focus,
.pc-services-hero__btn--primary:active {
  background: var(--pepti-hero-btn-primary-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--pepti-hero-btn-shadow-hover);
  text-decoration: none !important;
}

.pc-services-hero__btn--secondary,
.pc-services-hero__btn--secondary:link,
.pc-services-hero__btn--secondary:visited {
  background: var(--pepti-hero-btn-secondary);
  color: var(--pepti-hero-btn-secondary-text)!important;
  box-shadow: 0 4px 15px var(--pepti-hero-btn-secondary-shadow);
}

.pc-services-hero__btn--secondary:hover,
.pc-services-hero__btn--secondary:focus,
.pc-services-hero__btn--secondary:active {
  background: var(--pepti-hero-btn-secondary-hover) !important;
  color: var(--pepti-hero-btn-secondary-text) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--pepti-hero-btn-secondary-shadow-hover);
  text-decoration: none !important;
}

.pc-services-hero__btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Panel Labels & Hover Content */
.pc-services-hero__panel-label {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.pc-services-hero__panel:hover .pc-services-hero__panel-label {
  opacity: 0;
}

.pc-services-hero__panel-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 2;
}

.pc-services-hero__panel:hover .pc-services-hero__panel-hover {
  opacity: 1;
  transform: translateY(0);
}

.pc-services-hero__panel-title {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pc-services-hero__panel-desc {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 16px;
}

.pc-services-hero__panel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pepti-accent);
}

.pc-services-hero__panel-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ===== MOBILE ===== */
.pc-services-hero__mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-services-hero__accordion { display: none; }
  .pc-services-hero__mobile {
    display: block;
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
  }

  .pc-services-hero__mobile.height-locked {
    min-height: var(--services-hero-locked-height) !important;
    height: var(--services-hero-locked-height) !important;
    max-height: var(--services-hero-locked-height) !important;
  }

  .pc-services-hero__mobile-panels {
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100%;
  }

  .pc-services-hero__mobile-panel {
    flex: 1;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .pc-services-hero__mobile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.15) 65%, rgba(0,0,0,0.45) 100%);
    padding: 60px 20px;
  }

  .pc-services-hero__mobile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 320px;
    width: 100%;
  }

  .pc-services-hero__mobile-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }

  .pc-services-hero__mobile-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0 0 28px 0;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
  }

  .pc-services-hero__mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .pc-services-hero__mobile-buttons .pc-services-hero__btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .pc-services-hero__mobile-overlay {
    padding: 100px 16px 50px;
  }
  .pc-services-hero__mobile-content {
    max-width: 290px;
  }
  .pc-services-hero__mobile-title {
    font-size: 40px;
  }
  .pc-services-hero__mobile-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 380px) {
  .pc-services-hero__mobile-title {
    font-size: 34px;
  }
  .pc-services-hero__mobile-subtitle {
    font-size: 13px;
  }
  .pc-services-hero__mobile-buttons .pc-services-hero__btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* ===== iOS SAFARI SPECIFIC FIXES ===== */
@supports (-webkit-touch-callout: none) {
  .pc-services-hero {
    -webkit-overflow-scrolling: touch;
  }

  .pc-services-hero__panel-bg,
  .pc-services-hero__mobile-panel {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* =====================================================
   SERVICES PAGE - TRUST BADGES
   ===================================================== */
.pc-trust {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 60px 0;
  background: var(--pepti-bg-light);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pc-trust a {
  text-decoration: none;
  color: inherit;
}

.pc-trust__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.pc-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.pc-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pepti-text);
  font-size: 14px;
  font-weight: 500;
}

.pc-trust__item svg {
  width: 24px;
  height: 24px;
  stroke: var(--pepti-primary);
  stroke-width: 2;
  fill: none;
}

@media (max-width: 900px) {
  .pc-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
    justify-items: center;
  }
}

@media (max-width: 480px) {
  .pc-trust__grid {
    gap: 16px 20px;
  }
  .pc-trust__item {
    font-size: 11px;
    gap: 6px;
  }
  .pc-trust__item svg {
    width: 18px;
    height: 18px;
  }
}

/* =====================================================
   SERVICES PAGE - SECTION 2: GOALS
   ===================================================== */

.pc-svc-goals {
  --pepti-accent: #7c3aed;
  --pepti-accent-light: #a78bfa;
  --pepti-bg-white: #ffffff;
  --pepti-text-dark: #1a1a2e;
  --pepti-text-muted: #6b7280;
  --pepti-gradient: linear-gradient(135deg, #7c3aed, #4f46e5);
  --pepti-shadow: 0 4px 20px rgba(0,0,0,0.08);
  --pepti-shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
  --pepti-glow: rgba(124, 58, 237, 0.4);

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #374151;
  line-height: 1.6;
  padding: 100px 20px;
  background: var(--pepti-bg-white);
}

html[data-gender="men"] .pc-svc-goals {
  --pepti-accent: #2563eb;
  --pepti-accent-light: #60a5fa;
  --pepti-gradient: linear-gradient(135deg, #2563eb, #2563eb);
  --pepti-glow: rgba(54, 157, 211, 0.4);
}

html[data-gender="women"] .pc-svc-goals {
  --pepti-accent: #ec4899;
  --pepti-accent-light: #ec4899;
  --pepti-gradient: linear-gradient(135deg, #ec4899, #ec4899);
  --pepti-glow: rgba(207, 45, 172, 0.4);
}

/* Gender content visibility */
.pc-svc-goals [data-show] { display: none; }
html:not([data-gender]) .pc-svc-goals [data-show="neutral"],
html[data-gender=""] .pc-svc-goals [data-show="neutral"],
html[data-gender="neutral"] .pc-svc-goals [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-svc-goals [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-svc-goals [data-show="women"] { display: inline; }

/* Video visibility */
.pc-svc-goals video[data-show] { display: none; }
html:not([data-gender]) .pc-svc-goals video[data-show="neutral"],
html[data-gender=""] .pc-svc-goals video[data-show="neutral"],
html[data-gender="neutral"] .pc-svc-goals video[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-svc-goals video[data-show="men"] { display: block; }
html[data-gender="women"] .pc-svc-goals video[data-show="women"] { display: block; }

.pc-svc-goals a { text-decoration: none; color: inherit; }
.pc-svc-goals img, .pc-svc-goals video { max-width: 100%; display: block; }

.pc-svc-goals__container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.pc-svc-goals__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.pc-svc-goals__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pepti-accent);
  margin-bottom: 14px;
}

.pc-svc-goals__title {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--pepti-text-dark);
}

.pc-svc-goals__subtitle {
  font-size: 17px;
  color: var(--pepti-text-muted);
  line-height: 1.7;
}

/* Grid - 3 columns desktop */
.pc-svc-goals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.pc-svc-goals__card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--pepti-shadow);
  cursor: pointer;
  transition: all 0.4s ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.pc-svc-goals__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pepti-shadow-hover);
}

/* Touch active state for mobile */
.pc-svc-goals__card.is-touch-active {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.pc-svc-goals__card.is-touch-active .pc-svc-goals__icon {
  opacity: 1;
  transform: translateY(0) scale(1.1);
  background: var(--pepti-accent);
  box-shadow: 0 8px 20px var(--pepti-glow);
}

.pc-svc-goals__card.is-touch-active .pc-svc-goals__link {
  opacity: 1;
  transform: translateY(0);
}

/* Media */
.pc-svc-goals__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.pc-svc-goals__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pc-svc-goals__card:hover .pc-svc-goals__video {
  transform: scale(1.05);
}

.pc-svc-goals__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

/* Content */
.pc-svc-goals__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: white;
}

/* Icon */
.pc-svc-goals__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.4s ease;
  opacity: 0.7;
}

.pc-svc-goals__card:hover .pc-svc-goals__icon {
  transform: scale(1.1);
  background: var(--pepti-accent);
  border-color: var(--pepti-accent);
  opacity: 1;
  box-shadow: 0 8px 20px var(--pepti-glow);
}

.pc-svc-goals__icon svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}

.pc-svc-goals__card:hover .pc-svc-goals__icon svg {
  stroke: white;
}

.pc-svc-goals__card-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.pc-svc-goals__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 12px;
}

.pc-svc-goals__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pepti-accent-light);
  transition: all 0.3s ease;
}

.pc-svc-goals__card:hover .pc-svc-goals__link {
  color: white;
}

.pc-svc-goals__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.pc-svc-goals__card:hover .pc-svc-goals__link svg {
  transform: translateX(4px);
}

/* Tablet - 2 columns */
@media (max-width: 1024px) {
  .pc-svc-goals__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile - Still 2 columns but smaller */
@media (max-width: 600px) {
  .pc-svc-goals {
    padding: 60px 16px;
  }

  .pc-svc-goals__header {
    margin-bottom: 32px;
  }

  .pc-svc-goals__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pc-svc-goals__card {
    border-radius: 16px;
  }

  .pc-svc-goals__content {
    padding: 16px;
  }

  .pc-svc-goals__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    opacity: 0.6;
  }

  .pc-svc-goals__icon svg {
    width: 20px;
    height: 20px;
  }

  .pc-svc-goals__card-title {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .pc-svc-goals__desc {
    font-size: 12px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pc-svc-goals__link {
    font-size: 12px;
  }

  .pc-svc-goals__link svg {
    width: 14px;
    height: 14px;
  }
}

/* Very small mobile */
@media (max-width: 380px) {
  .pc-svc-goals__grid {
    gap: 10px;
  }

  .pc-svc-goals__content {
    padding: 12px;
  }

  .pc-svc-goals__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .pc-svc-goals__card-title {
    font-size: 14px;
  }

  .pc-svc-goals__desc {
    font-size: 11px;
  }
}

/* =====================================================
   SERVICES PAGE - SECTION 3: HOW IT WORKS
   ===================================================== */

.pc-how {
  --pepti-accent: #7c3aed;
  --pepti-gradient: linear-gradient(135deg, #7c3aed, #4f46e5);
  --pepti-border-hover: rgba(124, 58, 237, 0.15);

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #374151;
  line-height: 1.6;
  padding: 100px 0;
  background: #ffffff;
}

html[data-gender="men"] .pc-how {
  --pepti-accent: #2563eb;
  --pepti-gradient: linear-gradient(135deg, #2563eb, #2563eb);
  --pepti-border-hover: rgba(54, 157, 211, 0.15);
}

html[data-gender="women"] .pc-how {
  --pepti-accent: #ec4899;
  --pepti-gradient: linear-gradient(135deg, #ec4899, #f9a8d4);
  --pepti-border-hover: rgba(207, 45, 172, 0.15);
}

.pc-how__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.pc-how__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pepti-accent);
  margin-bottom: 14px;
}

.pc-how__title {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #1a1a2e;
}

.pc-how__subtitle {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.7;
}

.pc-how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pc-how__card {
  text-align: center;
  padding: 32px 20px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.pc-how__card:hover {
  border-color: var(--pepti-border-hover);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.pc-how__number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pepti-gradient);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.pc-how__card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.pc-how__card-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .pc-how__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pc-how { padding: 70px 0; }
  .pc-how__header { margin-bottom: 40px; }
}

@media (max-width: 640px) {
  .pc-how__grid { gap: 12px; }
  .pc-how__card { padding: 20px 14px; border-radius: 16px; }
  .pc-how__number { width: 44px; height: 44px; font-size: 18px; margin-bottom: 14px; }
  .pc-how__card-title { font-size: 14px; margin-bottom: 6px; }
  .pc-how__card-desc { font-size: 11px; }
}

/* =====================================================
   SERVICES PAGE - SECTION 4: WHY CHOOSE US
   ===================================================== */

.pc-why {
  --pepti-accent: #7c3aed;
  --pepti-accent-bg: rgba(124, 58, 237, 0.08);
  --pepti-gradient: linear-gradient(135deg, #7c3aed, #4f46e5);
  --pepti-bg-light: #f8f9fc;
  --pepti-text-dark: #1a1a2e;
  --pepti-text-muted: #6b7280;
  --pepti-border-hover: rgba(124, 58, 237, 0.2);
  --pepti-shadow-hover: 0 10px 25px -3px rgba(124, 58, 237, 0.15);

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #374151;
  line-height: 1.6;
  padding: 100px 0;
  background: var(--pepti-bg-light);
}

html[data-gender="men"] .pc-why {
  --pepti-accent: #2563eb;
  --pepti-accent-bg: rgba(54, 157, 211, 0.08);
  --pepti-gradient: linear-gradient(135deg, #2563eb, #2563eb);
  --pepti-bg-light: #eff6ff;
  --pepti-text-dark: #2B4A6F;
  --pepti-text-muted: #47627B;
  --pepti-border-hover: rgba(54, 157, 211, 0.3);
  --pepti-shadow-hover: 0 10px 25px -3px rgba(54, 157, 211, 0.15);
}

html[data-gender="women"] .pc-why {
  --pepti-accent: #ec4899;
  --pepti-accent-bg: rgba(207, 45, 172, 0.08);
  --pepti-gradient: linear-gradient(135deg, #ec4899, #ec4899);
  --pepti-bg-light: #fdf2f8;
  --pepti-text-dark: #4a2b6f;
  --pepti-text-muted: #714b7e;
  --pepti-border-hover: rgba(207, 45, 172, 0.3);
  --pepti-shadow-hover: 0 10px 25px -3px rgba(207, 45, 172, 0.15);
}

/* Gender content visibility */
.pc-why [data-show] { display: none; }
html:not([data-gender]) .pc-why [data-show="neutral"],
html[data-gender=""] .pc-why [data-show="neutral"],
html[data-gender="neutral"] .pc-why [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-why [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-why [data-show="women"] { display: inline; }

.pc-why__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.pc-why__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pepti-accent);
  margin-bottom: 14px;
}

.pc-why__title {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--pepti-text-dark);
}

.pc-why__subtitle {
  font-size: 17px;
  color: var(--pepti-text-muted);
  line-height: 1.7;
}

.pc-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pc-why__card {
  padding: 36px 32px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.pc-why__card:hover {
  border-color: var(--pepti-border-hover);
  box-shadow: var(--pepti-shadow-hover);
  transform: translateY(-4px);
}

.pc-why__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  padding: 16px;
  background: var(--pepti-accent-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pc-why__card:hover .pc-why__icon {
  background: var(--pepti-gradient);
}

.pc-why__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--pepti-accent);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s ease;
}

.pc-why__card:hover .pc-why__icon svg {
  stroke: white;
}

.pc-why__card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--pepti-text-dark);
  margin-bottom: 12px;
}

.pc-why__card-desc {
  font-size: 15px;
  color: var(--pepti-text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pc-why__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pc-why__card:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .pc-why { padding: 70px 0; }
  .pc-why__header { margin-bottom: 40px; }
}

@media (max-width: 640px) {
  .pc-why { padding: 60px 16px; }
  .pc-why__grid { grid-template-columns: 1fr; gap: 16px; }
  .pc-why__card { padding: 24px 20px; border-radius: 16px; }
  .pc-why__card:last-child { grid-column: span 1; }
  .pc-why__icon { width: 52px; height: 52px; padding: 12px; margin-bottom: 16px; }
  .pc-why__card-title { font-size: 17px; margin-bottom: 10px; }
  .pc-why__card-desc { font-size: 14px; }
}

/* =====================================================
   SERVICES PAGE - SECTION 5: CTA
   ===================================================== */

.pc-cta {
  --pepti-bg: #5b21b6;
  --pepti-text-secondary: #c4b5fd;
  --pepti-btn-hover: #a78bfa;
  --pepti-btn-text: #5b21b6;

  padding: 100px 40px;
  background: var(--pepti-bg);
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-cta {
  --pepti-bg: linear-gradient(135deg, #2B4A6F, #47627B);
  --pepti-text-secondary: #dbeafe;
  --pepti-btn-hover: #60a5fa;
  --pepti-btn-text: #2B4A6F;
  background: var(--pepti-bg);
}

html[data-gender="women"] .pc-cta {
  --pepti-bg: #4a2b6f;
  --pepti-text-secondary: #fce7f3;
  --pepti-btn-hover: #f9a8d4;
  --pepti-btn-text: #4a2b6f;
}

/* Gender content visibility */
.pc-cta [data-show] { display: none; }
html:not([data-gender]) .pc-cta [data-show="neutral"],
html[data-gender=""] .pc-cta [data-show="neutral"],
html[data-gender="neutral"] .pc-cta [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-cta [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-cta [data-show="women"] { display: inline; }

.pc-cta__container {
  max-width: 800px;
  margin: 0 auto;
}

.pc-cta__content {
  margin-bottom: 45px;
}

.pc-cta__title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pc-cta__desc {
  font-size: 20px;
  color: var(--pepti-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.pc-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pc-cta__btn {
  padding: 18px 44px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.pc-cta__btn--primary,
.pc-cta__btn--primary:link,
.pc-cta__btn--primary:visited {
  background: #ffffff !important;
  color: var(--pepti-btn-text) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border: none !important;
}

.pc-cta__btn--primary:hover,
.pc-cta__btn--primary:focus,
.pc-cta__btn--primary:active {
  background: var(--pepti-btn-hover) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  text-decoration: none !important;
}

html[data-gender="women"] .pc-cta__btn--primary:hover,
html[data-gender="women"] .pc-cta__btn--primary:focus,
html[data-gender="women"] .pc-cta__btn--primary:active {
  color: var(--pepti-btn-text) !important;
}

.pc-cta__btn--secondary,
.pc-cta__btn--secondary:link,
.pc-cta__btn--secondary:visited {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

.pc-cta__btn--secondary:hover,
.pc-cta__btn--secondary:focus,
.pc-cta__btn--secondary:active {
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  text-decoration: none !important;
}

.pc-cta__disclaimer {
  margin-top: 30px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .pc-cta { padding: 80px 30px; }
  .pc-cta__title { font-size: 36px; }
  .pc-cta__desc { font-size: 18px; }
  .pc-cta__btn { padding: 16px 40px; font-size: 17px; }
  .pc-cta__disclaimer { font-size: 12px; }
}

@media (max-width: 768px) {
  .pc-cta { padding: 60px 20px; }
  .pc-cta__content { margin-bottom: 35px; }
  .pc-cta__title { font-size: 28px; margin-bottom: 16px; }
  .pc-cta__desc { font-size: 16px; }
  .pc-cta__buttons { flex-direction: column; gap: 16px; align-items: center; }
  .pc-cta__btn { width: 100%; max-width: 320px; padding: 16px 36px; font-size: 16px; }
  .pc-cta__disclaimer { margin-top: 25px; font-size: 12px; padding: 0 10px; }
}

@media (max-width: 480px) {
  .pc-cta { padding: 50px 16px; }
  .pc-cta__title { font-size: 24px; }
  .pc-cta__desc { font-size: 15px; }
  .pc-cta__btn { padding: 14px 32px; font-size: 15px; }
  .pc-cta__disclaimer { margin-top: 20px; font-size: 11px; }
}

/* =====================================================
   WEIGHT MANAGEMENT PAGE — SECTION 1: HERO
   ===================================================== */

.pc-wm-hero {
    --pepti-hero-btn-primary: #7c3aed;
    --pepti-hero-btn-primary-hover: #6d28d9;
    --pepti-hero-btn-shadow: rgba(124, 58, 237, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(124, 58, 237, 0.65);
    --pepti-hero-btn-secondary: rgba(255, 255, 255, 0.78);
    --pepti-hero-btn-secondary-hover: #ffffff;
    --pepti-hero-btn-secondary-text: #000000;
    --pepti-hero-btn-secondary-shadow: rgba(0, 0, 0, 0.5);
    --pepti-hero-btn-secondary-shadow-hover: rgba(124, 58, 237, 0.65);

    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

html[data-gender="men"] .pc-wm-hero {
    --pepti-hero-btn-primary: #60a5fa;
    --pepti-hero-btn-primary-hover: #93c5fd;
    --pepti-hero-btn-shadow: rgba(62, 189, 246, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(62, 189, 246, 0.65);
    --pepti-hero-btn-secondary-shadow-hover: rgba(62, 189, 246, 0.65);
}

html[data-gender="women"] .pc-wm-hero {
    --pepti-hero-btn-primary: #f9a8d4;
    --pepti-hero-btn-primary-hover: #ec4899;
    --pepti-hero-btn-shadow: rgba(244, 177, 229, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(244, 177, 229, 0.85);
    --pepti-hero-btn-secondary-shadow-hover: rgba(244, 177, 229, 0.85);
}

.pc-wm-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: auto;
}

.pc-wm-hero__bg-img {
    position: absolute;
    inset: 0;
    display: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pc-wm-hero__bg-img[data-show="neutral"] {
    background-color: #e8dff5;
    background-image: url('/uploads/2025/11/Weight-management-trans.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.pc-wm-hero__bg-img[data-show="men"] {
    background-color: #bfdbfe;
    background-image: url('/uploads/2025/11/Weight-management-2.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.pc-wm-hero__bg-img[data-show="women"] {
    background-color: #f5c6d6;
    background-image: url('/uploads/2025/11/Weight-management.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

html:not([data-gender]) .pc-wm-hero__bg-img[data-show="neutral"],
html[data-gender=""] .pc-wm-hero__bg-img[data-show="neutral"],
html[data-gender="neutral"] .pc-wm-hero__bg-img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-wm-hero__bg-img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-wm-hero__bg-img[data-show="women"] { display: block; }

.pc-wm-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.pc-wm-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
}

.pc-wm-hero__content {
    max-width: 600px;
}

.pc-wm-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 24px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.pc-wm-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #ffffff;
    line-height: 1.7;
    margin: 0 0 36px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pc-wm-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.pc-wm-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1.4;
    text-align: center;
    box-sizing: border-box;
}

.pc-wm-hero__btn--primary,
.pc-wm-hero__btn--primary:link,
.pc-wm-hero__btn--primary:visited {
    background: var(--pepti-hero-btn-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px var(--pepti-hero-btn-shadow);
}

.pc-wm-hero__btn--primary:hover,
.pc-wm-hero__btn--primary:focus,
.pc-wm-hero__btn--primary:active {
    background: var(--pepti-hero-btn-primary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--pepti-hero-btn-shadow-hover);
    text-decoration: none !important;
}

.pc-wm-hero__btn--secondary,
.pc-wm-hero__btn--secondary:link,
.pc-wm-hero__btn--secondary:visited {
    background: var(--pepti-hero-btn-secondary) !important;
    color: var(--pepti-hero-btn-secondary-text) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pc-wm-hero__btn--secondary:hover,
.pc-wm-hero__btn--secondary:focus,
.pc-wm-hero__btn--secondary:active {
    transform: translateY(-2px);
    background: var(--pepti-hero-btn-secondary-hover) !important;
    box-shadow: 0 6px 20px var(--pepti-hero-btn-secondary-shadow-hover);
    text-decoration: none !important;
}

@media (max-width: 1024px) {
    .pc-wm-hero { min-height: 600px; }
    .pc-wm-hero__container { padding: 60px 30px; }
}

@media (max-width: 768px) {
    .pc-wm-hero { min-height: 650px; align-items: flex-start; }
    .pc-wm-hero__container { padding: 50px 20px; }
    .pc-wm-hero__content { max-width: 100%; }
    .pc-wm-hero__buttons { flex-direction: column; align-items: stretch; }
    .pc-wm-hero__btn { width: 100%; min-width: unset; }
}

@media (max-width: 480px) {
    .pc-wm-hero { min-height: 600px; }
    .pc-wm-hero__container { padding: 100px 16px; }
    .pc-wm-hero__btn { padding: 14px 32px; font-size: 15px; }
}

@supports (-webkit-touch-callout: none) {
    .pc-wm-hero { -webkit-overflow-scrolling: touch; }
    .pc-wm-hero__bg, .pc-wm-hero__bg-img {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* =====================================================
   WEIGHT MANAGEMENT — SECTION 2: REAL SCIENCE + CALCULATOR
   ===================================================== */

.pc-wm-split {
  --pepti-section-bg: #e8dff5;
  --pepti-heading: #000000;
  --pepti-body: #5a3d7a;
  --pepti-accent: #7c3aed;
  --pepti-accent-light: #a78bfa;
  --pepti-accent-gradient: linear-gradient(135deg, #7c3aed, #a78bfa);
  --pepti-border: #c4b5fd;
  --pepti-stat-bg: rgba(255, 255, 255, 0.7);
  --pepti-stat-shadow: rgba(109, 34, 224, 0.08);
  --pepti-calc-bg: #ffffff;
  --pepti-calc-border: #c4b5fd;
  --pepti-calc-shadow: rgba(109, 34, 224, 0.12);
  --pepti-slider-track: #ede6f7;
  --pepti-result-bg: #f3eefb;
  --pepti-result-border: #c4b5fd;
  --pepti-btn-bg: linear-gradient(135deg, #7c3aed, #a78bfa);
  --pepti-btn-hover: linear-gradient(135deg, #a78bfa, #7c3aed);
  --pepti-btn-shadow: rgba(109, 34, 224, 0.3);
  --pepti-btn-hover-shadow: rgba(109, 34, 224, 0.4);
  --pepti-calc-btn-bg: #7c3aed;
  --pepti-calc-btn-hover: #a78bfa;
  --pepti-calc-btn-shadow: rgba(109, 34, 224, 0.35);

  padding: 60px 40px 80px;
  background: var(--pepti-section-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-wm-split {
  --pepti-section-bg: #bfdbfe;
  --pepti-heading: #000000;
  --pepti-body: #47627B;
  --pepti-accent: #2563eb;
  --pepti-accent-light: #60a5fa;
  --pepti-accent-gradient: linear-gradient(135deg, #2563eb, #60a5fa);
  --pepti-border: #dbeafe;
  --pepti-stat-bg: rgba(255, 255, 255, 0.7);
  --pepti-stat-shadow: rgba(54, 157, 211, 0.08);
  --pepti-calc-bg: #ffffff;
  --pepti-calc-border: #dbeafe;
  --pepti-calc-shadow: rgba(54, 157, 211, 0.12);
  --pepti-slider-track: #d4eaf5;
  --pepti-result-bg: #eff6ff;
  --pepti-result-border: #dbeafe;
  --pepti-btn-bg: linear-gradient(135deg, #2563eb, #60a5fa);
  --pepti-btn-hover: linear-gradient(135deg, #60a5fa, #2563eb);
  --pepti-btn-shadow: rgba(54, 157, 211, 0.3);
  --pepti-btn-hover-shadow: rgba(54, 157, 211, 0.4);
  --pepti-calc-btn-bg: #2563eb;
  --pepti-calc-btn-hover: #60a5fa;
  --pepti-calc-btn-shadow: rgba(54, 157, 211, 0.35);
}

html[data-gender="women"] .pc-wm-split {
  --pepti-section-bg: #f5c6d6;
  --pepti-heading: #000000;
  --pepti-body: #714b7e;
  --pepti-accent: #ec4899;
  --pepti-accent-light: #f9a8d4;
  --pepti-accent-gradient: linear-gradient(135deg, #ec4899, #f9a8d4);
  --pepti-border: #f4d1eb;
  --pepti-stat-bg: rgba(255, 255, 255, 0.7);
  --pepti-stat-shadow: rgba(207, 45, 172, 0.08);
  --pepti-calc-bg: #ffffff;
  --pepti-calc-border: #f4d1eb;
  --pepti-calc-shadow: rgba(207, 45, 172, 0.12);
  --pepti-slider-track: #fce8f3;
  --pepti-result-bg: #fcecee;
  --pepti-result-border: #f9a8d4;
  --pepti-btn-bg: linear-gradient(135deg, #ec4899, #f9a8d4);
  --pepti-btn-hover: linear-gradient(135deg, #f9a8d4, #ec4899);
  --pepti-btn-shadow: rgba(207, 45, 172, 0.3);
  --pepti-btn-hover-shadow: rgba(207, 45, 172, 0.4);
  --pepti-calc-btn-bg: #f9a8d4;
  --pepti-calc-btn-hover: #ec4899;
  --pepti-calc-btn-shadow: rgba(244, 177, 229, 0.35);
}

.pc-wm-split [data-show] { display: none; }
html:not([data-gender]) .pc-wm-split [data-show="neutral"],
html[data-gender=""] .pc-wm-split [data-show="neutral"],
html[data-gender="neutral"] .pc-wm-split [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-wm-split [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-wm-split [data-show="women"] { display: inline; }

.pc-wm-split img[data-show] { display: none; }
html:not([data-gender]) .pc-wm-split img[data-show="neutral"],
html[data-gender=""] .pc-wm-split img[data-show="neutral"],
html[data-gender="neutral"] .pc-wm-split img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-wm-split img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-wm-split img[data-show="women"] { display: block; }

.pc-wm-split__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pc-wm-split__left { max-width: 600px; }

.pc-wm-split__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 40px;
  line-height: 1.2;
}

.pc-wm-split__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.pc-wm-split__stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--pepti-stat-bg);
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px var(--pepti-stat-shadow);
  backdrop-filter: blur(10px);
}

.pc-wm-split__check-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--pepti-accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px var(--pepti-btn-shadow);
}

.pc-wm-split__stat p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--pepti-heading);
  padding-top: 8px;
}

.pc-wm-split__stat strong { font-weight: 700; }
.pc-wm-split__stat sup { font-size: 14px; }
.pc-wm-split__stat sup a { color: var(--pepti-body); text-decoration: none; }
.pc-wm-split__stat sup a:hover { color: var(--pepti-accent); }

.pc-wm-split__divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pepti-border), transparent);
  margin-bottom: 40px;
}

.pc-wm-split__cta-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pc-wm-split__btn {
  padding: 18px 40px;
  background: var(--pepti-btn-bg) !important;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px var(--pepti-btn-shadow);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  display: inline-block;
  border: none;
}

.pc-wm-split__btn:link,
.pc-wm-split__btn:visited {
  background: var(--pepti-btn-bg) !important;
  color: #ffffff !important;
}

.pc-wm-split__btn:hover,
.pc-wm-split__btn:focus,
.pc-wm-split__btn:active {
  background: var(--pepti-btn-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--pepti-btn-hover-shadow);
  text-decoration: none !important;
}

.pc-wm-split__contact { display: flex; flex-direction: column; gap: 4px; }
.pc-wm-split__contact-label { font-size: 14px; color: var(--pepti-body); }

.pc-wm-split__phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--pepti-accent) !important;
  text-decoration: none !important;
  transition: color 0.3s;
}

.pc-wm-split__phone:link,
.pc-wm-split__phone:visited { color: var(--pepti-accent) !important; }

.pc-wm-split__phone:hover,
.pc-wm-split__phone:focus {
  color: var(--pepti-accent-light) !important;
  text-decoration: none !important;
}

.pc-wm-split__right { display: flex; justify-content: center; }

.pc-wm-split__calculator {
  width: 100%;
  max-width: 520px;
  padding: 40px;
  background: var(--pepti-calc-bg);
  border: 2px solid var(--pepti-calc-border);
  border-radius: 20px;
  box-shadow: 0 12px 40px var(--pepti-calc-shadow);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: start;
}

.pc-wm-split__calc-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc-wm-split__calc-image img {
  width: 100%;
  max-width: 160px;
  height: auto;
}

.pc-wm-split__calc-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--pepti-heading);
  margin: 0 0 20px 0;
}

.pc-wm-split__weight-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.pc-wm-split__weight-number {
  font-size: 38px;
  font-weight: 700;
  color: var(--pepti-accent);
}

.pc-wm-split__weight-unit {
  font-size: 28px;
  font-weight: 600;
  color: var(--pepti-body);
}

.pc-wm-split__slider {
  width: 100%;
  height: 8px;
  border-radius: 10px;
  background: var(--pepti-slider-track);
  outline: none;
  margin: 10px 0 30px 0;
  -webkit-appearance: none;
  appearance: none;
}

.pc-wm-split__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pepti-accent);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px var(--pepti-btn-shadow);
  cursor: pointer;
}

.pc-wm-split__slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pepti-accent);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px var(--pepti-btn-shadow);
  cursor: pointer;
}

.pc-wm-split__result-text {
  background: var(--pepti-result-bg);
  border: 1px solid var(--pepti-result-border);
  color: #000000;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  margin-bottom: 24px;
}

.pc-wm-split__result-text strong {
  color: var(--pepti-accent);
  font-weight: 600;
}

.pc-wm-split__loss-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pc-wm-split__loss-number {
  font-size: 64px;
  font-weight: 800;
  color: #000000;
  line-height: 1;
}

.pc-wm-split__loss-unit {
  font-size: 32px;
  font-weight: 600;
  color: var(--pepti-body);
}

.pc-wm-split__calc-footer {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
}

.pc-wm-split__calc-btn {
  width: 100%;
  padding: 20px 28px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff !important;
  background: var(--pepti-calc-btn-bg) !important;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--pepti-calc-btn-shadow);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.pc-wm-split__calc-btn:hover,
.pc-wm-split__calc-btn:focus {
  transform: translateY(-2px);
  background: var(--pepti-calc-btn-hover) !important;
  box-shadow: 0 14px 40px var(--pepti-btn-hover-shadow);
}

.pc-wm-split__disclaimer {
  font-size: 13px;
  color: var(--pepti-body);
  line-height: 1.6;
  margin: 22px auto 0;
}

@media (max-width: 1200px) {
  .pc-wm-split__container { gap: 40px; }
  .pc-wm-split__title { font-size: 40px; }
  .pc-wm-split__calculator {
    grid-template-columns: 140px 1fr;
    padding: 30px;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .pc-wm-split { padding: 50px 30px 70px; }
  .pc-wm-split__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .pc-wm-split__left {
    max-width: 100%;
    text-align: center;
  }
  .pc-wm-split__title { font-size: 36px; }
  .pc-wm-split__stat { text-align: left; }
  .pc-wm-split__cta-row { justify-content: center; }
  .pc-wm-split__calculator {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pc-wm-split { padding: 40px 20px 60px; }
  .pc-wm-split__title { font-size: 32px; margin-bottom: 30px; }
  .pc-wm-split__stat { padding: 16px 20px; }
  .pc-wm-split__stat p { font-size: 17px; }
  .pc-wm-split__check-icon { width: 36px; height: 36px; }
  .pc-wm-split__cta-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .pc-wm-split__btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .pc-wm-split__contact { align-items: center; }
  .pc-wm-split__calculator {
    grid-template-columns: 120px 1fr;
    padding: 25px 20px;
    gap: 16px;
  }
  .pc-wm-split__calc-image img { max-width: 110px; }
  .pc-wm-split__calc-heading { font-size: 16px; }
  .pc-wm-split__weight-number { font-size: 32px; }
  .pc-wm-split__loss-number { font-size: 48px; }
}

@media (max-width: 480px) {
  .pc-wm-split { padding: 30px 16px 50px; }
  .pc-wm-split__title { font-size: 28px; }
  .pc-wm-split__calculator {
    grid-template-columns: 100px 1fr;
    padding: 20px 16px;
    gap: 12px;
  }
  .pc-wm-split__calc-image img { max-width: 90px; }
  .pc-wm-split__calc-heading { font-size: 14px; }
  .pc-wm-split__weight-number { font-size: 28px; }
  .pc-wm-split__weight-unit { font-size: 20px; }
  .pc-wm-split__loss-number { font-size: 40px; }
  .pc-wm-split__loss-unit { font-size: 24px; }
  .pc-wm-split__calc-btn { font-size: 16px; padding: 16px 20px; }
  .pc-wm-split__disclaimer { font-size: 11px; }
}

/* =====================================================
   WEIGHT MANAGEMENT — SECTION 3: BENEFITS GRID
   ===================================================== */

.pc-wm-benefits {
  --pepti-heading: #5b21b6;
  --pepti-card-heading: #5b21b6;
  --pepti-body: #5a3d7a;
  --pepti-border: #c4b5fd;
  --pepti-border-hover: #a78bfa;
  --pepti-shadow-hover: rgba(109, 34, 224, 0.15);

  padding: 80px 20px;
  background: transparent;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-wm-benefits {
  --pepti-heading: #2B4A6F;
  --pepti-card-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-border: #dbeafe;
  --pepti-border-hover: #2563eb;
  --pepti-shadow-hover: rgba(54, 157, 211, 0.15);
}

html[data-gender="women"] .pc-wm-benefits {
  --pepti-heading: #4a2b6f;
  --pepti-card-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-border: #f4d1eb;
  --pepti-border-hover: #ec4899;
  --pepti-shadow-hover: rgba(207, 45, 172, 0.15);
}

.pc-wm-benefits__container { max-width: 1200px; margin: 0 auto; }

.pc-wm-benefits__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

.pc-wm-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pc-wm-benefits__card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 15px;
  border: 2px solid var(--pepti-border);
  text-align: center;
  transition: all 0.3s ease;
}

.pc-wm-benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--pepti-shadow-hover);
  border-color: var(--pepti-border-hover);
}

.pc-wm-benefits__card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--pepti-card-heading);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pc-wm-benefits__card p {
  font-size: 15px;
  color: var(--pepti-body);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .pc-wm-benefits { padding: 60px 20px; }
  .pc-wm-benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pc-wm-benefits__heading { font-size: 32px; margin-bottom: 40px; }
}

@media (max-width: 768px) {
  .pc-wm-benefits { padding: 50px 16px; }
  .pc-wm-benefits__heading { font-size: 26px; margin-bottom: 30px; }
  .pc-wm-benefits__grid { grid-template-columns: 1fr; gap: 16px; }
  .pc-wm-benefits__card { padding: 24px 20px; }
  .pc-wm-benefits__card h3 { font-size: 17px; margin-bottom: 10px; }
  .pc-wm-benefits__card p { font-size: 14px; line-height: 1.5; }
}

@media (max-width: 480px) {
  .pc-wm-benefits { padding: 40px 14px; }
  .pc-wm-benefits__heading { font-size: 22px; margin-bottom: 24px; }
  .pc-wm-benefits__grid { gap: 14px; }
  .pc-wm-benefits__card { padding: 20px 16px; }
  .pc-wm-benefits__card h3 { font-size: 16px; }
  .pc-wm-benefits__card p { font-size: 13px; }
}

/* =====================================================
   WEIGHT MANAGEMENT — SECTION 4: INTERACTIVE HOTSPOTS
   ===================================================== */

.pc-wm-hotspots {
  --pepti-bg: #ede6f7;
  --pepti-heading: #5b21b6;
  --pepti-body: #5a3d7a;
  --pepti-accent: #7c3aed;
  --pepti-accent-light: #a78bfa;
  --pepti-border: #c4b5fd;
  --pepti-dot-bg: #ffffff;
  --pepti-shadow: rgba(109, 34, 224, 0.1);

  background: var(--pepti-bg);
  color: #000000;
  border-radius: 18px;
  padding: 60px 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-wm-hotspots {
  --pepti-bg: #e3f0f5;
  --pepti-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-accent: #2563eb;
  --pepti-accent-light: #60a5fa;
  --pepti-border: #9fdefb;
  --pepti-shadow: rgba(54, 157, 211, 0.1);
}

html[data-gender="women"] .pc-wm-hotspots {
  --pepti-bg: #fdf2f8;
  --pepti-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-accent: #ec4899;
  --pepti-accent-light: #f9a8d4;
  --pepti-border: #f4d1eb;
  --pepti-shadow: rgba(207, 45, 172, 0.1);
}

.pc-wm-hotspots [data-show] { display: none; }
html:not([data-gender]) .pc-wm-hotspots [data-show="neutral"],
html[data-gender=""] .pc-wm-hotspots [data-show="neutral"],
html[data-gender="neutral"] .pc-wm-hotspots [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-wm-hotspots [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-wm-hotspots [data-show="women"] { display: inline; }

.pc-wm-hotspots img[data-show] { display: none; }
html:not([data-gender]) .pc-wm-hotspots img[data-show="neutral"],
html[data-gender=""] .pc-wm-hotspots img[data-show="neutral"],
html[data-gender="neutral"] .pc-wm-hotspots img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-wm-hotspots img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-wm-hotspots img[data-show="women"] { display: block; }

.pc-wm-hotspots__container { max-width: 900px; margin: 0 auto; text-align: center; }

.pc-wm-hotspots__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--pepti-heading);
}

.pc-wm-hotspots__description {
  margin: 0 auto 40px;
  max-width: 720px;
  color: var(--pepti-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.pc-wm-hotspots__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 16 / 12;
}

.pc-wm-hotspots__body-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 10px 20px var(--pepti-shadow));
}

.pc-wm-hotspots__hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: var(--pepti-dot-bg);
  border: 3px solid var(--pepti-border);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pc-wm-hotspots__hotspot::before {
  content: '+';
  font-size: 22px;
  font-weight: 700;
  color: var(--pepti-accent);
  line-height: 1;
}

.pc-wm-hotspots__hotspot:hover,
.pc-wm-hotspots__hotspot.active {
  background: var(--pepti-accent-light);
  border-color: var(--pepti-accent-light);
  transform: translate(-50%, -50%) scale(1.15);
}

.pc-wm-hotspots__hotspot:hover::before,
.pc-wm-hotspots__hotspot.active::before {
  color: #ffffff;
}

.pc-wm-hotspots__info {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  text-align: left;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 20;
}

.pc-wm-hotspots__info::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: #ffffff;
}

.pc-wm-hotspots__hotspot:hover .pc-wm-hotspots__info {
  opacity: 1;
  visibility: visible;
}

.pc-wm-hotspots__info h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--pepti-heading);
}

.pc-wm-hotspots__info p {
  margin: 0;
  font-size: 14px;
  color: var(--pepti-body);
  line-height: 1.5;
}

.pc-wm-hotspots__mobile-card {
  display: none;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pc-wm-hotspots__mobile-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--pepti-heading);
}

.pc-wm-hotspots__mobile-card p {
  margin: 0;
  font-size: 15px;
  color: var(--pepti-body);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pc-wm-hotspots { padding: 40px 16px; }
  .pc-wm-hotspots__description { margin-bottom: 30px; font-size: 14px; }
  .pc-wm-hotspots__image-wrapper { aspect-ratio: 4 / 5; }
  .pc-wm-hotspots__hotspot { width: 32px; height: 32px; }
  .pc-wm-hotspots__hotspot::before { font-size: 18px; }
  .pc-wm-hotspots__info { display: none !important; }
  .pc-wm-hotspots__mobile-card { display: block; }
}

@media (max-width: 480px) {
  .pc-wm-hotspots { padding: 30px 14px; border-radius: 14px; }
  .pc-wm-hotspots__title { font-size: 20px; }
  .pc-wm-hotspots__description { font-size: 13px; }
  .pc-wm-hotspots__hotspot { width: 28px; height: 28px; }
  .pc-wm-hotspots__hotspot::before { font-size: 16px; }
}

/* =====================================================
   WEIGHT MANAGEMENT — SECTION 5: FEATURES
   ===================================================== */

.pc-wm-features {
  --pepti-bg: #ffffff;
  --pepti-heading: #5b21b6;
  --pepti-body: #222222;
  --pepti-border: #c4b5fd;
  --pepti-highlight-bg: #f3eefb;
  --pepti-accent: #7c3aed;

  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-wm-features {
  --pepti-heading: #2B4A6F;
  --pepti-border: #dbeafe;
  --pepti-highlight-bg: #eff6ff;
  --pepti-accent: #2563eb;
}

html[data-gender="women"] .pc-wm-features {
  --pepti-heading: #4a2b6f;
  --pepti-border: #f9a8d4;
  --pepti-highlight-bg: #fcecee;
  --pepti-accent: #ec4899;
}

.pc-wm-features [data-show] { display: none; }
html:not([data-gender]) .pc-wm-features [data-show="neutral"],
html[data-gender=""] .pc-wm-features [data-show="neutral"],
html[data-gender="neutral"] .pc-wm-features [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-wm-features [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-wm-features [data-show="women"] { display: inline; }

.pc-wm-features img[data-show] { display: none; }
html:not([data-gender]) .pc-wm-features img[data-show="neutral"],
html[data-gender=""] .pc-wm-features img[data-show="neutral"],
html[data-gender="neutral"] .pc-wm-features img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-wm-features img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-wm-features img[data-show="women"] { display: block; }

.pc-wm-features__container { max-width: 1200px; margin: 0 auto; }

.pc-wm-features__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 60px;
}

.pc-wm-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.pc-wm-features__row:last-child { margin-bottom: 0; }

.pc-wm-features__row--reverse { direction: rtl; }
.pc-wm-features__row--reverse > * { direction: ltr; }

.pc-wm-features__image {
  border: 2px solid var(--pepti-border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pepti-highlight-bg);
}

.pc-wm-features__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pc-wm-features__content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pc-wm-features__content p {
  font-size: 16px;
  color: var(--pepti-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pc-wm-features__highlight {
  background: var(--pepti-highlight-bg);
  border-left: 4px solid var(--pepti-border);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
}

.pc-wm-features__highlight strong {
  color: var(--pepti-accent);
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .pc-wm-features { padding: 60px 20px; }
  .pc-wm-features__heading { font-size: 32px; margin-bottom: 50px; }
  .pc-wm-features__row { gap: 40px; margin-bottom: 50px; }
  .pc-wm-features__content h3 { font-size: 24px; }
}

@media (max-width: 768px) {
  .pc-wm-features { padding: 50px 16px; }
  .pc-wm-features__heading { font-size: 26px; margin-bottom: 40px; }
  .pc-wm-features__row,
  .pc-wm-features__row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    margin-bottom: 40px;
    gap: 25px;
  }
  .pc-wm-features__image { min-height: 200px; border-radius: 14px; }
  .pc-wm-features__content h3 { font-size: 22px; margin-bottom: 12px; }
  .pc-wm-features__content p { font-size: 15px; margin-bottom: 16px; }
  .pc-wm-features__highlight { padding: 14px 16px; }
  .pc-wm-features__highlight strong { font-size: 14px; }
}

@media (max-width: 480px) {
  .pc-wm-features { padding: 40px 14px; }
  .pc-wm-features__heading { font-size: 22px; margin-bottom: 30px; }
  .pc-wm-features__row { gap: 20px; margin-bottom: 35px; }
  .pc-wm-features__image { min-height: 180px; }
  .pc-wm-features__content h3 { font-size: 20px; }
  .pc-wm-features__content p { font-size: 14px; }
  .pc-wm-features__highlight { padding: 12px 14px; }
  .pc-wm-features__highlight strong { font-size: 13px; }
}

/* =====================================================
   WEIGHT MANAGEMENT — SECTION 6: WHY CHOOSE US
   ===================================================== */

.pc-wm-why {
  --pepti-bg: linear-gradient(135deg, #c4b5fd, #ede6f7);
  --pepti-heading: #5b21b6;
  --pepti-subheading: #5a3d7a;
  --pepti-number: #7c3aed;
  --pepti-card-heading: #5b21b6;
  --pepti-body: #222222;
  --pepti-card-shadow: rgba(109, 34, 224, 0.08);
  --pepti-card-hover-shadow: rgba(109, 34, 224, 0.18);

  padding: 80px 40px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-wm-why {
  --pepti-bg: linear-gradient(135deg, #C6D9F7, #dbeafe);
  --pepti-heading: #2B4A6F;
  --pepti-subheading: #47627B;
  --pepti-number: #2563eb;
  --pepti-card-heading: #2B4A6F;
  --pepti-card-shadow: rgba(54, 157, 211, 0.08);
  --pepti-card-hover-shadow: rgba(54, 157, 211, 0.18);
}

html[data-gender="women"] .pc-wm-why {
  --pepti-bg: linear-gradient(135deg, #f7c8cc, #f8ccdd);
  --pepti-heading: #4a2b6f;
  --pepti-subheading: #714b7e;
  --pepti-number: #ec4899;
  --pepti-card-heading: #4a2b6f;
  --pepti-card-shadow: rgba(244, 177, 229, 0.2);
  --pepti-card-hover-shadow: rgba(207, 45, 172, 0.2);
}

.pc-wm-why [data-show] { display: none; }
html:not([data-gender]) .pc-wm-why [data-show="neutral"],
html[data-gender=""] .pc-wm-why [data-show="neutral"],
html[data-gender="neutral"] .pc-wm-why [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-wm-why [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-wm-why [data-show="women"] { display: inline; }

.pc-wm-why__container { max-width: 1200px; margin: 0 auto; }

.pc-wm-why__header { text-align: center; margin-bottom: 60px; }

.pc-wm-why__header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 14px;
  line-height: 1.2;
}

.pc-wm-why__header p {
  font-size: 20px;
  color: var(--pepti-subheading);
  font-weight: 500;
}

.pc-wm-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pc-wm-why__card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 28px var(--pepti-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-wm-why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px var(--pepti-card-hover-shadow);
}

.pc-wm-why__number {
  font-size: 44px;
  font-weight: 700;
  color: var(--pepti-number);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.pc-wm-why__card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--pepti-card-heading);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pc-wm-why__card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pepti-body);
  margin: 0;
}

@media (max-width: 1024px) {
  .pc-wm-why { padding: 60px 30px; }
  .pc-wm-why__header { margin-bottom: 50px; }
  .pc-wm-why__header h2 { font-size: 36px; }
  .pc-wm-why__cards { gap: 24px; }
  .pc-wm-why__card { padding: 32px 26px; }
  .pc-wm-why__number { font-size: 38px; }
  .pc-wm-why__card h3 { font-size: 22px; }
}

@media (max-width: 768px) {
  .pc-wm-why { padding: 50px 20px; }
  .pc-wm-why__header { margin-bottom: 40px; }
  .pc-wm-why__header h2 { font-size: 28px; }
  .pc-wm-why__header p { font-size: 17px; }
  .pc-wm-why__cards { grid-template-columns: 1fr; gap: 20px; }
  .pc-wm-why__card { padding: 28px 24px; border-radius: 20px; }
  .pc-wm-why__number { font-size: 36px; margin-bottom: 12px; }
  .pc-wm-why__card h3 { font-size: 20px; margin-bottom: 12px; }
  .pc-wm-why__card p { font-size: 15px; line-height: 1.6; }
}

@media (max-width: 480px) {
  .pc-wm-why { padding: 40px 16px; }
  .pc-wm-why__header h2 { font-size: 24px; }
  .pc-wm-why__header p { font-size: 15px; }
  .pc-wm-why__cards { gap: 16px; }
  .pc-wm-why__card { padding: 24px 20px; border-radius: 16px; }
  .pc-wm-why__number { font-size: 32px; }
  .pc-wm-why__card h3 { font-size: 18px; }
  .pc-wm-why__card p { font-size: 14px; }
}

/* =====================================================
   WEIGHT MANAGEMENT — SECTION 7: YOUR JOURNEY TIMELINE
   ===================================================== */

.pc-wm-journey {
  --pepti-bg: transparent;
  --pepti-heading: #5b21b6;
  --pepti-step-heading: #000000;
  --pepti-body: #5a3d7a;
  --pepti-icon-bg: #7c3aed;
  --pepti-icon-gradient: linear-gradient(180deg, #7c3aed, #a78bfa);
  --pepti-icon-shadow: rgba(109, 34, 224, 0.3);

  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-wm-journey {
  --pepti-heading: #2B4A6F;
  --pepti-step-heading: #000000;
  --pepti-body: #47627B;
  --pepti-icon-bg: #2563eb;
  --pepti-icon-gradient: linear-gradient(180deg, #2563eb, #60a5fa);
  --pepti-icon-shadow: rgba(54, 157, 211, 0.3);
}

html[data-gender="women"] .pc-wm-journey {
  --pepti-bg: #efe3f5;
  --pepti-heading: #4a2b6f;
  --pepti-step-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-icon-bg: #ec4899;
  --pepti-icon-gradient: linear-gradient(180deg, #ec4899, #f9a8d4);
  --pepti-icon-shadow: rgba(207, 45, 172, 0.3);
}

.pc-wm-journey [data-show] { display: none; }
html:not([data-gender]) .pc-wm-journey [data-show="neutral"],
html[data-gender=""] .pc-wm-journey [data-show="neutral"],
html[data-gender="neutral"] .pc-wm-journey [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-wm-journey [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-wm-journey [data-show="women"] { display: inline; }

.pc-wm-journey__container { max-width: 900px; margin: 0 auto; }

.pc-wm-journey__heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.pc-wm-journey__timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pc-wm-journey__step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  position: relative;
}

.pc-wm-journey__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 65px;
  width: 3px;
  height: calc(100% + 30px);
  background: var(--pepti-icon-gradient);
}

.pc-wm-journey__icon {
  width: 55px;
  height: 55px;
  background: var(--pepti-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--pepti-icon-shadow);
  border: 3px solid #ffffff;
  position: relative;
  z-index: 1;
}

.pc-wm-journey__icon span {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.pc-wm-journey__content {
  flex: 1;
  padding-top: 5px;
}

.pc-wm-journey__content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--pepti-step-heading);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pc-wm-journey__content p {
  font-size: 16px;
  color: var(--pepti-body);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .pc-wm-journey { padding: 60px 20px; }
  .pc-wm-journey__heading { font-size: 32px; margin-bottom: 50px; }
  .pc-wm-journey__timeline { gap: 35px; }
  .pc-wm-journey__step:not(:last-child)::after { height: calc(100% + 25px); }
  .pc-wm-journey__icon { width: 50px; height: 50px; }
  .pc-wm-journey__icon span { font-size: 22px; }
  .pc-wm-journey__content h3 { font-size: 20px; }
  .pc-wm-journey__content p { font-size: 15px; }
}

@media (max-width: 768px) {
  .pc-wm-journey { padding: 50px 16px; }
  .pc-wm-journey__heading { font-size: 26px; margin-bottom: 40px; }
  .pc-wm-journey__timeline { gap: 30px; }
  .pc-wm-journey__step { gap: 18px; }
  .pc-wm-journey__step:not(:last-child)::after {
    left: 23px;
    top: 55px;
    height: calc(100% + 20px);
  }
  .pc-wm-journey__icon { width: 46px; height: 46px; }
  .pc-wm-journey__icon span { font-size: 20px; }
  .pc-wm-journey__content h3 { font-size: 18px; margin-bottom: 8px; }
  .pc-wm-journey__content p { font-size: 14px; line-height: 1.5; }
}

@media (max-width: 480px) {
  .pc-wm-journey { padding: 40px 14px; }
  .pc-wm-journey__heading { font-size: 22px; margin-bottom: 35px; }
  .pc-wm-journey__timeline { gap: 25px; }
  .pc-wm-journey__step { gap: 15px; }
  .pc-wm-journey__step:not(:last-child)::after {
    left: 21px;
    top: 50px;
    height: calc(100% + 15px);
  }
  .pc-wm-journey__icon { width: 42px; height: 42px; }
  .pc-wm-journey__icon span { font-size: 18px; }
  .pc-wm-journey__content h3 { font-size: 17px; }
  .pc-wm-journey__content p { font-size: 13px; }
}

/* =====================================================
   WEIGHT MANAGEMENT — SECTION 8: FAQ
   ===================================================== */

.pc-wm-faq {
  --pepti-heading: #5b21b6;
  --pepti-question-text: #000000;
  --pepti-answer: #5a3d7a;
  --pepti-border: #c4b5fd;
  --pepti-border-hover: #a78bfa;
  --pepti-icon: #7c3aed;
  --pepti-hover-bg: #f8f5fd;
  --pepti-active-bg: #f3eefb;

  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-wm-faq {
  --pepti-heading: #2B4A6F;
  --pepti-question-text: #000000;
  --pepti-answer: #47627B;
  --pepti-border: #dbeafe;
  --pepti-border-hover: #2563eb;
  --pepti-icon: #2563eb;
  --pepti-hover-bg: #f0f8fc;
  --pepti-active-bg: #eff6ff;
}

html[data-gender="women"] .pc-wm-faq {
  --pepti-heading: #4a2b6f;
  --pepti-question-text: #000000;
  --pepti-answer: #714b7e;
  --pepti-border: #f4d1eb;
  --pepti-border-hover: #ec4899;
  --pepti-icon: #ec4899;
  --pepti-hover-bg: #fef8fc;
  --pepti-active-bg: #fcecee;
}

.pc-wm-faq__container { max-width: 900px; margin: 0 auto; }

.pc-wm-faq__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

.pc-wm-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pc-wm-faq__item {
  background: #ffffff;
  border: 2px solid var(--pepti-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pc-wm-faq__item:hover {
  border-color: var(--pepti-border-hover);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.pc-wm-faq__item.active {
  border-color: var(--pepti-border-hover);
}

.pc-wm-faq__question {
  width: 100%;
  padding: 22px 25px;
  background: #ffffff !important;
  border: none !important;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  transition: background 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none !important;
}

.pc-wm-faq__question-text {
  color: var(--pepti-question-text) !important;
  font-weight: 600;
}

.pc-wm-faq__question:hover { background: var(--pepti-hover-bg) !important; }
.pc-wm-faq__question:hover .pc-wm-faq__question-text { color: var(--pepti-question-text) !important; }
.pc-wm-faq__question:focus { background: var(--pepti-hover-bg) !important; outline: 2px solid var(--pepti-border-hover); outline-offset: -2px; }
.pc-wm-faq__question:focus .pc-wm-faq__question-text { color: var(--pepti-question-text) !important; }
.pc-wm-faq__question:active { background: var(--pepti-active-bg) !important; }
.pc-wm-faq__question:active .pc-wm-faq__question-text { color: var(--pepti-question-text) !important; }
.pc-wm-faq__item.active .pc-wm-faq__question { background: var(--pepti-active-bg) !important; }
.pc-wm-faq__item.active .pc-wm-faq__question-text { color: var(--pepti-question-text) !important; }

.pc-wm-faq__icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--pepti-icon) !important;
  transition: transform 0.3s ease;
  margin-left: 15px;
  flex-shrink: 0;
  line-height: 1;
}

.pc-wm-faq__item.active .pc-wm-faq__icon {
  transform: rotate(45deg);
}

.pc-wm-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #ffffff;
}

.pc-wm-faq__item.active .pc-wm-faq__answer {
  max-height: 500px;
}

.pc-wm-faq__answer p {
  font-size: 16px;
  color: var(--pepti-answer) !important;
  line-height: 1.7;
  padding: 0 25px 25px 25px;
  margin: 0;
}

@media (max-width: 1024px) {
  .pc-wm-faq { padding: 60px 20px; }
  .pc-wm-faq__heading { font-size: 30px; margin-bottom: 40px; }
  .pc-wm-faq__question { font-size: 17px; padding: 20px 22px; }
  .pc-wm-faq__answer p { font-size: 15px; padding: 0 22px 22px 22px; }
}

@media (max-width: 768px) {
  .pc-wm-faq { padding: 50px 16px; }
  .pc-wm-faq__heading { font-size: 26px; margin-bottom: 30px; }
  .pc-wm-faq__accordion { gap: 12px; }
  .pc-wm-faq__question { font-size: 16px; padding: 18px 20px; }
  .pc-wm-faq__icon { font-size: 24px; }
  .pc-wm-faq__answer p { font-size: 14px; padding: 0 20px 20px 20px; line-height: 1.6; }
}

@media (max-width: 480px) {
  .pc-wm-faq { padding: 40px 14px; }
  .pc-wm-faq__heading { font-size: 22px; margin-bottom: 24px; }
  .pc-wm-faq__accordion { gap: 10px; }
  .pc-wm-faq__question { font-size: 15px; padding: 16px 18px; }
  .pc-wm-faq__icon { font-size: 20px; }
  .pc-wm-faq__answer p { font-size: 13px; padding: 0 18px 18px 18px; }
}

/* =====================================================
   WEIGHT MANAGEMENT — ALLIED HEALTH SUPPORT
   ===================================================== */

.pc-allied-health{background:var(--pepti-bg-light);padding:80px 20px;text-align:center}
.pc-allied-health__inner{max-width:1100px;margin:0 auto}
.pc-allied-health__badge{display:inline-block;background:var(--pepti-primary-subtle);color:var(--pepti-primary);font-size:13px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:6px 18px;border-radius:var(--pepti-radius-full);margin-bottom:16px}
.pc-allied-health__title{font-size:clamp(1.6rem,3.5vw,2.2rem);font-weight:800;color:var(--pepti-text-dark);margin:0 0 12px;line-height:1.25}
.pc-allied-health__subtitle{font-size:1.05rem;color:var(--pepti-text);max-width:650px;margin:0 auto 48px;line-height:1.7}
.pc-allied-health__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:28px;margin-bottom:40px}
.pc-allied-health__card{background:var(--pepti-white);border:1px solid var(--pepti-border);border-radius:var(--pepti-radius-xl);padding:36px 28px;text-align:left;transition:all var(--pepti-transition-base)}
.pc-allied-health__card:hover{box-shadow:var(--pepti-shadow-theme);border-color:var(--pepti-border-hover);transform:translateY(-2px)}
.pc-allied-health__icon{font-size:2rem;margin-bottom:14px}
.pc-allied-health__card-title{font-size:1.15rem;font-weight:700;color:var(--pepti-text-dark);margin:0 0 10px}
.pc-allied-health__card-desc{font-size:0.95rem;color:var(--pepti-text);line-height:1.7;margin:0}
.pc-allied-health__note{font-size:13px;font-style:italic;color:var(--pepti-text-muted);max-width:600px;margin:0 auto;line-height:1.6}
@media(max-width:768px){.pc-allied-health{padding:56px 16px}.pc-allied-health__grid{grid-template-columns:1fr;gap:20px}}

/* =====================================================
   WEIGHT MANAGEMENT — OTC PRODUCTS
   ===================================================== */

.pc-otc-products{background:var(--pepti-bg-dark);padding:80px 20px;text-align:center}
.pc-otc-products__inner{max-width:1100px;margin:0 auto}
.pc-otc-products__badge{display:inline-block;background:var(--pepti-glow-light);color:var(--pepti-primary-light);font-size:13px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:6px 18px;border-radius:var(--pepti-radius-full);margin-bottom:16px}
.pc-otc-products__title{font-size:clamp(1.6rem,3.5vw,2.2rem);font-weight:800;color:var(--pepti-text-on-dark);margin:0 0 12px;line-height:1.25}
.pc-otc-products__subtitle{font-size:1.05rem;color:rgba(255,255,255,0.75);max-width:650px;margin:0 auto 48px;line-height:1.7}
.pc-otc-products__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px;margin-bottom:40px}
.pc-otc-products__card{background:var(--pepti-bg-dark-secondary);border:1px solid var(--pepti-glow-light);border-radius:var(--pepti-radius-xl);padding:32px 24px;text-align:center;transition:all var(--pepti-transition-base)}
.pc-otc-products__card:hover{border-color:var(--pepti-primary-light);box-shadow:0 8px 32px var(--pepti-glow);transform:translateY(-2px)}
.pc-otc-products__card-icon{font-size:2rem;margin-bottom:12px}
.pc-otc-products__card-title{font-size:1.05rem;font-weight:700;color:var(--pepti-text-on-dark);margin:0 0 8px}
.pc-otc-products__card-desc{font-size:0.88rem;color:rgba(255,255,255,0.65);line-height:1.6;margin:0}
.pc-otc-products__cta{display:inline-flex;align-items:center;gap:8px;margin-top:32px;padding:14px 32px;background:var(--pepti-gradient-primary);color:#fff;font-weight:700;font-size:1rem;border-radius:var(--pepti-radius-lg);text-decoration:none;transition:all var(--pepti-transition-base)}
.pc-otc-products__cta:hover{transform:translateY(-2px);box-shadow:0 8px 24px var(--pepti-glow-strong)}
.pc-otc-products__note{font-size:13px;font-style:italic;color:rgba(255,255,255,0.45);max-width:600px;margin:24px auto 0;line-height:1.6}
@media(max-width:768px){.pc-otc-products{padding:56px 16px}.pc-otc-products__grid{grid-template-columns:1fr;gap:16px}}

/* =====================================================
   WEIGHT MANAGEMENT — SECTION 9: CTA
   ===================================================== */

.pc-wm-cta {
  --pepti-bg: #5b21b6;
  --pepti-text-secondary: #c4b5fd;
  --pepti-btn-hover: #a78bfa;
  --pepti-btn-text: #5b21b6;

  padding: 100px 40px;
  background: var(--pepti-bg);
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-wm-cta {
  --pepti-bg: #2B4A6F;
  --pepti-text-secondary: #dbeafe;
  --pepti-btn-hover: #60a5fa;
  --pepti-btn-text: #2B4A6F;
  background: linear-gradient(135deg, #2B4A6F, #47627B);
}

html[data-gender="women"] .pc-wm-cta {
  --pepti-bg: #4a2b6f;
  --pepti-text-secondary: #fce7f3;
  --pepti-btn-hover: #f9a8d4;
  --pepti-btn-text: #4a2b6f;
}

.pc-wm-cta [data-show] { display: none; }
html:not([data-gender]) .pc-wm-cta [data-show="neutral"],
html[data-gender=""] .pc-wm-cta [data-show="neutral"],
html[data-gender="neutral"] .pc-wm-cta [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-wm-cta [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-wm-cta [data-show="women"] { display: inline; }

.pc-wm-cta__container { max-width: 800px; margin: 0 auto; }

.pc-wm-cta__content { margin-bottom: 45px; }

.pc-wm-cta__title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pc-wm-cta__desc {
  font-size: 20px;
  color: var(--pepti-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.pc-wm-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pc-wm-cta__btn {
  padding: 18px 44px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.pc-wm-cta__btn--primary,
.pc-wm-cta__btn--primary:link,
.pc-wm-cta__btn--primary:visited {
  background: #ffffff !important;
  color: var(--pepti-btn-text) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border: none !important;
}

.pc-wm-cta__btn--primary:hover,
.pc-wm-cta__btn--primary:focus,
.pc-wm-cta__btn--primary:active {
  background: var(--pepti-btn-hover) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  text-decoration: none !important;
}

html[data-gender="women"] .pc-wm-cta__btn--primary:hover,
html[data-gender="women"] .pc-wm-cta__btn--primary:focus,
html[data-gender="women"] .pc-wm-cta__btn--primary:active {
  color: var(--pepti-btn-text) !important;
}

.pc-wm-cta__btn--secondary,
.pc-wm-cta__btn--secondary:link,
.pc-wm-cta__btn--secondary:visited {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

.pc-wm-cta__btn--secondary:hover,
.pc-wm-cta__btn--secondary:focus,
.pc-wm-cta__btn--secondary:active {
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  text-decoration: none !important;
}

.pc-wm-cta__disclaimer {
  margin-top: 30px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .pc-wm-cta { padding: 80px 30px; }
  .pc-wm-cta__title { font-size: 36px; }
  .pc-wm-cta__desc { font-size: 18px; }
  .pc-wm-cta__btn { padding: 16px 40px; font-size: 17px; }
  .pc-wm-cta__disclaimer { font-size: 12px; }
}

@media (max-width: 768px) {
  .pc-wm-cta { padding: 60px 20px; }
  .pc-wm-cta__content { margin-bottom: 35px; }
  .pc-wm-cta__title { font-size: 28px; margin-bottom: 16px; }
  .pc-wm-cta__desc { font-size: 16px; }
  .pc-wm-cta__buttons { flex-direction: column; gap: 16px; align-items: center; }
  .pc-wm-cta__btn { width: 100%; max-width: 320px; padding: 16px 36px; font-size: 16px; }
  .pc-wm-cta__disclaimer { margin-top: 25px; font-size: 12px; padding: 0 10px; }
}

@media (max-width: 480px) {
  .pc-wm-cta { padding: 50px 16px; }
  .pc-wm-cta__title { font-size: 24px; }
  .pc-wm-cta__desc { font-size: 15px; }
  .pc-wm-cta__btn { padding: 14px 32px; font-size: 15px; }
  .pc-wm-cta__disclaimer { margin-top: 20px; font-size: 11px; }
}

/* ══════════════════════════════════════════════════════════════
   SECTION: SLEEP
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.pc-sl-hero {
    --pepti-hero-btn-primary: #7c3aed;
    --pepti-hero-btn-primary-hover: #6d28d9;
    --pepti-hero-btn-shadow: rgba(124, 58, 237, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(124, 58, 237, 0.65);
    --pepti-hero-btn-secondary: rgba(255, 255, 255, 0.78);
    --pepti-hero-btn-secondary-hover: #ffffff;
    --pepti-hero-btn-secondary-text: #000000;
    --pepti-hero-btn-secondary-shadow: rgba(0, 0, 0, 0.5);
    --pepti-hero-btn-secondary-shadow-hover: rgba(124, 58, 237, 0.65);
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 100px 40px;
    background: url('/uploads/2025/11/Sleep-1.png') center center / cover no-repeat;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
html[data-gender="men"] .pc-sl-hero {
    --pepti-hero-btn-primary: #60a5fa;
    --pepti-hero-btn-primary-hover: #93c5fd;
    --pepti-hero-btn-shadow: rgba(62, 189, 246, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(62, 189, 246, 0.65);
    --pepti-hero-btn-secondary-shadow-hover: rgba(62, 189, 246, 0.65);
    background-image: url('/uploads/2025/12/89.png');
}
html[data-gender="women"] .pc-sl-hero {
    --pepti-hero-btn-primary: #f9a8d4;
    --pepti-hero-btn-primary-hover: #ec4899;
    --pepti-hero-btn-shadow: rgba(244, 177, 229, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(244, 177, 229, 0.85);
    --pepti-hero-btn-secondary-shadow-hover: rgba(244, 177, 229, 0.85);
    background-image: url('/uploads/2025/11/Sleep-1.png');
}
.pc-sl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.pc-sl-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.pc-sl-hero__container { position: relative; z-index: 2; max-width: 800px; width: 100%; }
.pc-sl-hero__content { max-width: 600px; }
.pc-sl-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 24px 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.pc-sl-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 40px 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.pc-sl-hero__buttons { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.pc-sl-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.pc-sl-hero__btn--primary,
.pc-sl-hero__btn--primary:link,
.pc-sl-hero__btn--primary:visited {
    background: var(--pepti-hero-btn-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px var(--pepti-hero-btn-shadow);
}
.pc-sl-hero__btn--primary:hover,
.pc-sl-hero__btn--primary:focus,
.pc-sl-hero__btn--primary:active {
    background: var(--pepti-hero-btn-primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--pepti-hero-btn-shadow-hover);
    text-decoration: none !important;
}
.pc-sl-hero__btn--secondary,
.pc-sl-hero__btn--secondary:link,
.pc-sl-hero__btn--secondary:visited {
    background: var(--pepti-hero-btn-secondary) !important;
    color: var(--pepti-hero-btn-secondary-text) !important;
    box-shadow: 0 4px 15px var(--pepti-hero-btn-secondary-shadow);
}
.pc-sl-hero__btn--secondary:hover,
.pc-sl-hero__btn--secondary:focus,
.pc-sl-hero__btn--secondary:active {
    background: var(--pepti-hero-btn-secondary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--pepti-hero-btn-secondary-shadow-hover);
    text-decoration: none !important;
}
@media (max-width: 1024px) {
    .pc-sl-hero { min-height: 600px; padding: 80px 30px; }
}
@media (max-width: 768px) {
    .pc-sl-hero { min-height: 650px; padding: 70px 20px; text-align: center; align-items: flex-start; }
    .pc-sl-hero__content { max-width: 100%; }
    .pc-sl-hero__buttons { flex-direction: column; align-items: stretch; }
    .pc-sl-hero__btn { width: 100%; min-width: unset; }
}
@media (max-width: 480px) {
    .pc-sl-hero { min-height: 600px; padding: 100px 16px 60px; }
    .pc-sl-hero__btn { padding: 14px 32px; font-size: 0.95rem; }
}
@supports (-webkit-touch-callout: none) {
    .pc-sl-hero {
        -webkit-overflow-scrolling: touch;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* ── BENEFITS GRID ── */
.pc-sl-benefits {
  --pepti-section-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-card-title: #1e293b;
  --pepti-body: #475569;
  --pepti-accent: #7c3aed;
  --pepti-border: #e2e8f0;
  --pepti-card-bg: #ffffff;
  --pepti-card-shadow: rgba(124, 58, 237, 0.08);
  --pepti-card-hover-shadow: rgba(124, 58, 237, 0.15);
  --pepti-subtext-bg: #ffffff;
  --pepti-subtext-border: #7c3aed;
  padding: 80px 40px;
  background: var(--pepti-section-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sl-benefits {
  --pepti-section-bg: #dbeef5;
  --pepti-heading: #2B4A6F;
  --pepti-card-title: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-accent: #2563eb;
  --pepti-border: #dbeafe;
  --pepti-card-shadow: rgba(54, 157, 211, 0.08);
  --pepti-card-hover-shadow: rgba(54, 157, 211, 0.15);
  --pepti-subtext-border: #2563eb;
}
html[data-gender="women"] .pc-sl-benefits {
  --pepti-section-bg: #fce7f3;
  --pepti-heading: #4a2b6f;
  --pepti-card-title: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-accent: #ec4899;
  --pepti-border: #f9a8d4;
  --pepti-card-shadow: rgba(207, 45, 172, 0.08);
  --pepti-card-hover-shadow: rgba(207, 45, 172, 0.15);
  --pepti-subtext-border: #ec4899;
}
.pc-sl-benefits [data-show] { display: none; }
html:not([data-gender]) .pc-sl-benefits [data-show="neutral"],
html[data-gender=""] .pc-sl-benefits [data-show="neutral"],
html[data-gender="neutral"] .pc-sl-benefits [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-sl-benefits [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-sl-benefits [data-show="women"] { display: inline; }
.pc-sl-benefits__container { max-width: 1200px; margin: 0 auto; }
.pc-sl-benefits__title {
  font-size: 42px; font-weight: 700; color: var(--pepti-heading);
  text-align: center; margin-bottom: 50px; line-height: 1.2;
}
.pc-sl-benefits__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;
  margin-bottom: 40px;
}
.pc-sl-benefits__card {
  background: var(--pepti-card-bg); border-radius: 16px;
  padding: 35px 30px; box-shadow: 0 4px 16px var(--pepti-card-shadow);
  transition: all 0.3s ease; border: 2px solid transparent;
}
.pc-sl-benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--pepti-card-hover-shadow);
  border-color: var(--pepti-accent);
}
.pc-sl-benefits__card-title {
  font-size: 20px; font-weight: 700; color: var(--pepti-card-title);
  margin-bottom: 12px; line-height: 1.3;
}
.pc-sl-benefits__card-desc {
  font-size: 15px; color: var(--pepti-body); line-height: 1.6; margin: 0;
}
.pc-sl-benefits__subtext {
  max-width: 800px; margin: 0 auto; text-align: center;
  font-size: 17px; color: var(--pepti-body); line-height: 1.7;
  padding: 30px; background: var(--pepti-subtext-bg);
  border-radius: 12px; border-left: 4px solid var(--pepti-subtext-border);
}
@media (max-width: 1024px) {
  .pc-sl-benefits { padding: 70px 30px; }
  .pc-sl-benefits__title { font-size: 36px; margin-bottom: 45px; }
  .pc-sl-benefits__grid { gap: 22px; }
  .pc-sl-benefits__card { padding: 32px 28px; }
  .pc-sl-benefits__card-title { font-size: 19px; }
  .pc-sl-benefits__card-desc { font-size: 14px; }
  .pc-sl-benefits__subtext { font-size: 16px; padding: 25px; }
}
@media (max-width: 768px) {
  .pc-sl-benefits { padding: 60px 20px; }
  .pc-sl-benefits__title { font-size: 28px; margin-bottom: 35px; }
  .pc-sl-benefits__grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
  .pc-sl-benefits__card { padding: 30px 25px; }
  .pc-sl-benefits__card-title { font-size: 18px; }
  .pc-sl-benefits__card-desc { font-size: 14px; line-height: 1.5; }
  .pc-sl-benefits__subtext { font-size: 15px; padding: 20px; }
}
@media (max-width: 480px) {
  .pc-sl-benefits { padding: 50px 16px; }
  .pc-sl-benefits__title { font-size: 24px; margin-bottom: 30px; }
  .pc-sl-benefits__grid { gap: 18px; }
  .pc-sl-benefits__card { padding: 28px 22px; }
  .pc-sl-benefits__card-title { font-size: 17px; }
  .pc-sl-benefits__card-desc { font-size: 13px; }
  .pc-sl-benefits__subtext { font-size: 14px; padding: 18px; }
}

/* ── FEATURES ── */
.pc-sl-features {
  --pepti-heading: #1e293b;
  --pepti-body: #475569;
  --pepti-accent: #7c3aed;
  --pepti-border: #e2e8f0;
  --pepti-highlight-bg: #f8fafc;
  --pepti-highlight-border: #e2e8f0;
  --pepti-highlight-text: #7c3aed;
  --pepti-image-bg: #f8fafc;
  padding: 80px 40px;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sl-features {
  --pepti-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-accent: #2563eb;
  --pepti-border: #dbeafe;
  --pepti-highlight-bg: #eff6ff;
  --pepti-highlight-border: #dbeafe;
  --pepti-highlight-text: #2563eb;
  --pepti-image-bg: #eff6ff;
}
html[data-gender="women"] .pc-sl-features {
  --pepti-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-accent: #ec4899;
  --pepti-border: #f9a8d4;
  --pepti-highlight-bg: #fdf2f8;
  --pepti-highlight-border: #f9a8d4;
  --pepti-highlight-text: #ec4899;
  --pepti-image-bg: #fdf2f8;
}
.pc-sl-features__image img[data-show] { display: none; }
html:not([data-gender]) .pc-sl-features__image img[data-show="neutral"],
html[data-gender=""] .pc-sl-features__image img[data-show="neutral"],
html[data-gender="neutral"] .pc-sl-features__image img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-sl-features__image img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-sl-features__image img[data-show="women"] { display: block; }
.pc-sl-features__container { max-width: 1200px; margin: 0 auto; }
.pc-sl-features__heading {
  font-size: 42px; font-weight: 700; color: var(--pepti-heading);
  text-align: center; margin-bottom: 60px;
}
.pc-sl-features__row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center; margin-bottom: 60px;
}
.pc-sl-features__row:last-child { margin-bottom: 0; }
.pc-sl-features__row--reverse { direction: rtl; }
.pc-sl-features__row--reverse > * { direction: ltr; }
.pc-sl-features__image {
  border: 2px solid var(--pepti-border); border-radius: 16px;
  overflow: hidden; min-height: 250px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pepti-image-bg);
}
.pc-sl-features__image img { width: 100%; height: auto; object-fit: cover; }
.pc-sl-features__content h3 {
  font-size: 28px; font-weight: 700; color: var(--pepti-heading);
  margin-bottom: 16px; line-height: 1.3;
}
.pc-sl-features__content p {
  font-size: 16px; color: var(--pepti-body);
  line-height: 1.7; margin-bottom: 20px;
}
.pc-sl-features__highlight {
  background: var(--pepti-highlight-bg);
  border-left: 4px solid var(--pepti-highlight-border);
  padding: 16px 20px; border-radius: 0 10px 10px 0;
}
.pc-sl-features__highlight strong {
  color: var(--pepti-highlight-text); font-weight: 600; font-size: 15px;
}
@media (max-width: 1024px) {
  .pc-sl-features { padding: 60px 30px; }
  .pc-sl-features__heading { font-size: 36px; margin-bottom: 50px; }
  .pc-sl-features__row { gap: 40px; margin-bottom: 50px; }
  .pc-sl-features__content h3 { font-size: 24px; }
}
@media (max-width: 768px) {
  .pc-sl-features { padding: 50px 20px; }
  .pc-sl-features__heading { font-size: 28px; margin-bottom: 40px; }
  .pc-sl-features__row, .pc-sl-features__row--reverse {
    grid-template-columns: 1fr; direction: ltr;
    margin-bottom: 40px; gap: 25px;
  }
  .pc-sl-features__image { min-height: 200px; border-radius: 14px; }
  .pc-sl-features__content h3 { font-size: 22px; margin-bottom: 12px; }
  .pc-sl-features__content p { font-size: 15px; margin-bottom: 16px; }
  .pc-sl-features__highlight { padding: 14px 16px; }
  .pc-sl-features__highlight strong { font-size: 14px; }
}
@media (max-width: 480px) {
  .pc-sl-features { padding: 40px 16px; }
  .pc-sl-features__heading { font-size: 24px; margin-bottom: 30px; }
  .pc-sl-features__row { gap: 20px; margin-bottom: 35px; }
  .pc-sl-features__image { min-height: 180px; }
  .pc-sl-features__content h3 { font-size: 20px; }
  .pc-sl-features__content p { font-size: 14px; }
}

/* ── WHY CHOOSE PEPTI CLINIC ── */
.pc-sl-why {
  --pepti-section-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-subheading: #475569;
  --pepti-number-color: #7c3aed;
  --pepti-card-heading: #1e293b;
  --pepti-card-body: #475569;
  --pepti-card-shadow: rgba(124, 58, 237, 0.08);
  --pepti-card-hover-shadow: rgba(124, 58, 237, 0.18);
  padding: 80px 40px;
  background: var(--pepti-section-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sl-why {
  --pepti-section-bg: linear-gradient(135deg, #C6D9F7, #dbeafe);
  --pepti-heading: #2B4A6F;
  --pepti-subheading: #47627B;
  --pepti-number-color: #2563eb;
  --pepti-card-heading: #2B4A6F;
  --pepti-card-body: #47627B;
  --pepti-card-shadow: rgba(54, 157, 211, 0.1);
  --pepti-card-hover-shadow: rgba(54, 157, 211, 0.2);
}
html[data-gender="women"] .pc-sl-why {
  --pepti-section-bg: linear-gradient(135deg, #fce7f3, #FADDE8);
  --pepti-heading: #4a2b6f;
  --pepti-subheading: #714b7e;
  --pepti-number-color: #ec4899;
  --pepti-card-heading: #4a2b6f;
  --pepti-card-body: #714b7e;
  --pepti-card-shadow: rgba(207, 45, 172, 0.1);
  --pepti-card-hover-shadow: rgba(207, 45, 172, 0.2);
}
.pc-sl-why [data-show] { display: none; }
html:not([data-gender]) .pc-sl-why [data-show="neutral"],
html[data-gender=""] .pc-sl-why [data-show="neutral"],
html[data-gender="neutral"] .pc-sl-why [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-sl-why [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-sl-why [data-show="women"] { display: inline; }
.pc-sl-why__container { max-width: 1200px; margin: 0 auto; }
.pc-sl-why__header { text-align: center; margin-bottom: 60px; }
.pc-sl-why__header h2 {
  font-size: 42px; font-weight: 700; color: var(--pepti-heading);
  margin-bottom: 14px; line-height: 1.2;
}
.pc-sl-why__header p {
  font-size: 20px; color: var(--pepti-subheading); font-weight: 500;
}
.pc-sl-why__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pc-sl-why__card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 40px 32px; border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px var(--pepti-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-sl-why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px var(--pepti-card-hover-shadow);
}
.pc-sl-why__number {
  font-size: 44px; font-weight: 700; color: var(--pepti-number-color);
  display: block; margin-bottom: 16px; line-height: 1;
}
.pc-sl-why__card h3 {
  font-size: 24px; font-weight: 700; color: var(--pepti-card-heading);
  margin-bottom: 16px; line-height: 1.3;
}
.pc-sl-why__card p {
  font-size: 16px; line-height: 1.7; color: var(--pepti-card-body); margin: 0;
}
@media (max-width: 1024px) {
  .pc-sl-why { padding: 60px 30px; }
  .pc-sl-why__header { margin-bottom: 50px; }
  .pc-sl-why__header h2 { font-size: 36px; }
  .pc-sl-why__header p { font-size: 18px; }
  .pc-sl-why__cards { gap: 28px; }
  .pc-sl-why__card { padding: 35px 28px; }
  .pc-sl-why__number { font-size: 40px; }
  .pc-sl-why__card h3 { font-size: 22px; }
  .pc-sl-why__card p { font-size: 15px; }
}
@media (max-width: 768px) {
  .pc-sl-why { padding: 50px 20px; }
  .pc-sl-why__header { margin-bottom: 40px; }
  .pc-sl-why__header h2 { font-size: 28px; }
  .pc-sl-why__header p { font-size: 16px; }
  .pc-sl-why__cards { grid-template-columns: 1fr; gap: 24px; }
  .pc-sl-why__card { padding: 32px 26px; border-radius: 20px; }
  .pc-sl-why__number { font-size: 38px; margin-bottom: 14px; }
  .pc-sl-why__card h3 { font-size: 20px; margin-bottom: 14px; }
  .pc-sl-why__card p { font-size: 15px; line-height: 1.6; }
}
@media (max-width: 480px) {
  .pc-sl-why { padding: 40px 16px; }
  .pc-sl-why__header h2 { font-size: 24px; }
  .pc-sl-why__header p { font-size: 15px; }
  .pc-sl-why__cards { gap: 20px; }
  .pc-sl-why__card { padding: 28px 22px; }
  .pc-sl-why__number { font-size: 34px; }
  .pc-sl-why__card h3 { font-size: 19px; }
  .pc-sl-why__card p { font-size: 14px; }
}

/* ── JOURNEY ── */
.pc-sl-journey {
  --pepti-section-bg: transparent;
  --pepti-heading: #1e293b;
  --pepti-step-heading: #1e293b;
  --pepti-body: #475569;
  --pepti-accent: #7c3aed;
  --pepti-accent-light: #a78bfa;
  --pepti-icon-shadow: rgba(124, 58, 237, 0.3);
  --pepti-line-gradient: linear-gradient(180deg, #7c3aed, #a78bfa);
  padding: 80px 40px;
  background: var(--pepti-section-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sl-journey {
  --pepti-heading: #2B4A6F;
  --pepti-step-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-accent: #2563eb;
  --pepti-accent-light: #60a5fa;
  --pepti-icon-shadow: rgba(54, 157, 211, 0.3);
  --pepti-line-gradient: linear-gradient(180deg, #2563eb, #60a5fa);
}
html[data-gender="women"] .pc-sl-journey {
  --pepti-section-bg: #fce7f3;
  --pepti-heading: #4a2b6f;
  --pepti-step-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-accent: #ec4899;
  --pepti-accent-light: #f9a8d4;
  --pepti-icon-shadow: rgba(207, 45, 172, 0.3);
  --pepti-line-gradient: linear-gradient(180deg, #ec4899, #f9a8d4);
}
.pc-sl-journey [data-show] { display: none; }
html:not([data-gender]) .pc-sl-journey [data-show="neutral"],
html[data-gender=""] .pc-sl-journey [data-show="neutral"],
html[data-gender="neutral"] .pc-sl-journey [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-sl-journey [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-sl-journey [data-show="women"] { display: inline; }
.pc-sl-journey__container { max-width: 900px; margin: 0 auto; }
.pc-sl-journey__heading {
  font-size: 42px; font-weight: 700; color: var(--pepti-heading);
  text-align: center; margin-bottom: 60px; line-height: 1.2;
}
.pc-sl-journey__timeline { display: flex; flex-direction: column; gap: 40px; }
.pc-sl-journey__step {
  display: flex; gap: 25px; align-items: flex-start; position: relative;
}
.pc-sl-journey__step:not(:last-child)::after {
  content: ''; position: absolute; left: 27px; top: 65px;
  width: 3px; height: calc(100% + 30px);
  background: var(--pepti-line-gradient);
}
.pc-sl-journey__icon {
  width: 55px; height: 55px; background: var(--pepti-accent);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 14px var(--pepti-icon-shadow);
  border: 3px solid #ffffff; position: relative; z-index: 1;
}
.pc-sl-journey__icon span { color: #ffffff; font-size: 24px; font-weight: 700; }
.pc-sl-journey__content { flex: 1; padding-top: 5px; }
.pc-sl-journey__content h3 {
  font-size: 22px; font-weight: 700; color: var(--pepti-step-heading);
  margin-bottom: 10px; line-height: 1.3;
}
.pc-sl-journey__content p {
  font-size: 16px; color: var(--pepti-body); line-height: 1.6; margin: 0;
}
@media (max-width: 1024px) {
  .pc-sl-journey { padding: 60px 30px; }
  .pc-sl-journey__heading { font-size: 36px; margin-bottom: 50px; }
  .pc-sl-journey__timeline { gap: 35px; }
  .pc-sl-journey__step:not(:last-child)::after { height: calc(100% + 25px); }
  .pc-sl-journey__icon { width: 50px; height: 50px; }
  .pc-sl-journey__icon span { font-size: 22px; }
  .pc-sl-journey__content h3 { font-size: 20px; }
  .pc-sl-journey__content p { font-size: 15px; }
}
@media (max-width: 768px) {
  .pc-sl-journey { padding: 50px 20px; }
  .pc-sl-journey__heading { font-size: 28px; margin-bottom: 40px; }
  .pc-sl-journey__timeline { gap: 30px; }
  .pc-sl-journey__step { gap: 18px; }
  .pc-sl-journey__step:not(:last-child)::after { left: 23px; top: 55px; height: calc(100% + 20px); }
  .pc-sl-journey__icon { width: 46px; height: 46px; }
  .pc-sl-journey__icon span { font-size: 20px; }
  .pc-sl-journey__content h3 { font-size: 18px; margin-bottom: 8px; }
  .pc-sl-journey__content p { font-size: 14px; line-height: 1.5; }
}
@media (max-width: 480px) {
  .pc-sl-journey { padding: 40px 16px; }
  .pc-sl-journey__heading { font-size: 24px; margin-bottom: 35px; }
  .pc-sl-journey__timeline { gap: 25px; }
  .pc-sl-journey__step { gap: 15px; }
  .pc-sl-journey__step:not(:last-child)::after { left: 21px; top: 50px; height: calc(100% + 15px); }
  .pc-sl-journey__icon { width: 42px; height: 42px; }
  .pc-sl-journey__icon span { font-size: 18px; }
  .pc-sl-journey__content h3 { font-size: 17px; }
  .pc-sl-journey__content p { font-size: 13px; }
}

/* ── FAQ ── */
.pc-sl-faq {
  --pepti-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-question-text: #1e293b;
  --pepti-question-hover-bg: #ffffff;
  --pepti-icon: #7c3aed;
  --pepti-icon-active: #6d28d9;
  --pepti-answer-text: #475569;
  --pepti-border: #e2e8f0;
  --pepti-border-hover: #7c3aed;
  --pepti-shadow-active: rgba(124, 58, 237, 0.15);
  padding: 80px 40px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sl-faq {
  --pepti-bg: #eff6ff;
  --pepti-heading: #2B4A6F;
  --pepti-question-text: #2B4A6F;
  --pepti-question-hover-bg: #ffffff;
  --pepti-icon: #2563eb;
  --pepti-icon-active: #1d4ed8;
  --pepti-answer-text: #47627B;
  --pepti-border: #dbeafe;
  --pepti-border-hover: #2563eb;
  --pepti-shadow-active: rgba(54, 157, 211, 0.15);
}
html[data-gender="women"] .pc-sl-faq {
  --pepti-bg: #fdf2f8;
  --pepti-heading: #4a2b6f;
  --pepti-question-text: #4a2b6f;
  --pepti-question-hover-bg: #ffffff;
  --pepti-icon: #ec4899;
  --pepti-icon-active: #db2777;
  --pepti-answer-text: #714b7e;
  --pepti-border: #f9a8d4;
  --pepti-border-hover: #ec4899;
  --pepti-shadow-active: rgba(207, 45, 172, 0.15);
}
.pc-sl-faq [data-show] { display: none; }
html:not([data-gender]) .pc-sl-faq [data-show="neutral"],
html[data-gender=""] .pc-sl-faq [data-show="neutral"],
html[data-gender="neutral"] .pc-sl-faq [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-sl-faq [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-sl-faq [data-show="women"] { display: inline; }
.pc-sl-faq__container { max-width: 900px; margin: 0 auto; }
.pc-sl-faq__heading {
  font-size: 42px; font-weight: 700; color: var(--pepti-heading);
  text-align: center; margin-bottom: 50px;
}
.pc-sl-faq__accordion { display: flex; flex-direction: column; gap: 16px; }
.pc-sl-faq__item {
  background: #ffffff; border: 2px solid var(--pepti-border);
  border-radius: 12px; overflow: hidden; transition: all 0.3s ease;
}
.pc-sl-faq__item:hover { border-color: var(--pepti-border-hover); }
.pc-sl-faq__item.active {
  border-color: var(--pepti-icon);
  box-shadow: 0 4px 16px var(--pepti-shadow-active);
}
.pc-sl-faq__question {
  width: 100%; background: none !important; border: none;
  padding: 22px 25px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; font-size: 18px;
  font-weight: 600; color: var(--pepti-question-text);
  text-align: left; transition: all 0.3s ease; font-family: inherit;
}
.pc-sl-faq__question:hover {
  background: var(--pepti-question-hover-bg) !important;
  color: var(--pepti-question-text) !important;
}
.pc-sl-faq__question:hover span {
  color: var(--pepti-question-text) !important;
}
.pc-sl-faq__question:hover .pc-sl-faq__icon {
  color: var(--pepti-icon) !important;
}
.pc-sl-faq__item.active .pc-sl-faq__question {
  background: var(--pepti-question-hover-bg) !important;
  color: var(--pepti-question-text) !important;
}
.pc-sl-faq__question:focus { outline: none; }
.pc-sl-faq__icon {
  font-size: 28px; color: var(--pepti-icon); font-weight: 300;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1; flex-shrink: 0; padding-left: 20px;
}
.pc-sl-faq__item.active .pc-sl-faq__icon {
  transform: rotate(45deg);
  color: var(--pepti-icon-active);
}
.pc-sl-faq__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  background: transparent !important;
}
.pc-sl-faq__item.active .pc-sl-faq__answer { max-height: 600px; }
.pc-sl-faq__answer p {
  padding: 0 25px 25px 25px; font-size: 16px;
  color: var(--pepti-answer-text); line-height: 1.7; margin: 0;
}
@media (max-width: 1024px) {
  .pc-sl-faq { padding: 60px 30px; }
  .pc-sl-faq__heading { font-size: 36px; margin-bottom: 40px; }
  .pc-sl-faq__accordion { gap: 14px; }
  .pc-sl-faq__question { padding: 20px 22px; font-size: 17px; }
  .pc-sl-faq__icon { font-size: 24px; }
  .pc-sl-faq__answer p { padding: 0 22px 22px 22px; font-size: 15px; }
}
@media (max-width: 768px) {
  .pc-sl-faq { padding: 50px 20px; }
  .pc-sl-faq__heading { font-size: 28px; margin-bottom: 30px; }
  .pc-sl-faq__accordion { gap: 12px; }
  .pc-sl-faq__question { font-size: 16px; padding: 18px 20px; }
  .pc-sl-faq__icon { font-size: 22px; padding-left: 15px; }
  .pc-sl-faq__answer p { font-size: 14px; padding: 0 20px 20px 20px; line-height: 1.6; }
}
@media (max-width: 480px) {
  .pc-sl-faq { padding: 40px 16px; }
  .pc-sl-faq__heading { font-size: 24px; margin-bottom: 24px; }
  .pc-sl-faq__accordion { gap: 10px; }
  .pc-sl-faq__question { font-size: 15px; padding: 16px 18px; }
  .pc-sl-faq__icon { font-size: 20px; padding-left: 12px; }
  .pc-sl-faq__answer p { font-size: 13px; padding: 0 18px 18px 18px; }
}

/* ── CTA ── */
.pc-sl-cta {
  --pepti-bg: #5b21b6;
  --pepti-heading: #ffffff;
  --pepti-body: #e2e8f0;
  --pepti-btn-primary-bg: #ffffff;
  --pepti-btn-primary-text: #5b21b6;
  --pepti-btn-primary-hover-bg: #7c3aed;
  --pepti-btn-primary-hover-text: #ffffff;
  --pepti-btn-hover-shadow: rgba(124, 58, 237, 0.4);
  --pepti-disclaimer: rgba(255, 255, 255, 0.7);
  padding: 100px 40px;
  background: var(--pepti-bg);
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sl-cta {
  --pepti-bg: linear-gradient(135deg, #2B4A6F, #47627B);
  --pepti-body: #D6E5F0;
  --pepti-btn-primary-text: #2B4A6F;
  --pepti-btn-primary-hover-bg: #2563eb;
  --pepti-btn-hover-shadow: rgba(54, 157, 211, 0.4);
}
html[data-gender="women"] .pc-sl-cta {
  --pepti-bg: #4a2b6f;
  --pepti-body: #fce7f3;
  --pepti-btn-primary-text: #4a2b6f;
  --pepti-btn-primary-hover-bg: #f9a8d4;
  --pepti-btn-primary-hover-text: #4a2b6f;
  --pepti-btn-hover-shadow: rgba(0, 0, 0, 0.3);
}
.pc-sl-cta__container { max-width: 800px; margin: 0 auto; }
.pc-sl-cta__content { margin-bottom: 45px; }
.pc-sl-cta__content h2 {
  font-size: 42px; font-weight: 700; color: var(--pepti-heading);
  margin-bottom: 20px; line-height: 1.2;
}
.pc-sl-cta__content p {
  font-size: 20px; color: var(--pepti-body); line-height: 1.6; margin: 0;
}
.pc-sl-cta__buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.pc-sl-cta__btn {
  padding: 18px 44px; font-size: 18px; font-weight: 600;
  border-radius: 50px; text-decoration: none !important;
  transition: all 0.3s ease; display: inline-block; cursor: pointer;
}
.pc-sl-cta__btn--primary,
.pc-sl-cta__btn--primary:link,
.pc-sl-cta__btn--primary:visited {
  background: var(--pepti-btn-primary-bg) !important;
  color: var(--pepti-btn-primary-text) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); border: none !important;
}
.pc-sl-cta__btn--primary:hover {
  background: var(--pepti-btn-primary-hover-bg) !important;
  color: var(--pepti-btn-primary-hover-text) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--pepti-btn-hover-shadow);
}
.pc-sl-cta__btn--secondary,
.pc-sl-cta__btn--secondary:link,
.pc-sl-cta__btn--secondary:visited {
  background: transparent !important; color: #ffffff !important;
  border: 2px solid #ffffff !important;
}
.pc-sl-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-3px);
}
.pc-sl-cta__disclaimer {
  margin-top: 30px; font-size: 13px; color: var(--pepti-disclaimer);
  line-height: 1.6; font-style: italic; max-width: 700px;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 1024px) {
  .pc-sl-cta { padding: 80px 30px; }
  .pc-sl-cta__content h2 { font-size: 36px; }
  .pc-sl-cta__content p { font-size: 18px; }
  .pc-sl-cta__btn { padding: 16px 40px; font-size: 17px; }
  .pc-sl-cta__disclaimer { font-size: 12px; }
}
@media (max-width: 768px) {
  .pc-sl-cta { padding: 60px 20px; }
  .pc-sl-cta__content { margin-bottom: 35px; }
  .pc-sl-cta__content h2 { font-size: 28px; margin-bottom: 16px; }
  .pc-sl-cta__content p { font-size: 16px; }
  .pc-sl-cta__buttons { flex-direction: column; gap: 16px; align-items: center; }
  .pc-sl-cta__btn { width: 100%; max-width: 320px; padding: 16px 36px; font-size: 16px; }
  .pc-sl-cta__disclaimer { margin-top: 25px; font-size: 12px; padding: 0 10px; }
}
@media (max-width: 480px) {
  .pc-sl-cta { padding: 50px 16px; }
  .pc-sl-cta__content h2 { font-size: 24px; }
  .pc-sl-cta__content p { font-size: 15px; }
  .pc-sl-cta__btn { padding: 14px 32px; font-size: 15px; }
  .pc-sl-cta__disclaimer { margin-top: 20px; font-size: 11px; }
}

/* =====================================================
   SECTION: MUSCLE BUILDING SERVICE PAGE
   ===================================================== */

/* ── HERO ── */
.pc-mb-hero {
    --pepti-hero-btn-primary: #7c3aed;
    --pepti-hero-btn-primary-hover: #6d28d9;
    --pepti-hero-btn-shadow: rgba(124, 58, 237, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(124, 58, 237, 0.65);
    --pepti-hero-btn-secondary: rgba(255, 255, 255, 0.78);
    --pepti-hero-btn-secondary-hover: #ffffff;
    --pepti-hero-btn-secondary-text: #000000;
    --pepti-hero-btn-secondary-shadow: rgba(0, 0, 0, 0.5);
    --pepti-hero-btn-secondary-shadow-hover: rgba(124, 58, 237, 0.65);
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
html[data-gender="men"] .pc-mb-hero {
    --pepti-hero-btn-primary: #60a5fa;
    --pepti-hero-btn-primary-hover: #93c5fd;
    --pepti-hero-btn-shadow: rgba(62, 189, 246, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(62, 189, 246, 0.65);
    --pepti-hero-btn-secondary-shadow-hover: rgba(62, 189, 246, 0.65);
}
html[data-gender="women"] .pc-mb-hero {
    --pepti-hero-btn-primary: #f9a8d4;
    --pepti-hero-btn-primary-hover: #ec4899;
    --pepti-hero-btn-shadow: rgba(244, 177, 229, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(244, 177, 229, 0.85);
    --pepti-hero-btn-secondary-shadow-hover: rgba(244, 177, 229, 0.85);
}
.pc-mb-hero__bg { position: absolute; inset: 0; z-index: 0; -webkit-transform: translateZ(0); transform: translateZ(0); will-change: auto; }
.pc-mb-hero__bg-img { position: absolute; inset: 0; display: none; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.pc-mb-hero__bg-img[data-show="neutral"] { background-color: #c9b8e8; background-image: url('/uploads/2025/11/Performance-1.png'); background-size: cover; background-position: center top; background-repeat: no-repeat; }
.pc-mb-hero__bg-img[data-show="men"] { background-color: #1a3a4a; background-image: url('/uploads/2025/11/Muscle-Builfing-1.png'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.pc-mb-hero__bg-img[data-show="women"] { background-color: #e8c0d0; background-image: url('/uploads/2025/11/Performance.png'); background-size: cover; background-position: center; background-repeat: no-repeat; }
html:not([data-gender]) .pc-mb-hero__bg-img[data-show="neutral"],
html[data-gender=""] .pc-mb-hero__bg-img[data-show="neutral"],
html[data-gender="neutral"] .pc-mb-hero__bg-img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-mb-hero__bg-img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-mb-hero__bg-img[data-show="women"] { display: block; }
.pc-mb-hero [data-show] { display: none; }
html:not([data-gender]) .pc-mb-hero [data-show="neutral"],
html[data-gender=""] .pc-mb-hero [data-show="neutral"],
html[data-gender="neutral"] .pc-mb-hero [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-mb-hero [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-mb-hero [data-show="women"] { display: inline; }
.pc-mb-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%); z-index: 1; pointer-events: none; }
.pc-mb-hero__container { position: relative; z-index: 2; max-width: 1400px; width: 100%; margin: 0 auto; padding: 80px 40px; }
.pc-mb-hero__content { max-width: 600px; }
.pc-mb-hero__title { font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: #ffffff; line-height: 1.15; margin: 0 0 24px 0; text-shadow: 0 2px 4px rgba(0,0,0,0.15); }
.pc-mb-hero__subtitle { font-size: clamp(16px, 2vw, 20px); color: #ffffff; line-height: 1.7; margin: 0 0 36px 0; text-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.pc-mb-hero__buttons { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.pc-mb-hero__btn { display: inline-flex; align-items: center; justify-content: center; min-width: 220px; padding: 16px 40px; border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none !important; transition: all 0.3s ease; cursor: pointer; border: none; line-height: 1.4; text-align: center; box-sizing: border-box; }
.pc-mb-hero__btn--primary, .pc-mb-hero__btn--primary:link, .pc-mb-hero__btn--primary:visited { background: var(--pepti-hero-btn-primary) !important; color: #ffffff !important; box-shadow: 0 4px 15px var(--pepti-hero-btn-shadow); }
.pc-mb-hero__btn--primary:hover, .pc-mb-hero__btn--primary:focus, .pc-mb-hero__btn--primary:active { background: var(--pepti-hero-btn-primary-hover) !important; color: #ffffff !important; transform: translateY(-2px); box-shadow: 0 6px 20px var(--pepti-hero-btn-shadow-hover); text-decoration: none !important; }
.pc-mb-hero__btn--secondary, .pc-mb-hero__btn--secondary:link, .pc-mb-hero__btn--secondary:visited { background: var(--pepti-hero-btn-secondary) !important; color: var(--pepti-hero-btn-secondary-text) !important; box-shadow: 0 4px 15px var(--pepti-hero-btn-secondary-shadow); }
.pc-mb-hero__btn--secondary:hover, .pc-mb-hero__btn--secondary:focus, .pc-mb-hero__btn--secondary:active { transform: translateY(-2px); background: var(--pepti-hero-btn-secondary-hover) !important; color: var(--pepti-hero-btn-secondary-text) !important; box-shadow: 0 6px 20px var(--pepti-hero-btn-secondary-shadow-hover); text-decoration: none !important; }
@media (max-width: 1024px) { .pc-mb-hero { min-height: 600px; } .pc-mb-hero__container { padding: 60px 30px; } }
@media (max-width: 768px) {
    .pc-mb-hero { min-height: 650px; align-items: flex-start; }
    .pc-mb-hero__container { padding: 50px 20px; }
    .pc-mb-hero__content { max-width: 100%; }
    .pc-mb-hero__bg-img[data-show="neutral"] { background-position: 65% top; background-size: auto 100%; }
    .pc-mb-hero__bg-img[data-show="men"] { background-position: 60% top; background-size: auto 100%; }
    .pc-mb-hero__bg-img[data-show="women"] { background-position: 55% top; background-size: auto 100%; }
    .pc-mb-hero__buttons { flex-direction: column; align-items: stretch; }
    .pc-mb-hero__btn { width: 100%; min-width: unset; }
}
@media (max-width: 480px) {
    .pc-mb-hero { min-height: 600px; }
    .pc-mb-hero__container { padding: 100px 16px; }
    .pc-mb-hero__title { margin-bottom: 20px; }
    .pc-mb-hero__subtitle { margin-bottom: 28px; }
    .pc-mb-hero__btn { padding: 14px 32px; font-size: 15px; }
    .pc-mb-hero__bg-img[data-show="neutral"], .pc-mb-hero__bg-img[data-show="men"], .pc-mb-hero__bg-img[data-show="women"] { background-position: 70% top; }
}
@supports (-webkit-touch-callout: none) {
    .pc-mb-hero { -webkit-overflow-scrolling: touch; }
    .pc-mb-hero__bg, .pc-mb-hero__bg-img { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}

/* ── SPLIT / CALCULATOR ── */
.pc-mb-split {
  --pepti-section-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-body: #475569;
  --pepti-accent: #7c3aed;
  --pepti-accent-light: #a78bfa;
  --pepti-accent-gradient: linear-gradient(135deg, #7c3aed, #a78bfa);
  --pepti-border: #e2e8f0;
  --pepti-stat-bg: rgba(255, 255, 255, 0.8);
  --pepti-stat-shadow: rgba(0, 0, 0, 0.06);
  --pepti-calc-bg: #ffffff;
  --pepti-calc-border: #e2e8f0;
  --pepti-calc-shadow: rgba(0, 0, 0, 0.08);
  --pepti-slider-track: #e2e8f0;
  --pepti-result-bg: #f8fafc;
  --pepti-result-border: #e2e8f0;
  --pepti-btn-bg: linear-gradient(135deg, #7c3aed, #a78bfa);
  --pepti-btn-hover: linear-gradient(135deg, #a78bfa, #7c3aed);
  --pepti-btn-shadow: rgba(124, 58, 237, 0.3);
  --pepti-btn-hover-shadow: rgba(124, 58, 237, 0.4);
  --pepti-calc-btn-bg: #7c3aed;
  --pepti-calc-btn-hover: #6d28d9;
  --pepti-calc-btn-shadow: rgba(124, 58, 237, 0.35);
  --pepti-gain-prefix: #7c3aed;
  --pepti-gain-number: #1e293b;
  padding: 60px 40px 80px;
  background: var(--pepti-section-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-mb-split {
  --pepti-section-bg: #bfdbfe; --pepti-heading: #2B4A6F; --pepti-body: #47627B;
  --pepti-accent: #2563eb; --pepti-accent-light: #60a5fa;
  --pepti-accent-gradient: linear-gradient(135deg, #2563eb, #60a5fa);
  --pepti-border: #dbeafe; --pepti-stat-bg: rgba(255, 255, 255, 0.8);
  --pepti-stat-shadow: rgba(54, 157, 211, 0.08); --pepti-calc-bg: #ffffff;
  --pepti-calc-border: #dbeafe; --pepti-calc-shadow: rgba(54, 157, 211, 0.12);
  --pepti-slider-track: #d4eaf5; --pepti-result-bg: #eff6ff;
  --pepti-result-border: #dbeafe;
  --pepti-btn-bg: linear-gradient(135deg, #2563eb, #60a5fa);
  --pepti-btn-hover: linear-gradient(135deg, #60a5fa, #2563eb);
  --pepti-btn-shadow: rgba(54, 157, 211, 0.3); --pepti-btn-hover-shadow: rgba(54, 157, 211, 0.4);
  --pepti-calc-btn-bg: #2563eb; --pepti-calc-btn-hover: #60a5fa;
  --pepti-calc-btn-shadow: rgba(54, 157, 211, 0.35);
  --pepti-gain-prefix: #2563eb; --pepti-gain-number: #2B4A6F;
}
html[data-gender="women"] .pc-mb-split {
  --pepti-section-bg: #f5c6d6; --pepti-heading: #4a2b6f; --pepti-body: #714b7e;
  --pepti-accent: #ec4899; --pepti-accent-light: #f9a8d4;
  --pepti-accent-gradient: linear-gradient(135deg, #ec4899, #f9a8d4);
  --pepti-border: #f4d1eb; --pepti-stat-bg: rgba(255, 255, 255, 0.8);
  --pepti-stat-shadow: rgba(207, 45, 172, 0.08); --pepti-calc-bg: #ffffff;
  --pepti-calc-border: #f4d1eb; --pepti-calc-shadow: rgba(207, 45, 172, 0.12);
  --pepti-slider-track: #fce8f3; --pepti-result-bg: #fdf2f8;
  --pepti-result-border: #f9a8d4;
  --pepti-btn-bg: linear-gradient(135deg, #ec4899, #f9a8d4);
  --pepti-btn-hover: linear-gradient(135deg, #f9a8d4, #ec4899);
  --pepti-btn-shadow: rgba(207, 45, 172, 0.3); --pepti-btn-hover-shadow: rgba(207, 45, 172, 0.4);
  --pepti-calc-btn-bg: #f9a8d4; --pepti-calc-btn-hover: #ec4899;
  --pepti-calc-btn-shadow: rgba(244, 177, 229, 0.35);
  --pepti-gain-prefix: #ec4899; --pepti-gain-number: #4a2b6f;
}
.pc-mb-split img[data-show] { display: none; }
html:not([data-gender]) .pc-mb-split img[data-show="neutral"],
html[data-gender=""] .pc-mb-split img[data-show="neutral"],
html[data-gender="neutral"] .pc-mb-split img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-mb-split img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-mb-split img[data-show="women"] { display: block; }
.pc-mb-split__container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pc-mb-split__left { max-width: 600px; }
.pc-mb-split__title { font-size: 48px; font-weight: 700; color: var(--pepti-heading); margin-bottom: 40px; line-height: 1.2; }
.pc-mb-split__stats { display: flex; flex-direction: column; gap: 24px; margin-bottom: 50px; }
.pc-mb-split__stat { display: flex; align-items: flex-start; gap: 16px; background: var(--pepti-stat-bg); padding: 20px 24px; border-radius: 12px; border: 1px solid var(--pepti-border); box-shadow: 0 4px 12px var(--pepti-stat-shadow); backdrop-filter: blur(10px); }
.pc-mb-split__check-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--pepti-accent-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 8px var(--pepti-btn-shadow); }
.pc-mb-split__stat p { margin: 0; font-size: 20px; line-height: 1.5; color: var(--pepti-heading); padding-top: 8px; }
.pc-mb-split__stat strong { font-weight: 700; }
.pc-mb-split__divider { height: 2px; background: linear-gradient(90deg, transparent, var(--pepti-border), transparent); margin-bottom: 40px; }
.pc-mb-split__cta-row { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.pc-mb-split__btn { padding: 18px 40px; background: var(--pepti-btn-bg) !important; color: #ffffff !important; font-size: 18px; font-weight: 600; border-radius: 50px; text-decoration: none !important; box-shadow: 0 6px 20px var(--pepti-btn-shadow); transition: transform 0.3s, box-shadow 0.3s, background 0.3s; display: inline-block; border: none; }
.pc-mb-split__btn:link, .pc-mb-split__btn:visited { background: var(--pepti-btn-bg) !important; color: #ffffff !important; }
.pc-mb-split__btn:hover, .pc-mb-split__btn:focus, .pc-mb-split__btn:active { background: var(--pepti-btn-hover) !important; color: #ffffff !important; transform: translateY(-2px); box-shadow: 0 8px 24px var(--pepti-btn-hover-shadow); text-decoration: none !important; }
.pc-mb-split__contact { display: flex; flex-direction: column; gap: 4px; }
.pc-mb-split__contact-label { font-size: 14px; color: var(--pepti-body); }
.pc-mb-split__phone { font-size: 22px; font-weight: 700; color: var(--pepti-accent) !important; text-decoration: none !important; transition: color 0.3s; }
.pc-mb-split__phone:link, .pc-mb-split__phone:visited { color: var(--pepti-accent) !important; }
.pc-mb-split__phone:hover, .pc-mb-split__phone:focus { color: var(--pepti-accent-light) !important; text-decoration: none !important; }
.pc-mb-split__right { display: flex; justify-content: center; }
.pc-mb-split__calculator { width: 100%; max-width: 520px; padding: 40px; background: var(--pepti-calc-bg); border: 2px solid var(--pepti-calc-border); border-radius: 20px; box-shadow: 0 12px 40px var(--pepti-calc-shadow); display: grid; grid-template-columns: 180px 1fr; gap: 30px; align-items: start; }
.pc-mb-split__calc-image { display: flex; justify-content: center; align-items: center; }
.pc-mb-split__calc-image img { width: 100%; max-width: 160px; height: auto; }
.pc-mb-split__calc-heading { font-size: 20px; font-weight: 600; color: var(--pepti-heading); margin: 0 0 20px 0; }
.pc-mb-split__weight-display { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.pc-mb-split__weight-number { font-size: 38px; font-weight: 700; color: var(--pepti-accent); }
.pc-mb-split__weight-unit { font-size: 28px; font-weight: 600; color: var(--pepti-body); }
.pc-mb-split__slider { width: 100%; height: 8px; border-radius: 10px; background: var(--pepti-slider-track); outline: none; margin: 10px 0 30px 0; -webkit-appearance: none; appearance: none; }
.pc-mb-split__slider::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--pepti-accent); border: 3px solid #ffffff; box-shadow: 0 2px 8px var(--pepti-btn-shadow); cursor: pointer; }
.pc-mb-split__slider::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--pepti-accent); border: 3px solid #ffffff; box-shadow: 0 2px 8px var(--pepti-btn-shadow); cursor: pointer; }
.pc-mb-split__result-text { background: var(--pepti-result-bg); border: 1px solid var(--pepti-result-border); color: #000000; padding: 14px 18px; border-radius: 12px; font-size: 15px; margin-bottom: 24px; }
.pc-mb-split__result-text strong { color: var(--pepti-accent); font-weight: 600; }
.pc-mb-split__gain-display { display: flex; align-items: baseline; gap: 4px; }
.pc-mb-split__gain-prefix { font-size: 48px; font-weight: 700; color: var(--pepti-gain-prefix); line-height: 1; }
.pc-mb-split__gain-number { font-size: 64px; font-weight: 800; color: var(--pepti-gain-number); line-height: 1; }
.pc-mb-split__gain-unit { font-size: 32px; font-weight: 600; color: var(--pepti-body); }
.pc-mb-split__gain-label { font-size: 14px; color: var(--pepti-body); margin-top: 8px; font-weight: 500; }
.pc-mb-split__calc-footer { grid-column: 1 / -1; text-align: center; margin-top: 20px; }
.pc-mb-split__calc-btn { width: 100%; padding: 20px 28px; font-size: 18px; font-weight: 700; color: #ffffff !important; background: var(--pepti-calc-btn-bg) !important; border: none; border-radius: 14px; cursor: pointer; box-shadow: 0 10px 30px var(--pepti-calc-btn-shadow); transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease; font-family: inherit; }
.pc-mb-split__calc-btn:hover, .pc-mb-split__calc-btn:focus { transform: translateY(-2px); background: var(--pepti-calc-btn-hover) !important; box-shadow: 0 14px 40px var(--pepti-btn-hover-shadow); }
.pc-mb-split__disclaimer { font-size: 13px; color: var(--pepti-body); line-height: 1.6; margin: 22px auto 0; }
@media (max-width: 1200px) { .pc-mb-split__container { gap: 40px; } .pc-mb-split__title { font-size: 40px; } .pc-mb-split__calculator { grid-template-columns: 140px 1fr; padding: 30px; gap: 20px; } }
@media (max-width: 1024px) { .pc-mb-split { padding: 50px 30px 70px; } .pc-mb-split__container { grid-template-columns: 1fr; gap: 50px; } .pc-mb-split__left { max-width: 100%; text-align: center; } .pc-mb-split__title { font-size: 36px; } .pc-mb-split__stat { text-align: left; } .pc-mb-split__cta-row { justify-content: center; } .pc-mb-split__calculator { max-width: 600px; margin: 0 auto; } }
@media (max-width: 768px) { .pc-mb-split { padding: 40px 20px 60px; } .pc-mb-split__title { font-size: 32px; margin-bottom: 30px; } .pc-mb-split__stat { padding: 16px 20px; } .pc-mb-split__stat p { font-size: 17px; } .pc-mb-split__check-icon { width: 36px; height: 36px; } .pc-mb-split__cta-row { flex-direction: column; align-items: center; gap: 20px; } .pc-mb-split__btn { width: 100%; max-width: 300px; text-align: center; } .pc-mb-split__contact { align-items: center; } .pc-mb-split__calculator { grid-template-columns: 120px 1fr; padding: 25px 20px; gap: 16px; } .pc-mb-split__calc-image img { max-width: 110px; } .pc-mb-split__calc-heading { font-size: 16px; } .pc-mb-split__weight-number { font-size: 32px; } .pc-mb-split__gain-prefix { font-size: 36px; } .pc-mb-split__gain-number { font-size: 48px; } }
@media (max-width: 480px) { .pc-mb-split { padding: 30px 16px 50px; } .pc-mb-split__title { font-size: 28px; } .pc-mb-split__calculator { grid-template-columns: 100px 1fr; padding: 20px 16px; gap: 12px; } .pc-mb-split__calc-image img { max-width: 90px; } .pc-mb-split__calc-heading { font-size: 14px; } .pc-mb-split__weight-number { font-size: 28px; } .pc-mb-split__weight-unit { font-size: 20px; } .pc-mb-split__gain-prefix { font-size: 30px; } .pc-mb-split__gain-number { font-size: 40px; } .pc-mb-split__gain-unit { font-size: 24px; } .pc-mb-split__calc-btn { font-size: 16px; padding: 16px 20px; } .pc-mb-split__disclaimer { font-size: 11px; } }

/* ── FEATURES ── */
.pc-mb-features {
  --pepti-bg: #ffffff; --pepti-heading: #1e1b4b; --pepti-body: #4c4866;
  --pepti-border: #c4b5fd; --pepti-highlight-bg: #f8f9fc; --pepti-accent: #7c3aed;
  padding: 80px 20px; background: var(--pepti-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-mb-features { --pepti-heading: #2B4A6F; --pepti-body: #47627B; --pepti-border: #dbeafe; --pepti-highlight-bg: #eff6ff; --pepti-accent: #2563eb; }
html[data-gender="women"] .pc-mb-features { --pepti-heading: #4a2b6f; --pepti-body: #714b7e; --pepti-border: #f9a8d4; --pepti-highlight-bg: #fdf2f8; --pepti-accent: #ec4899; }
.pc-mb-features [data-show] { display: none; }
html:not([data-gender]) .pc-mb-features [data-show="neutral"],
html[data-gender=""] .pc-mb-features [data-show="neutral"],
html[data-gender="neutral"] .pc-mb-features [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-mb-features [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-mb-features [data-show="women"] { display: inline; }
.pc-mb-features img[data-show] { display: none; }
html:not([data-gender]) .pc-mb-features img[data-show="neutral"],
html[data-gender=""] .pc-mb-features img[data-show="neutral"],
html[data-gender="neutral"] .pc-mb-features img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-mb-features img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-mb-features img[data-show="women"] { display: block; }
.pc-mb-features__container { max-width: 1200px; margin: 0 auto; }
.pc-mb-features__heading { font-size: 36px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 60px; }
.pc-mb-features__row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.pc-mb-features__row:last-child { margin-bottom: 0; }
.pc-mb-features__row--reverse { direction: rtl; }
.pc-mb-features__row--reverse > * { direction: ltr; }
.pc-mb-features__image { border: 2px solid var(--pepti-border); border-radius: 16px; overflow: hidden; text-align: center; min-height: 250px; display: flex; align-items: center; justify-content: center; background: var(--pepti-highlight-bg); }
.pc-mb-features__image img { width: 100%; height: auto; object-fit: cover; }
.pc-mb-features__content h3 { font-size: 28px; font-weight: 700; color: var(--pepti-heading); margin-bottom: 16px; line-height: 1.3; }
.pc-mb-features__content p { font-size: 16px; color: var(--pepti-body); line-height: 1.7; margin-bottom: 20px; }
.pc-mb-features__highlight { background: var(--pepti-highlight-bg); border-left: 4px solid var(--pepti-border); padding: 16px 20px; border-radius: 0 10px 10px 0; }
.pc-mb-features__highlight strong { color: var(--pepti-accent); font-weight: 600; font-size: 15px; }
@media (max-width: 1024px) { .pc-mb-features { padding: 60px 20px; } .pc-mb-features__heading { font-size: 32px; margin-bottom: 50px; } .pc-mb-features__row { gap: 40px; margin-bottom: 50px; } .pc-mb-features__content h3 { font-size: 24px; } }
@media (max-width: 768px) { .pc-mb-features { padding: 50px 16px; } .pc-mb-features__heading { font-size: 26px; margin-bottom: 40px; } .pc-mb-features__row, .pc-mb-features__row--reverse { grid-template-columns: 1fr; direction: ltr; margin-bottom: 40px; gap: 25px; } .pc-mb-features__image { min-height: 200px; border-radius: 14px; } .pc-mb-features__content h3 { font-size: 22px; margin-bottom: 12px; } .pc-mb-features__content p { font-size: 15px; margin-bottom: 16px; } .pc-mb-features__highlight { padding: 14px 16px; } .pc-mb-features__highlight strong { font-size: 14px; } }
@media (max-width: 480px) { .pc-mb-features { padding: 40px 14px; } .pc-mb-features__heading { font-size: 22px; margin-bottom: 30px; } .pc-mb-features__row { gap: 20px; margin-bottom: 35px; } .pc-mb-features__image { min-height: 180px; } .pc-mb-features__content h3 { font-size: 20px; } .pc-mb-features__content p { font-size: 14px; } .pc-mb-features__highlight { padding: 12px 14px; } .pc-mb-features__highlight strong { font-size: 13px; } }

/* ── BENEFITS GRID ── */
.pc-mb-benefits {
  --pepti-heading: #1e1b4b; --pepti-card-heading: #1e1b4b; --pepti-card-body: #4c4866;
  --pepti-border: #c4b5fd; --pepti-border-hover: #7c3aed; --pepti-shadow: rgba(124, 58, 237, 0.12);
  padding: 80px 20px; background: #ffffff; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-mb-benefits { --pepti-heading: #2B4A6F; --pepti-card-heading: #2B4A6F; --pepti-card-body: #47627B; --pepti-border: #dbeafe; --pepti-border-hover: #60a5fa; --pepti-shadow: rgba(54, 157, 211, 0.15); }
html[data-gender="women"] .pc-mb-benefits { --pepti-heading: #4a2b6f; --pepti-card-heading: #4a2b6f; --pepti-card-body: #714b7e; --pepti-border: #f9a8d4; --pepti-border-hover: #ec4899; --pepti-shadow: rgba(207, 45, 172, 0.15); }
.pc-mb-benefits [data-show] { display: none; }
html:not([data-gender]) .pc-mb-benefits [data-show="neutral"],
html[data-gender=""] .pc-mb-benefits [data-show="neutral"],
html[data-gender="neutral"] .pc-mb-benefits [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-mb-benefits [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-mb-benefits [data-show="women"] { display: inline; }
.pc-mb-benefits__container { max-width: 1200px; margin: 0 auto; }
.pc-mb-benefits__heading { font-size: 36px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 50px; line-height: 1.2; }
.pc-mb-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.pc-mb-benefits__card { background: #ffffff; padding: 30px 25px; border-radius: 15px; border: 2px solid var(--pepti-border); text-align: center; transition: all 0.3s ease; }
.pc-mb-benefits__card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px var(--pepti-shadow); border-color: var(--pepti-border-hover); }
.pc-mb-benefits__card h3 { font-size: 19px; font-weight: 700; color: var(--pepti-card-heading); margin-bottom: 12px; line-height: 1.3; }
.pc-mb-benefits__card p { font-size: 15px; color: var(--pepti-card-body); line-height: 1.6; margin: 0; }
@media (max-width: 1024px) { .pc-mb-benefits { padding: 60px 20px; } .pc-mb-benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .pc-mb-benefits__heading { font-size: 32px; margin-bottom: 40px; } }
@media (max-width: 768px) { .pc-mb-benefits { padding: 50px 16px; } .pc-mb-benefits__heading { font-size: 26px; margin-bottom: 30px; } .pc-mb-benefits__grid { grid-template-columns: 1fr; gap: 16px; } .pc-mb-benefits__card { padding: 24px 20px; } .pc-mb-benefits__card h3 { font-size: 17px; margin-bottom: 10px; } .pc-mb-benefits__card p { font-size: 14px; line-height: 1.5; } }
@media (max-width: 480px) { .pc-mb-benefits { padding: 40px 14px; } .pc-mb-benefits__heading { font-size: 22px; margin-bottom: 24px; } .pc-mb-benefits__grid { gap: 14px; } .pc-mb-benefits__card { padding: 20px 16px; } .pc-mb-benefits__card h3 { font-size: 16px; } .pc-mb-benefits__card p { font-size: 13px; } }

/* ── JOURNEY ── */
.pc-mb-journey {
  --pepti-bg: #ffffff; --pepti-heading: #1e1b4b; --pepti-step-heading: #1e1b4b;
  --pepti-step-body: #4c4866; --pepti-icon-bg: #7c3aed;
  --pepti-icon-shadow: rgba(124, 58, 237, 0.3);
  --pepti-line-gradient: linear-gradient(180deg, #7c3aed, #a78bfa);
  padding: 80px 20px; background: var(--pepti-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-mb-journey { --pepti-bg: #ffffff; --pepti-heading: #2B4A6F; --pepti-step-heading: #2B4A6F; --pepti-step-body: #47627B; --pepti-icon-bg: #2563eb; --pepti-icon-shadow: rgba(54, 157, 211, 0.3); --pepti-line-gradient: linear-gradient(180deg, #2563eb, #60a5fa); }
html[data-gender="women"] .pc-mb-journey { --pepti-bg: #fdf2f8; --pepti-heading: #4a2b6f; --pepti-step-heading: #4a2b6f; --pepti-step-body: #714b7e; --pepti-icon-bg: #ec4899; --pepti-icon-shadow: rgba(207, 45, 172, 0.3); --pepti-line-gradient: linear-gradient(180deg, #ec4899, #f9a8d4); }
.pc-mb-journey [data-show] { display: none; }
html:not([data-gender]) .pc-mb-journey [data-show="neutral"],
html[data-gender=""] .pc-mb-journey [data-show="neutral"],
html[data-gender="neutral"] .pc-mb-journey [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-mb-journey [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-mb-journey [data-show="women"] { display: inline; }
.pc-mb-journey__container { max-width: 900px; margin: 0 auto; }
.pc-mb-journey__heading { font-size: 38px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 60px; line-height: 1.2; }
.pc-mb-journey__timeline { display: flex; flex-direction: column; gap: 40px; }
.pc-mb-journey__step { display: flex; gap: 25px; align-items: flex-start; position: relative; }
.pc-mb-journey__step:not(:last-child)::after { content: ''; position: absolute; left: 27px; top: 65px; width: 3px; height: calc(100% + 30px); background: var(--pepti-line-gradient); }
.pc-mb-journey__icon { width: 55px; height: 55px; background: var(--pepti-icon-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 14px var(--pepti-icon-shadow); border: 3px solid #ffffff; position: relative; z-index: 1; }
.pc-mb-journey__icon span { color: #ffffff; font-size: 24px; font-weight: 700; }
.pc-mb-journey__content { flex: 1; padding-top: 5px; }
.pc-mb-journey__content h3 { font-size: 22px; font-weight: 700; color: var(--pepti-step-heading); margin-bottom: 10px; line-height: 1.3; }
.pc-mb-journey__content p { font-size: 16px; color: var(--pepti-step-body); line-height: 1.6; margin: 0; }
@media (max-width: 1024px) { .pc-mb-journey { padding: 60px 20px; } .pc-mb-journey__heading { font-size: 32px; margin-bottom: 50px; } .pc-mb-journey__timeline { gap: 35px; } .pc-mb-journey__step:not(:last-child)::after { height: calc(100% + 25px); } .pc-mb-journey__icon { width: 50px; height: 50px; } .pc-mb-journey__icon span { font-size: 22px; } .pc-mb-journey__content h3 { font-size: 20px; } .pc-mb-journey__content p { font-size: 15px; } }
@media (max-width: 768px) { .pc-mb-journey { padding: 50px 16px; } .pc-mb-journey__heading { font-size: 26px; margin-bottom: 40px; } .pc-mb-journey__timeline { gap: 30px; } .pc-mb-journey__step { gap: 18px; } .pc-mb-journey__step:not(:last-child)::after { left: 23px; top: 55px; height: calc(100% + 20px); } .pc-mb-journey__icon { width: 46px; height: 46px; } .pc-mb-journey__icon span { font-size: 20px; } .pc-mb-journey__content h3 { font-size: 18px; margin-bottom: 8px; } .pc-mb-journey__content p { font-size: 14px; line-height: 1.5; } }
@media (max-width: 480px) { .pc-mb-journey { padding: 40px 14px; } .pc-mb-journey__heading { font-size: 22px; margin-bottom: 35px; } .pc-mb-journey__timeline { gap: 25px; } .pc-mb-journey__step { gap: 15px; } .pc-mb-journey__step:not(:last-child)::after { left: 21px; top: 50px; height: calc(100% + 15px); } .pc-mb-journey__icon { width: 42px; height: 42px; } .pc-mb-journey__icon span { font-size: 18px; } .pc-mb-journey__content h3 { font-size: 17px; } .pc-mb-journey__content p { font-size: 13px; } }

/* ── FAQ ── */
.pc-mb-faq {
  --pepti-bg: #f8f9fc; --pepti-heading: #1e1b4b; --pepti-question-bg: #ffffff;
  --pepti-question-text: #1e1b4b; --pepti-question-hover: #f3f0ff;
  --pepti-question-active: #7c3aed; --pepti-answer-text: #4c4866;
  --pepti-border: #c4b5fd; --pepti-icon: #7c3aed;
  padding: 80px 20px; background: var(--pepti-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-mb-faq { --pepti-bg: #eff6ff; --pepti-heading: #2B4A6F; --pepti-question-text: #2B4A6F; --pepti-question-hover: #dbeef5; --pepti-question-active: #2563eb; --pepti-answer-text: #47627B; --pepti-border: #dbeafe; --pepti-icon: #2563eb; }
html[data-gender="women"] .pc-mb-faq { --pepti-bg: #fdf2f8; --pepti-heading: #4a2b6f; --pepti-question-text: #4a2b6f; --pepti-question-hover: #fce7f3; --pepti-question-active: #ec4899; --pepti-answer-text: #714b7e; --pepti-border: #f9a8d4; --pepti-icon: #ec4899; }
.pc-mb-faq__container { max-width: 900px; margin: 0 auto; }
.pc-mb-faq__heading { font-size: 36px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 50px; }
.pc-mb-faq__accordion { display: flex; flex-direction: column; gap: 16px; }
.pc-mb-faq__item { border-radius: 12px; overflow: hidden; border: 1px solid var(--pepti-border); background: var(--pepti-question-bg); }
.pc-mb-faq__question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; font-size: 17px; font-weight: 600; text-align: left; cursor: pointer; transition: background 0.3s ease; border: none; outline: none; }
.pc-mb-faq__question, .pc-mb-faq__question:link, .pc-mb-faq__question:visited { background: var(--pepti-question-bg) !important; color: var(--pepti-question-text) !important; }
.pc-mb-faq__question:hover { background: var(--pepti-question-hover) !important; color: var(--pepti-question-text) !important; }
.pc-mb-faq__question:focus { background: var(--pepti-question-bg) !important; color: var(--pepti-question-text) !important; outline: 2px solid var(--pepti-icon); outline-offset: -2px; }
.pc-mb-faq__item.active .pc-mb-faq__question, .pc-mb-faq__item.active .pc-mb-faq__question:hover, .pc-mb-faq__item.active .pc-mb-faq__question:focus { background: var(--pepti-question-active) !important; color: #ffffff !important; }
.pc-mb-faq__item.active .pc-mb-faq__icon { color: #ffffff !important; transform: rotate(45deg); }
.pc-mb-faq__icon { font-size: 24px; font-weight: 400; color: var(--pepti-icon); transition: transform 0.3s ease, color 0.3s ease; flex-shrink: 0; margin-left: 16px; }
.pc-mb-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.pc-mb-faq__item.active .pc-mb-faq__answer { max-height: 500px; }
.pc-mb-faq__answer p { padding: 0 24px 24px; margin: 0; font-size: 15px; line-height: 1.7; color: var(--pepti-answer-text); }
@media (max-width: 768px) { .pc-mb-faq { padding: 50px 16px; } .pc-mb-faq__heading { font-size: 26px; margin-bottom: 35px; } .pc-mb-faq__question { padding: 16px 20px; font-size: 15px; } .pc-mb-faq__answer p { padding: 0 20px 20px; font-size: 14px; } .pc-mb-faq__icon { font-size: 22px; } }
@media (max-width: 480px) { .pc-mb-faq { padding: 40px 14px; } .pc-mb-faq__heading { font-size: 22px; margin-bottom: 28px; } .pc-mb-faq__accordion { gap: 12px; } .pc-mb-faq__question { padding: 14px 16px; font-size: 14px; } .pc-mb-faq__answer p { padding: 0 16px 16px; font-size: 13px; } .pc-mb-faq__icon { font-size: 20px; margin-left: 12px; } }

/* ── CTA ── */
.pc-mb-cta {
  --pepti-bg: #5b21b6; --pepti-heading: #ffffff; --pepti-text: #e2e8f0;
  --pepti-disclaimer: rgba(255,255,255,0.7);
  --pepti-btn-primary-bg: #ffffff; --pepti-btn-primary-text: #5b21b6;
  --pepti-btn-primary-hover-bg: #7c3aed; --pepti-btn-primary-hover-text: #ffffff;
  --pepti-btn-secondary-border: #ffffff; --pepti-btn-secondary-text: #ffffff;
  --pepti-btn-secondary-hover-bg: rgba(255,255,255,0.15);
  --pepti-btn-shadow: rgba(0,0,0,0.2); --pepti-btn-hover-shadow: rgba(124,58,237,0.4);
  padding: 80px 20px; background: var(--pepti-bg); text-align: center; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-mb-cta { --pepti-bg: linear-gradient(135deg, #2B4A6F, #47627B); --pepti-text: #D6E5F0; --pepti-btn-primary-text: #2B4A6F; --pepti-btn-primary-hover-bg: #2563eb; --pepti-btn-hover-shadow: rgba(54,157,211,0.4); }
html[data-gender="women"] .pc-mb-cta { --pepti-bg: #4a2b6f; --pepti-text: #fce7f3; --pepti-btn-primary-text: #4a2b6f; --pepti-btn-primary-hover-bg: #f9a8d4; --pepti-btn-primary-hover-text: #4a2b6f; --pepti-btn-hover-shadow: rgba(0,0,0,0.3); }
.pc-mb-cta [data-show] { display: none; }
html:not([data-gender]) .pc-mb-cta [data-show="neutral"],
html[data-gender=""] .pc-mb-cta [data-show="neutral"],
html[data-gender="neutral"] .pc-mb-cta [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-mb-cta [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-mb-cta [data-show="women"] { display: inline; }
.pc-mb-cta__container { max-width: 800px; margin: 0 auto; }
.pc-mb-cta__title { font-size: 38px; font-weight: 700; color: var(--pepti-heading); margin-bottom: 20px; line-height: 1.25; }
.pc-mb-cta__desc { font-size: 18px; color: var(--pepti-text); line-height: 1.7; margin-bottom: 35px; }
.pc-mb-cta__buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.pc-mb-cta__btn { padding: 18px 45px; font-size: 18px; font-weight: 600; border-radius: 50px; text-decoration: none !important; transition: all 0.3s ease; display: inline-block; cursor: pointer; }
.pc-mb-cta__btn--primary, .pc-mb-cta__btn--primary:link, .pc-mb-cta__btn--primary:visited { background: var(--pepti-btn-primary-bg) !important; color: var(--pepti-btn-primary-text) !important; border: none !important; box-shadow: 0 8px 24px var(--pepti-btn-shadow); }
.pc-mb-cta__btn--primary:hover, .pc-mb-cta__btn--primary:focus, .pc-mb-cta__btn--primary:active { background: var(--pepti-btn-primary-hover-bg) !important; color: var(--pepti-btn-primary-hover-text) !important; transform: translateY(-3px); box-shadow: 0 12px 32px var(--pepti-btn-hover-shadow); text-decoration: none !important; }
.pc-mb-cta__btn--secondary, .pc-mb-cta__btn--secondary:link, .pc-mb-cta__btn--secondary:visited { background: transparent !important; color: var(--pepti-btn-secondary-text) !important; border: 2px solid var(--pepti-btn-secondary-border) !important; }
.pc-mb-cta__btn--secondary:hover, .pc-mb-cta__btn--secondary:focus, .pc-mb-cta__btn--secondary:active { background: var(--pepti-btn-secondary-hover-bg) !important; color: var(--pepti-btn-secondary-text) !important; transform: translateY(-3px); text-decoration: none !important; }
.pc-mb-cta__disclaimer { font-size: 13px; color: var(--pepti-disclaimer); line-height: 1.6; font-style: italic; max-width: 700px; margin: 0 auto; }
@media (max-width: 1024px) { .pc-mb-cta { padding: 70px 20px; } .pc-mb-cta__title { font-size: 32px; } .pc-mb-cta__desc { font-size: 17px; margin-bottom: 30px; } .pc-mb-cta__btn { font-size: 17px; padding: 16px 40px; } }
@media (max-width: 768px) { .pc-mb-cta { padding: 60px 16px; } .pc-mb-cta__title { font-size: 28px; margin-bottom: 16px; } .pc-mb-cta__desc { font-size: 16px; margin-bottom: 28px; line-height: 1.5; } .pc-mb-cta__buttons { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 30px; } .pc-mb-cta__btn { width: 100%; max-width: 320px; text-align: center; padding: 15px 35px; font-size: 16px; } .pc-mb-cta__disclaimer { font-size: 12px; padding: 0 10px; } }
@media (max-width: 480px) { .pc-mb-cta { padding: 50px 14px; } .pc-mb-cta__title { font-size: 24px; } .pc-mb-cta__desc { font-size: 15px; margin-bottom: 25px; } .pc-mb-cta__btn { padding: 14px 30px; font-size: 15px; } .pc-mb-cta__disclaimer { font-size: 11px; } }


/* ═══════════════════════════════════════════════════════
   SECTION: MOOD & MENTAL WELLNESS
   Prefix: pc-mood- (uses pc-mo- for hero, pc-mc- for other sections)
   Source: rendered-mood.html
   ═══════════════════════════════════════════════════════ */

/* ── MOOD HERO ── */

.pc-mo-hero {
    --pepti-hero-btn-primary: #7c3aed;
    --pepti-hero-btn-primary-hover: #6d28d9;
    --pepti-hero-btn-shadow: rgba(124, 58, 237, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(124, 58, 237, 0.65);
    --pepti-hero-btn-secondary: rgba(255, 255, 255, 0.78);
    --pepti-hero-btn-secondary-hover: #ffffff;
    --pepti-hero-btn-secondary-text: #000000;
    --pepti-hero-btn-secondary-shadow: rgba(0, 0, 0, 0.5);
    --pepti-hero-btn-secondary-shadow-hover: rgba(124, 58, 237, 0.65);

    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

html[data-gender="men"] .pc-mo-hero {
    --pepti-hero-btn-primary: #60a5fa;
    --pepti-hero-btn-primary-hover: #93c5fd;
    --pepti-hero-btn-shadow: rgba(62, 189, 246, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(62, 189, 246, 0.65);
    --pepti-hero-btn-secondary-shadow-hover: rgba(62, 189, 246, 0.65);
}

html[data-gender="women"] .pc-mo-hero {
    --pepti-hero-btn-primary: #f9a8d4;
    --pepti-hero-btn-primary-hover: #ec4899;
    --pepti-hero-btn-shadow: rgba(244, 177, 229, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(244, 177, 229, 0.85);
    --pepti-hero-btn-secondary-shadow-hover: rgba(244, 177, 229, 0.85);
}

.pc-mo-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: auto;
}

.pc-mo-hero__bg-img {
    position: absolute;
    inset: 0;
    display: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pc-mo-hero__bg-img[data-show="neutral"] {
    background-color: #e2e8f0;
    background-image: url('/uploads/2025/11/5.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.pc-mo-hero__bg-img[data-show="men"] {
    background-color: #bfdbfe;
    background-image: url('/uploads/2025/11/5-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pc-mo-hero__bg-img[data-show="women"] {
    background-color: #f5c6d6;
    background-image: url('/uploads/2025/11/5.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

html:not([data-gender]) .pc-mo-hero__bg-img[data-show="neutral"],
html[data-gender=""] .pc-mo-hero__bg-img[data-show="neutral"],
html[data-gender="neutral"] .pc-mo-hero__bg-img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-mo-hero__bg-img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-mo-hero__bg-img[data-show="women"] { display: block; }

.pc-mo-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.pc-mo-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}

.pc-mo-hero__content { max-width: 600px; }

.pc-mo-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 24px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.pc-mo-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #ffffff;
    line-height: 1.7;
    margin: 0 0 36px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pc-mo-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.pc-mo-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.pc-mo-hero__btn--primary,
.pc-mo-hero__btn--primary:link,
.pc-mo-hero__btn--primary:visited {
    background: var(--pepti-hero-btn-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px var(--pepti-hero-btn-shadow);
}

.pc-mo-hero__btn--primary:hover,
.pc-mo-hero__btn--primary:focus,
.pc-mo-hero__btn--primary:active {
    background: var(--pepti-hero-btn-primary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--pepti-hero-btn-shadow-hover);
    text-decoration: none !important;
}

.pc-mo-hero__btn--secondary,
.pc-mo-hero__btn--secondary:link,
.pc-mo-hero__btn--secondary:visited {
    background: var(--pepti-hero-btn-secondary) !important;
    color: var(--pepti-hero-btn-secondary-text) !important;
    box-shadow: 0 4px 15px var(--pepti-hero-btn-secondary-shadow);
}

.pc-mo-hero__btn--secondary:hover,
.pc-mo-hero__btn--secondary:focus,
.pc-mo-hero__btn--secondary:active {
    background: var(--pepti-hero-btn-secondary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--pepti-hero-btn-secondary-shadow-hover);
    text-decoration: none !important;
}

@media (max-width: 1024px) {
    .pc-mo-hero { min-height: 600px; }
    .pc-mo-hero__container { padding: 60px 30px; }
}

@media (max-width: 768px) {
    .pc-mo-hero { min-height: 650px; align-items: flex-start; }
    .pc-mo-hero__container { padding: 50px 20px; }
    .pc-mo-hero__content { max-width: 100%; }
    .pc-mo-hero__buttons { flex-direction: column; align-items: stretch; }
    .pc-mo-hero__btn { width: 100%; min-width: unset; }
}

@media (max-width: 480px) {
    .pc-mo-hero { min-height: 600px; }
    .pc-mo-hero__container { padding: 100px 16px; }
    .pc-mo-hero__btn { padding: 14px 32px; font-size: 15px; }
}

@supports (-webkit-touch-callout: none) {
    .pc-mo-hero { -webkit-overflow-scrolling: touch; }
    .pc-mo-hero__bg, .pc-mo-hero__bg-img {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* ── MOOD INFO SECTION ── */

.pc-mc-info {
  --pepti-heading: #1e293b;
  --pepti-body: #475569;
  --pepti-accent: #7c3aed;
  --pepti-accent-hover: #6d28d9;
  --pepti-accent-light: #a78bfa;
  --pepti-accent-gradient: linear-gradient(135deg, #7c3aed, #a78bfa);
  --pepti-border: #e2e8f0;
  --pepti-point-bg: rgba(255, 255, 255, 0.8);
  --pepti-point-shadow: rgba(0, 0, 0, 0.06);
  --pepti-btn-shadow: rgba(0, 0, 0, 0.15);
  --pepti-box-bg: #ffffff;
  --pepti-service-bg: #f8fafc;

  padding: 60px 40px;
  background: transparent;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-mc-info {
  --pepti-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-accent: #2563eb;
  --pepti-accent-hover: #1d4ed8;
  --pepti-accent-light: #7fc8ed;
  --pepti-accent-gradient: linear-gradient(135deg, #2563eb, #60a5fa);
  --pepti-border: #dbeafe;
  --pepti-service-bg: #eff6ff;
}

html[data-gender="women"] .pc-mc-info {
  --pepti-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-accent: #ec4899;
  --pepti-accent-hover: #db2777;
  --pepti-accent-light: #f9a8d4;
  --pepti-accent-gradient: linear-gradient(135deg, #ec4899, #f9a8d4);
  --pepti-border: #f9a8d4;
  --pepti-service-bg: #fdf2f8;
}

.pc-mc-info__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pc-mc-info__left { max-width: 600px; }

.pc-mc-info__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 40px;
  line-height: 1.2;
}

.pc-mc-info__points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.pc-mc-info__point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--pepti-point-bg);
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid var(--pepti-border);
  box-shadow: 0 4px 12px var(--pepti-point-shadow);
  backdrop-filter: blur(10px);
}

.pc-mc-info__check-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--pepti-accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px var(--pepti-btn-shadow);
}

.pc-mc-info__point p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--pepti-heading);
  padding-top: 6px;
}

.pc-mc-info__point strong { color: var(--pepti-heading); font-weight: 700; }

.pc-mc-info__divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pepti-border), transparent);
  margin-bottom: 35px;
}

.pc-mc-info__cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.pc-mc-info__btn,
.pc-mc-info__btn:link,
.pc-mc-info__btn:visited {
  padding: 16px 36px;
  background: var(--pepti-accent) !important;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px var(--pepti-btn-shadow);
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.pc-mc-info__btn:hover,
.pc-mc-info__btn:focus {
  background: var(--pepti-accent-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--pepti-btn-shadow);
}

.pc-mc-info__contact { display: flex; flex-direction: column; gap: 2px; }
.pc-mc-info__contact-label { font-size: 13px; color: var(--pepti-body); }

.pc-mc-info__phone,
.pc-mc-info__phone:link,
.pc-mc-info__phone:visited {
  font-size: 20px;
  font-weight: 700;
  color: var(--pepti-accent) !important;
  text-decoration: none !important;
}

.pc-mc-info__phone:hover,
.pc-mc-info__phone:focus { color: var(--pepti-accent-hover) !important; text-decoration: underline !important; }

.pc-mc-info__right { display: flex; justify-content: center; }

.pc-mc-info__box {
  width: 100%;
  max-width: 520px;
  padding: 30px;
  background: var(--pepti-box-bg);
  border-radius: 20px;
  border: 1px solid var(--pepti-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pc-mc-info__box-heading {
  font-size: 22px;
  font-weight: 600;
  color: var(--pepti-heading);
  margin: 0 0 24px 0;
  text-align: center;
}

.pc-mc-info__services {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.pc-mc-info__service {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--pepti-service-bg);
  border-radius: 12px;
  border: 1px solid var(--pepti-border);
}

.pc-mc-info__service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--pepti-accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.pc-mc-info__service-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin: 0 0 4px 0;
}

.pc-mc-info__service-content p {
  font-size: 14px;
  color: var(--pepti-body);
  margin: 0;
  line-height: 1.4;
}

.pc-mc-info__box-footer { text-align: center; }

.pc-mc-info__box-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: var(--pepti-accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--pepti-btn-shadow);
  transition: all 0.3s ease;
  margin-bottom: 12px;
  font-family: inherit;
}

.pc-mc-info__box-btn:hover {
  transform: translateY(-2px);
  background: var(--pepti-accent-hover);
  box-shadow: 0 12px 32px var(--pepti-btn-shadow);
}

.pc-mc-info__disclaimer {
  font-size: 11px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .pc-mc-info__container { gap: 40px; }
  .pc-mc-info__title { font-size: 36px; }
  .pc-mc-info__box { padding: 25px; }
}

@media (max-width: 1024px) {
  .pc-mc-info { padding: 50px 30px; }
  .pc-mc-info__container { grid-template-columns: 1fr; gap: 40px; }
  .pc-mc-info__left { max-width: 100%; text-align: center; }
  .pc-mc-info__title { font-size: 32px; }
  .pc-mc-info__point { text-align: left; }
  .pc-mc-info__cta-row { justify-content: center; }
  .pc-mc-info__box { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .pc-mc-info { padding: 40px 20px; }
  .pc-mc-info__title { font-size: 28px; margin-bottom: 28px; }
  .pc-mc-info__point { padding: 14px 18px; }
  .pc-mc-info__point p { font-size: 15px; }
  .pc-mc-info__check-icon { width: 34px; height: 34px; }
  .pc-mc-info__cta-row { flex-direction: column; align-items: center; gap: 18px; }
  .pc-mc-info__btn { width: 100%; max-width: 280px; text-align: center; }
  .pc-mc-info__contact { align-items: center; }
  .pc-mc-info__box { padding: 20px; }
}

@media (max-width: 480px) {
  .pc-mc-info { padding: 30px 16px; }
  .pc-mc-info__title { font-size: 24px; }
  .pc-mc-info__point p { font-size: 14px; }
  .pc-mc-info__box { padding: 18px 14px; }
  .pc-mc-info__box-heading { font-size: 18px; }
  .pc-mc-info__service { padding: 12px; }
  .pc-mc-info__service-icon { width: 40px; height: 40px; }
  .pc-mc-info__service-content h4 { font-size: 15px; }
  .pc-mc-info__service-content p { font-size: 13px; }
  .pc-mc-info__box-btn { font-size: 15px; padding: 12px 18px; }
}

/* ── MOOD FEATURES ── */

.pc-mc-features {
  --pepti-bg: #ffffff;
  --pepti-heading: #1e293b;
  --pepti-subheading: #1e293b;
  --pepti-body: #475569;
  --pepti-border: #e2e8f0;
  --pepti-image-bg: #f8fafc;
  --pepti-highlight-bg: rgba(124, 58, 237, 0.06);
  --pepti-highlight-border: #7c3aed;
  --pepti-highlight-text: #6d28d9;

  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-mc-features {
  --pepti-heading: #2B4A6F;
  --pepti-subheading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-border: #dbeafe;
  --pepti-image-bg: #eff6ff;
  --pepti-highlight-bg: rgba(54, 157, 211, 0.08);
  --pepti-highlight-border: #2563eb;
  --pepti-highlight-text: #1d4ed8;
}

html[data-gender="women"] .pc-mc-features {
  --pepti-heading: #4a2b6f;
  --pepti-subheading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-border: #f9a8d4;
  --pepti-image-bg: #fce7f3;
  --pepti-highlight-bg: rgba(207, 45, 172, 0.08);
  --pepti-highlight-border: #ec4899;
  --pepti-highlight-text: #db2777;
}

.pc-mc-features [data-show] { display: none; }
html:not([data-gender]) .pc-mc-features [data-show="neutral"],
html[data-gender=""] .pc-mc-features [data-show="neutral"],
html[data-gender="neutral"] .pc-mc-features [data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-mc-features [data-show="men"] { display: block; }
html[data-gender="women"] .pc-mc-features [data-show="women"] { display: block; }

.pc-mc-features__heading [data-show] { display: none; }
html:not([data-gender]) .pc-mc-features__heading [data-show="neutral"],
html[data-gender=""] .pc-mc-features__heading [data-show="neutral"],
html[data-gender="neutral"] .pc-mc-features__heading [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-mc-features__heading [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-mc-features__heading [data-show="women"] { display: inline; }

.pc-mc-features__container { max-width: 1200px; margin: 0 auto; }

.pc-mc-features__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.pc-mc-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.pc-mc-features__row:last-child { margin-bottom: 0; }

.pc-mc-features__row--reverse { direction: rtl; }
.pc-mc-features__row--reverse > * { direction: ltr; }

.pc-mc-features__image {
  border: 2px solid var(--pepti-border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pepti-image-bg);
}

.pc-mc-features__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-mc-features__content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--pepti-subheading);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pc-mc-features__content p {
  font-size: 16px;
  color: var(--pepti-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pc-mc-features__highlight {
  background: var(--pepti-highlight-bg);
  border-left: 4px solid var(--pepti-highlight-border);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  color: var(--pepti-highlight-text);
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .pc-mc-features { padding: 60px 20px; }
  .pc-mc-features__heading { font-size: 32px; margin-bottom: 50px; }
  .pc-mc-features__row { gap: 40px; margin-bottom: 50px; }
  .pc-mc-features__content h3 { font-size: 24px; }
}

@media (max-width: 768px) {
  .pc-mc-features { padding: 50px 16px; }
  .pc-mc-features__heading { font-size: 26px; margin-bottom: 40px; }
  .pc-mc-features__row,
  .pc-mc-features__row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 25px;
    margin-bottom: 40px;
  }
  .pc-mc-features__image { min-height: 220px; border-radius: 12px; }
  .pc-mc-features__content h3 { font-size: 20px; margin-bottom: 12px; }
  .pc-mc-features__content p { font-size: 15px; margin-bottom: 16px; }
  .pc-mc-features__highlight { padding: 14px 16px; font-size: 14px; }
}

@media (max-width: 480px) {
  .pc-mc-features { padding: 40px 14px; }
  .pc-mc-features__heading { font-size: 22px; margin-bottom: 30px; }
  .pc-mc-features__row { gap: 20px; margin-bottom: 30px; }
  .pc-mc-features__image { min-height: 180px; }
  .pc-mc-features__content h3 { font-size: 18px; }
  .pc-mc-features__content p { font-size: 14px; }
  .pc-mc-features__highlight { padding: 12px 14px; font-size: 13px; }
}

/* ── MOOD BENEFITS GRID ── */

.pc-mc-benefits {
  --pepti-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-card-bg: #ffffff;
  --pepti-card-heading: #1e293b;
  --pepti-body: #475569;
  --pepti-border: #e2e8f0;
  --pepti-border-hover: #7c3aed;
  --pepti-shadow: rgba(0, 0, 0, 0.06);
  --pepti-shadow-hover: rgba(0, 0, 0, 0.1);

  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-mc-benefits {
  --pepti-bg: #eff6ff;
  --pepti-heading: #2B4A6F;
  --pepti-card-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-border: #dbeafe;
  --pepti-border-hover: #2563eb;
}

html[data-gender="women"] .pc-mc-benefits {
  --pepti-bg: #fdf2f8;
  --pepti-heading: #4a2b6f;
  --pepti-card-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-border: #f9a8d4;
  --pepti-border-hover: #ec4899;
}

.pc-mc-benefits__container { max-width: 1100px; margin: 0 auto; }

.pc-mc-benefits__heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

.pc-mc-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pc-mc-benefits__card {
  background: var(--pepti-card-bg);
  padding: 35px 30px;
  border-radius: 16px;
  border: 2px solid var(--pepti-border);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px var(--pepti-shadow);
}

.pc-mc-benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--pepti-shadow-hover);
  border-color: var(--pepti-border-hover);
}

.pc-mc-benefits__card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--pepti-card-heading);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pc-mc-benefits__card p {
  font-size: 15px;
  color: var(--pepti-body);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .pc-mc-benefits { padding: 70px 20px; }
  .pc-mc-benefits__heading { font-size: 34px; margin-bottom: 45px; }
  .pc-mc-benefits__grid { gap: 22px; }
  .pc-mc-benefits__card { padding: 32px 28px; }
  .pc-mc-benefits__card h3 { font-size: 19px; margin-bottom: 11px; }
  .pc-mc-benefits__card p { font-size: 14px; }
}

@media (max-width: 768px) {
  .pc-mc-benefits { padding: 60px 16px; }
  .pc-mc-benefits__heading { font-size: 28px; margin-bottom: 35px; }
  .pc-mc-benefits__grid { grid-template-columns: 1fr; gap: 20px; }
  .pc-mc-benefits__card { padding: 30px 25px; }
  .pc-mc-benefits__card h3 { font-size: 18px; margin-bottom: 10px; }
  .pc-mc-benefits__card p { font-size: 14px; line-height: 1.5; }
}

@media (max-width: 480px) {
  .pc-mc-benefits { padding: 50px 14px; }
  .pc-mc-benefits__heading { font-size: 24px; margin-bottom: 30px; }
  .pc-mc-benefits__grid { gap: 18px; }
  .pc-mc-benefits__card { padding: 28px 22px; }
  .pc-mc-benefits__card h3 { font-size: 17px; }
  .pc-mc-benefits__card p { font-size: 13px; }
}

/* ── MOOD JOURNEY ── */

.pc-mc-journey {
  --pepti-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-step-title: #1e293b;
  --pepti-step-body: #475569;
  --pepti-icon-bg: #7c3aed;
  --pepti-icon-text: #ffffff;
  --pepti-line-gradient: linear-gradient(180deg, #7c3aed, #a78bfa);
  --pepti-icon-shadow: rgba(0, 0, 0, 0.15);

  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-mc-journey {
  --pepti-bg: #dbeef5;
  --pepti-heading: #2B4A6F;
  --pepti-step-title: #2B4A6F;
  --pepti-step-body: #47627B;
  --pepti-icon-bg: #2563eb;
  --pepti-line-gradient: linear-gradient(180deg, #2563eb, #60a5fa);
}

html[data-gender="women"] .pc-mc-journey {
  --pepti-bg: #fce7f3;
  --pepti-heading: #4a2b6f;
  --pepti-step-title: #4a2b6f;
  --pepti-step-body: #714b7e;
  --pepti-icon-bg: #ec4899;
  --pepti-line-gradient: linear-gradient(180deg, #ec4899, #f9a8d4);
}

.pc-mc-journey__container { max-width: 900px; margin: 0 auto; }

.pc-mc-journey__heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.pc-mc-journey__timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pc-mc-journey__step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  position: relative;
}

.pc-mc-journey__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 65px;
  width: 3px;
  height: calc(100% + 30px);
  background: var(--pepti-line-gradient);
}

.pc-mc-journey__icon {
  width: 55px;
  height: 55px;
  background: var(--pepti-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--pepti-icon-shadow);
  border: 3px solid #ffffff;
  position: relative;
  z-index: 1;
}

.pc-mc-journey__icon span {
  color: var(--pepti-icon-text);
  font-size: 24px;
  font-weight: 700;
}

.pc-mc-journey__content { flex: 1; padding-top: 5px; }

.pc-mc-journey__content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--pepti-step-title);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pc-mc-journey__content p {
  font-size: 16px;
  color: var(--pepti-step-body);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .pc-mc-journey { padding: 60px 20px; }
  .pc-mc-journey__heading { font-size: 32px; margin-bottom: 50px; }
  .pc-mc-journey__timeline { gap: 35px; }
  .pc-mc-journey__step:not(:last-child)::after { height: calc(100% + 25px); }
  .pc-mc-journey__icon { width: 50px; height: 50px; }
  .pc-mc-journey__icon span { font-size: 22px; }
  .pc-mc-journey__content h3 { font-size: 20px; }
  .pc-mc-journey__content p { font-size: 15px; }
}

@media (max-width: 768px) {
  .pc-mc-journey { padding: 50px 16px; }
  .pc-mc-journey__heading { font-size: 26px; margin-bottom: 40px; }
  .pc-mc-journey__timeline { gap: 30px; }
  .pc-mc-journey__step { gap: 18px; }
  .pc-mc-journey__step:not(:last-child)::after { left: 22px; top: 52px; height: calc(100% + 22px); }
  .pc-mc-journey__icon { width: 45px; height: 45px; border-width: 2px; }
  .pc-mc-journey__icon span { font-size: 20px; }
  .pc-mc-journey__content h3 { font-size: 18px; margin-bottom: 8px; }
  .pc-mc-journey__content p { font-size: 14px; }
}

@media (max-width: 480px) {
  .pc-mc-journey { padding: 40px 14px; }
  .pc-mc-journey__heading { font-size: 22px; margin-bottom: 30px; }
  .pc-mc-journey__timeline { gap: 25px; }
  .pc-mc-journey__step { gap: 14px; }
  .pc-mc-journey__step:not(:last-child)::after { left: 19px; top: 48px; height: calc(100% + 18px); }
  .pc-mc-journey__icon { width: 40px; height: 40px; }
  .pc-mc-journey__icon span { font-size: 18px; }
  .pc-mc-journey__content h3 { font-size: 16px; }
  .pc-mc-journey__content p { font-size: 13px; }
}

/* ── MOOD FAQ ── */

.pc-mc-faq {
  --pepti-bg: #ffffff;
  --pepti-heading: #1e293b;
  --pepti-item-bg: #ffffff;
  --pepti-item-border: #e2e8f0;
  --pepti-item-border-hover: #7c3aed;
  --pepti-item-border-active: #7c3aed;
  --pepti-item-shadow-active: rgba(0, 0, 0, 0.08);
  --pepti-question-text: #1e293b;
  --pepti-question-text-hover: #1e293b;
  --pepti-question-bg: transparent;
  --pepti-question-bg-hover: #f8fafc;
  --pepti-icon-color: #7c3aed;
  --pepti-icon-color-hover: #6d28d9;
  --pepti-answer-text: #475569;

  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-mc-faq {
  --pepti-heading: #2B4A6F;
  --pepti-item-border: #dbeafe;
  --pepti-item-border-hover: #2563eb;
  --pepti-item-border-active: #2563eb;
  --pepti-question-text: #2B4A6F;
  --pepti-question-text-hover: #2B4A6F;
  --pepti-question-bg-hover: #eff6ff;
  --pepti-icon-color: #2563eb;
  --pepti-icon-color-hover: #1d4ed8;
  --pepti-answer-text: #47627B;
}

html[data-gender="women"] .pc-mc-faq {
  --pepti-heading: #4a2b6f;
  --pepti-item-border: #f9a8d4;
  --pepti-item-border-hover: #ec4899;
  --pepti-item-border-active: #ec4899;
  --pepti-question-text: #4a2b6f;
  --pepti-question-text-hover: #4a2b6f;
  --pepti-question-bg-hover: #fdf2f8;
  --pepti-icon-color: #ec4899;
  --pepti-icon-color-hover: #db2777;
  --pepti-answer-text: #714b7e;
}

.pc-mc-faq__container { max-width: 900px; margin: 0 auto; }

.pc-mc-faq__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 50px;
}

.pc-mc-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pc-mc-faq__item {
  background: var(--pepti-item-bg);
  border: 2px solid var(--pepti-item-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pc-mc-faq__item:hover { border-color: var(--pepti-item-border-hover); }

.pc-mc-faq__item.active {
  border-color: var(--pepti-item-border-active);
  box-shadow: 0 4px 16px var(--pepti-item-shadow-active);
}

.pc-mc-faq__question {
  width: 100%;
  background: var(--pepti-question-bg) !important;
  border: none !important;
  padding: 22px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--pepti-question-text) !important;
  text-align: left;
  transition: all 0.3s ease;
  font-family: inherit;
  gap: 16px;
  outline: none;
}

.pc-mc-faq__question:hover,
.pc-mc-faq__question:focus {
  background: var(--pepti-question-bg-hover) !important;
  color: var(--pepti-question-text-hover) !important;
}

.pc-mc-faq__question:hover span,
.pc-mc-faq__question:focus span {
  color: var(--pepti-question-text-hover) !important;
}

.pc-mc-faq__question:hover .pc-mc-faq__icon,
.pc-mc-faq__question:focus .pc-mc-faq__icon {
  color: var(--pepti-icon-color) !important;
}

.pc-mc-faq__question span:first-child { color: inherit; }

.pc-mc-faq__icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--pepti-icon-color) !important;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.pc-mc-faq__item.active .pc-mc-faq__icon {
  transform: rotate(45deg);
  color: var(--pepti-icon-color-hover) !important;
}

.pc-mc-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.pc-mc-faq__item.active .pc-mc-faq__answer { max-height: 500px; }

.pc-mc-faq__answer p {
  padding: 0 25px 25px;
  font-size: 16px;
  color: var(--pepti-answer-text) !important;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .pc-mc-faq { padding: 60px 20px; }
  .pc-mc-faq__heading { font-size: 32px; margin-bottom: 40px; }
  .pc-mc-faq__question { padding: 20px 22px; font-size: 17px; }
  .pc-mc-faq__answer p { padding: 0 22px 22px; font-size: 15px; }
}

@media (max-width: 768px) {
  .pc-mc-faq { padding: 50px 16px; }
  .pc-mc-faq__heading { font-size: 26px; margin-bottom: 30px; }
  .pc-mc-faq__accordion { gap: 12px; }
  .pc-mc-faq__question { padding: 18px 20px; font-size: 16px; gap: 12px; }
  .pc-mc-faq__icon { font-size: 24px; }
  .pc-mc-faq__answer p { padding: 0 20px 20px; font-size: 14px; line-height: 1.6; }
}

@media (max-width: 480px) {
  .pc-mc-faq { padding: 40px 14px; }
  .pc-mc-faq__heading { font-size: 22px; margin-bottom: 24px; }
  .pc-mc-faq__accordion { gap: 10px; }
  .pc-mc-faq__question { padding: 16px 18px; font-size: 15px; }
  .pc-mc-faq__icon { font-size: 22px; }
  .pc-mc-faq__answer p { padding: 0 18px 18px; font-size: 13px; }
}

/* ── MOOD WHY CHOOSE US ── */

.pc-mc-why {
  --pepti-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-subheading: #475569;
  --pepti-number: #7c3aed;
  --pepti-card-bg: rgba(255, 255, 255, 0.7);
  --pepti-card-border: rgba(255, 255, 255, 0.9);
  --pepti-card-heading: #1e293b;
  --pepti-card-body: #475569;
  --pepti-card-shadow: rgba(0, 0, 0, 0.06);
  --pepti-card-hover-shadow: rgba(0, 0, 0, 0.1);

  padding: 80px 40px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-mc-why {
  --pepti-bg: #C6D9F7;
  --pepti-heading: #2B4A6F;
  --pepti-subheading: #47627B;
  --pepti-number: #2563eb;
  --pepti-card-heading: #2B4A6F;
  --pepti-card-body: #47627B;
}

html[data-gender="women"] .pc-mc-why {
  --pepti-bg: #f7c8cc;
  --pepti-heading: #4a2b6f;
  --pepti-subheading: #714b7e;
  --pepti-number: #ec4899;
  --pepti-card-heading: #4a2b6f;
  --pepti-card-body: #714b7e;
}

.pc-mc-why [data-show] { display: none; }
html:not([data-gender]) .pc-mc-why [data-show="neutral"],
html[data-gender=""] .pc-mc-why [data-show="neutral"],
html[data-gender="neutral"] .pc-mc-why [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-mc-why [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-mc-why [data-show="women"] { display: inline; }

.pc-mc-why__container { max-width: 1200px; margin: 0 auto; }

.pc-mc-why__header { text-align: center; margin-bottom: 60px; }

.pc-mc-why__header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 14px;
  line-height: 1.2;
}

.pc-mc-why__header p {
  font-size: 20px;
  color: var(--pepti-subheading);
  font-weight: 500;
  margin: 0;
}

.pc-mc-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pc-mc-why__card {
  background: var(--pepti-card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--pepti-card-border);
  box-shadow: 0 8px 28px var(--pepti-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-mc-why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px var(--pepti-card-hover-shadow);
}

.pc-mc-why__number {
  font-size: 44px;
  font-weight: 700;
  color: var(--pepti-number);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.pc-mc-why__card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--pepti-card-heading);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pc-mc-why__card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pepti-card-body);
  margin: 0;
}

@media (max-width: 1024px) {
  .pc-mc-why { padding: 60px 30px; }
  .pc-mc-why__header { margin-bottom: 50px; }
  .pc-mc-why__header h2 { font-size: 36px; }
  .pc-mc-why__cards { gap: 24px; }
  .pc-mc-why__card { padding: 32px 26px; }
  .pc-mc-why__number { font-size: 38px; }
  .pc-mc-why__card h3 { font-size: 22px; }
}

@media (max-width: 768px) {
  .pc-mc-why { padding: 50px 20px; }
  .pc-mc-why__header { margin-bottom: 40px; }
  .pc-mc-why__header h2 { font-size: 28px; }
  .pc-mc-why__header p { font-size: 17px; }
  .pc-mc-why__cards { grid-template-columns: 1fr; gap: 20px; }
  .pc-mc-why__card { padding: 28px 24px; border-radius: 20px; }
  .pc-mc-why__number { font-size: 36px; margin-bottom: 12px; }
  .pc-mc-why__card h3 { font-size: 20px; margin-bottom: 12px; }
  .pc-mc-why__card p { font-size: 15px; line-height: 1.6; }
}

@media (max-width: 480px) {
  .pc-mc-why { padding: 40px 16px; }
  .pc-mc-why__header h2 { font-size: 24px; }
  .pc-mc-why__header p { font-size: 15px; }
  .pc-mc-why__cards { gap: 16px; }
  .pc-mc-why__card { padding: 24px 20px; border-radius: 16px; }
  .pc-mc-why__number { font-size: 32px; }
  .pc-mc-why__card h3 { font-size: 18px; }
  .pc-mc-why__card p { font-size: 14px; }
}

/* ── MOOD CTA ── */

.pc-mc-cta {
  --pepti-bg: #5b21b6;
  --pepti-heading: #ffffff;
  --pepti-body: #e2e8f0;
  --pepti-btn-primary-bg: #ffffff;
  --pepti-btn-primary-text: #5b21b6;
  --pepti-btn-primary-hover-bg: #7c3aed;
  --pepti-btn-primary-hover-text: #ffffff;
  --pepti-btn-secondary-border: #ffffff;
  --pepti-btn-secondary-text: #ffffff;
  --pepti-btn-secondary-hover-bg: rgba(255, 255, 255, 0.15);
  --pepti-btn-secondary-hover-text: #ffffff;
  --pepti-disclaimer: rgba(255, 255, 255, 0.7);
  --pepti-btn-shadow: rgba(0, 0, 0, 0.2);
  --pepti-btn-hover-shadow: rgba(124, 58, 237, 0.4);

  padding: 100px 40px;
  background: var(--pepti-bg);
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[data-gender="men"] .pc-mc-cta {
  --pepti-bg: linear-gradient(135deg, #2B4A6F, #47627B);
  --pepti-body: #D6E5F0;
  --pepti-btn-primary-text: #2B4A6F;
  --pepti-btn-primary-hover-bg: #2563eb;
  --pepti-btn-primary-hover-text: #ffffff;
  --pepti-btn-hover-shadow: rgba(54, 157, 211, 0.4);
}

html[data-gender="women"] .pc-mc-cta {
  --pepti-bg: #4a2b6f;
  --pepti-body: #fce7f3;
  --pepti-btn-primary-text: #4a2b6f;
  --pepti-btn-primary-hover-bg: #f9a8d4;
  --pepti-btn-primary-hover-text: #4a2b6f;
  --pepti-btn-hover-shadow: rgba(0, 0, 0, 0.3);
}

.pc-mc-cta [data-show] { display: none; }
html:not([data-gender]) .pc-mc-cta [data-show="neutral"],
html[data-gender=""] .pc-mc-cta [data-show="neutral"],
html[data-gender="neutral"] .pc-mc-cta [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-mc-cta [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-mc-cta [data-show="women"] { display: inline; }

.pc-mc-cta__container { max-width: 800px; margin: 0 auto; }

.pc-mc-cta__content { margin-bottom: 45px; }

.pc-mc-cta__content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 20px;
  line-height: 1.2;
}

.pc-mc-cta__content p {
  font-size: 20px;
  color: var(--pepti-body);
  line-height: 1.6;
  margin: 0;
}

.pc-mc-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pc-mc-cta__btn {
  padding: 18px 44px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.pc-mc-cta__btn--primary,
.pc-mc-cta__btn--primary:link,
.pc-mc-cta__btn--primary:visited {
  background: var(--pepti-btn-primary-bg) !important;
  color: var(--pepti-btn-primary-text) !important;
  box-shadow: 0 8px 24px var(--pepti-btn-shadow);
  border: none !important;
}

.pc-mc-cta__btn--primary:hover,
.pc-mc-cta__btn--primary:focus,
.pc-mc-cta__btn--primary:active {
  background: var(--pepti-btn-primary-hover-bg) !important;
  color: var(--pepti-btn-primary-hover-text) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--pepti-btn-hover-shadow);
  text-decoration: none !important;
}

.pc-mc-cta__btn--secondary,
.pc-mc-cta__btn--secondary:link,
.pc-mc-cta__btn--secondary:visited {
  background: transparent !important;
  color: var(--pepti-btn-secondary-text) !important;
  border: 2px solid var(--pepti-btn-secondary-border) !important;
}

.pc-mc-cta__btn--secondary:hover,
.pc-mc-cta__btn--secondary:focus,
.pc-mc-cta__btn--secondary:active {
  background: var(--pepti-btn-secondary-hover-bg) !important;
  color: var(--pepti-btn-secondary-hover-text) !important;
  transform: translateY(-3px);
  text-decoration: none !important;
}

.pc-mc-cta__disclaimer {
  margin-top: 30px;
  font-size: 13px;
  color: var(--pepti-disclaimer);
  line-height: 1.6;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .pc-mc-cta { padding: 80px 30px; }
  .pc-mc-cta__content h2 { font-size: 36px; }
  .pc-mc-cta__content p { font-size: 18px; }
  .pc-mc-cta__btn { padding: 16px 40px; font-size: 17px; }
  .pc-mc-cta__disclaimer { font-size: 12px; }
}

@media (max-width: 768px) {
  .pc-mc-cta { padding: 60px 20px; }
  .pc-mc-cta__content { margin-bottom: 35px; }
  .pc-mc-cta__content h2 { font-size: 28px; margin-bottom: 16px; }
  .pc-mc-cta__content p { font-size: 16px; }
  .pc-mc-cta__buttons { flex-direction: column; gap: 16px; align-items: center; }
  .pc-mc-cta__btn { width: 100%; max-width: 320px; padding: 16px 36px; font-size: 16px; }
  .pc-mc-cta__disclaimer { margin-top: 25px; font-size: 12px; padding: 0 10px; }
}

@media (max-width: 480px) {
  .pc-mc-cta { padding: 50px 16px; }
  .pc-mc-cta__content h2 { font-size: 24px; }
  .pc-mc-cta__content p { font-size: 15px; }
  .pc-mc-cta__btn { padding: 14px 32px; font-size: 15px; }
  .pc-mc-cta__disclaimer { margin-top: 20px; font-size: 11px; }
}


/* =====================================================
   SECTION: INJURY REPAIR
   Converted from WordPress Elementor rendered HTML
   ===================================================== */

/* ── HERO ── */
.pc-ir-hero {
    --pepti-hero-btn-primary: #7c3aed;
    --pepti-hero-btn-primary-hover: #6d28d9;
    --pepti-hero-btn-shadow: rgba(124, 58, 237, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(124, 58, 237, 0.65);
    --pepti-hero-btn-secondary: rgba(255, 255, 255, 0.78);
    --pepti-hero-btn-secondary-hover: #ffffff;
    --pepti-hero-btn-secondary-text: #000000;
    --pepti-hero-btn-secondary-shadow: rgba(0, 0, 0, 0.5);
    --pepti-hero-btn-secondary-shadow-hover: rgba(124, 58, 237, 0.65);
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
html[data-gender="men"] .pc-ir-hero {
    --pepti-hero-btn-primary: #60a5fa;
    --pepti-hero-btn-primary-hover: #93c5fd;
    --pepti-hero-btn-shadow: rgba(62, 189, 246, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(62, 189, 246, 0.65);
    --pepti-hero-btn-secondary-shadow-hover: rgba(62, 189, 246, 0.65);
}
html[data-gender="women"] .pc-ir-hero {
    --pepti-hero-btn-primary: #f9a8d4;
    --pepti-hero-btn-primary-hover: #ec4899;
    --pepti-hero-btn-shadow: rgba(244, 177, 229, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(244, 177, 229, 0.85);
    --pepti-hero-btn-secondary-shadow-hover: rgba(244, 177, 229, 0.85);
}
.pc-ir-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: auto;
}
.pc-ir-hero__bg-img {
    position: absolute;
    inset: 0;
    display: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.pc-ir-hero__bg-img[data-show="neutral"] {
    background-color: #e2e8f0;
    background-image: url('/uploads/2025/11/Injury-repair-1.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pc-ir-hero__bg-img[data-show="men"] {
    background-color: #bfdbfe;
    background-image: url('/uploads/2025/11/Injury-repair-1.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pc-ir-hero__bg-img[data-show="women"] {
    background-color: #f5c6d6;
    background-image: url('/uploads/2025/11/Injury-repair-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
html:not([data-gender]) .pc-ir-hero__bg-img[data-show="neutral"],
html[data-gender=""] .pc-ir-hero__bg-img[data-show="neutral"],
html[data-gender="neutral"] .pc-ir-hero__bg-img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-ir-hero__bg-img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-ir-hero__bg-img[data-show="women"] { display: block; }
.pc-ir-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.pc-ir-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}
.pc-ir-hero__content { max-width: 600px; }
.pc-ir-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 24px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.pc-ir-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #ffffff;
    line-height: 1.7;
    margin: 0 0 36px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.pc-ir-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.pc-ir-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.pc-ir-hero__btn--primary,
.pc-ir-hero__btn--primary:link,
.pc-ir-hero__btn--primary:visited {
    background: var(--pepti-hero-btn-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px var(--pepti-hero-btn-shadow);
}
.pc-ir-hero__btn--primary:hover,
.pc-ir-hero__btn--primary:focus,
.pc-ir-hero__btn--primary:active {
    background: var(--pepti-hero-btn-primary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--pepti-hero-btn-shadow-hover);
    text-decoration: none !important;
}
.pc-ir-hero__btn--secondary,
.pc-ir-hero__btn--secondary:link,
.pc-ir-hero__btn--secondary:visited {
    background: var(--pepti-hero-btn-secondary) !important;
    color: var(--pepti-hero-btn-secondary-text) !important;
    box-shadow: 0 4px 15px var(--pepti-hero-btn-secondary-shadow);
}
.pc-ir-hero__btn--secondary:hover,
.pc-ir-hero__btn--secondary:focus,
.pc-ir-hero__btn--secondary:active {
    background: var(--pepti-hero-btn-secondary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--pepti-hero-btn-secondary-shadow-hover);
    text-decoration: none !important;
}
@media (max-width: 1024px) {
    .pc-ir-hero { min-height: 600px; }
    .pc-ir-hero__container { padding: 60px 30px; }
}
@media (max-width: 768px) {
    .pc-ir-hero { min-height: 650px; align-items: flex-start; }
    .pc-ir-hero__container { padding: 50px 20px; }
    .pc-ir-hero__content { max-width: 100%; }
    .pc-ir-hero__buttons { flex-direction: column; align-items: stretch; }
    .pc-ir-hero__btn { width: 100%; min-width: unset; }
}
@media (max-width: 480px) {
    .pc-ir-hero { min-height: 600px; }
    .pc-ir-hero__container { padding: 100px 16px; }
    .pc-ir-hero__btn { padding: 14px 32px; font-size: 15px; }
}
@supports (-webkit-touch-callout: none) {
    .pc-ir-hero { -webkit-overflow-scrolling: touch; }
    .pc-ir-hero__bg, .pc-ir-hero__bg-img {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* ── INTRO + RECOVERY SLIDER ── */
.pc-ir-intro {
  --pepti-heading: #1e293b;
  --pepti-body: #475569;
  --pepti-accent: #7c3aed;
  --pepti-accent-hover: #6d28d9;
  --pepti-accent-gradient: linear-gradient(135deg, #7c3aed, #a78bfa);
  --pepti-border: #e2e8f0;
  --pepti-stat-bg: rgba(255, 255, 255, 0.8);
  --pepti-stat-shadow: rgba(0, 0, 0, 0.06);
  --pepti-btn-shadow: rgba(0, 0, 0, 0.15);
  --pepti-slider-bg: #f8fafc;
  --pepti-result-bg: #f8fafc;
  --pepti-result-border: #e2e8f0;
  padding: 60px 40px;
  background: transparent;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-ir-intro {
  --pepti-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-accent: #2563eb;
  --pepti-accent-hover: #1d4ed8;
  --pepti-accent-gradient: linear-gradient(135deg, #2563eb, #60a5fa);
  --pepti-border: #dbeafe;
  --pepti-result-bg: #eff6ff;
  --pepti-result-border: #dbeafe;
}
html[data-gender="women"] .pc-ir-intro {
  --pepti-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-accent: #ec4899;
  --pepti-accent-hover: #db2777;
  --pepti-accent-gradient: linear-gradient(135deg, #ec4899, #f9a8d4);
  --pepti-border: #f9a8d4;
  --pepti-result-bg: #fdf2f8;
  --pepti-result-border: #f4e0ed;
}
.pc-ir-intro__image-wrap img { display: none; }
html:not([data-gender]) .pc-ir-intro__image-wrap img[data-show="neutral"],
html[data-gender=""] .pc-ir-intro__image-wrap img[data-show="neutral"],
html[data-gender="neutral"] .pc-ir-intro__image-wrap img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-ir-intro__image-wrap img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-ir-intro__image-wrap img[data-show="women"] { display: block; }
.pc-ir-intro__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.pc-ir-intro__left { max-width: 600px; }
.pc-ir-intro__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 35px;
  line-height: 1.2;
}
.pc-ir-intro__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}
.pc-ir-intro__stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--pepti-stat-bg);
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid var(--pepti-border);
  box-shadow: 0 4px 12px var(--pepti-stat-shadow);
  backdrop-filter: blur(10px);
}
.pc-ir-intro__check-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--pepti-accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px var(--pepti-btn-shadow);
}
.pc-ir-intro__stat p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--pepti-heading);
  padding-top: 6px;
}
.pc-ir-intro__stat strong { color: var(--pepti-heading); font-weight: 700; }
.pc-ir-intro__stat a,
.pc-ir-intro__stat a:link,
.pc-ir-intro__stat a:visited { color: var(--pepti-accent); text-decoration: none; }
.pc-ir-intro__stat a:hover,
.pc-ir-intro__stat a:focus { color: var(--pepti-accent-hover); text-decoration: underline; }
.pc-ir-intro__divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pepti-border), transparent);
  margin-bottom: 35px;
}
.pc-ir-intro__cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.pc-ir-intro__btn,
.pc-ir-intro__btn:link,
.pc-ir-intro__btn:visited {
  padding: 16px 36px;
  background: var(--pepti-accent) !important;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px var(--pepti-btn-shadow);
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}
.pc-ir-intro__btn:hover,
.pc-ir-intro__btn:focus {
  background: var(--pepti-accent-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--pepti-btn-shadow);
}
.pc-ir-intro__contact { display: flex; flex-direction: column; gap: 2px; }
.pc-ir-intro__contact-label { font-size: 13px; color: var(--pepti-body); }
.pc-ir-intro__phone,
.pc-ir-intro__phone:link,
.pc-ir-intro__phone:visited {
  font-size: 20px;
  font-weight: 700;
  color: var(--pepti-accent) !important;
  text-decoration: none !important;
}
.pc-ir-intro__phone:hover,
.pc-ir-intro__phone:focus { color: var(--pepti-accent-hover) !important; text-decoration: underline !important; }
.pc-ir-intro__right { display: flex; justify-content: center; }
.pc-ir-intro__slider-box {
  width: 100%;
  max-width: 560px;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--pepti-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.pc-ir-intro__slider-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 25px;
  align-items: start;
}
.pc-ir-intro__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pc-ir-intro__image-wrap img {
  width: 100%;
  max-width: 160px;
  height: auto;
}
.pc-ir-intro__slider-content { display: flex; flex-direction: column; }
.pc-ir-intro__slider-heading {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.pc-ir-intro__stage-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.pc-ir-intro__stage-label {
  font-size: 24px;
  font-weight: 700;
  color: var(--pepti-accent);
}
.pc-ir-intro__stage-percent {
  font-size: 15px;
  font-weight: 500;
  color: var(--pepti-accent);
}
.pc-ir-intro__slider {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  outline: none;
  margin: 8px 0 14px;
  -webkit-appearance: none;
  appearance: none;
}
.pc-ir-intro__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pepti-accent);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.pc-ir-intro__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pepti-accent);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.pc-ir-intro__result-box {
  background: var(--pepti-result-bg);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid var(--pepti-result-border);
}
.pc-ir-intro__result-box p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--pepti-body);
  margin: 0;
}
a.pc-ir-intro__slider-cta,
.pc-ir-intro__slider-cta {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: var(--pepti-accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--pepti-btn-shadow);
  transition: all 0.3s ease;
  margin-bottom: 10px;
  font-family: inherit;
  display: block;
  text-align: center;
  text-decoration: none !important;
}
.pc-ir-intro__slider-cta:hover {
  transform: translateY(-2px);
  background: var(--pepti-accent-hover);
  box-shadow: 0 12px 32px var(--pepti-btn-shadow);
}
.pc-ir-intro__disclaimer {
  font-size: 11px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 1200px) {
  .pc-ir-intro__container { gap: 40px; }
  .pc-ir-intro__title { font-size: 40px; }
  .pc-ir-intro__slider-box { padding: 25px; }
  .pc-ir-intro__slider-grid { grid-template-columns: 150px 1fr; gap: 20px; }
}
@media (max-width: 1024px) {
  .pc-ir-intro { padding: 50px 30px; }
  .pc-ir-intro__container { grid-template-columns: 1fr; gap: 40px; }
  .pc-ir-intro__left { max-width: 100%; text-align: center; }
  .pc-ir-intro__title { font-size: 36px; }
  .pc-ir-intro__stat { text-align: left; }
  .pc-ir-intro__cta-row { justify-content: center; }
  .pc-ir-intro__slider-box { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .pc-ir-intro { padding: 40px 20px; }
  .pc-ir-intro__title { font-size: 32px; margin-bottom: 28px; }
  .pc-ir-intro__stat { padding: 14px 18px; }
  .pc-ir-intro__stat p { font-size: 16px; }
  .pc-ir-intro__check-icon { width: 34px; height: 34px; }
  .pc-ir-intro__cta-row { flex-direction: column; align-items: center; gap: 18px; }
  .pc-ir-intro__btn { width: 100%; max-width: 280px; text-align: center; }
  .pc-ir-intro__contact { align-items: center; }
  .pc-ir-intro__slider-box { padding: 20px; }
  .pc-ir-intro__slider-grid { grid-template-columns: 1fr; gap: 20px; }
  .pc-ir-intro__image-wrap img { max-width: 140px; }
  .pc-ir-intro__slider-heading { font-size: 16px; text-align: center; }
  .pc-ir-intro__stage-label { font-size: 20px; }
}
@media (max-width: 480px) {
  .pc-ir-intro { padding: 30px 16px; }
  .pc-ir-intro__title { font-size: 28px; }
  .pc-ir-intro__stat p { font-size: 15px; }
  .pc-ir-intro__slider-box { padding: 18px 14px; }
  .pc-ir-intro__slider-heading { font-size: 15px; }
  .pc-ir-intro__result-box { padding: 10px 12px; }
  .pc-ir-intro__result-box p { font-size: 13px; }
  .pc-ir-intro__slider-cta { font-size: 15px; padding: 12px 18px; }
}

/* ── BENEFITS GRID ── */
.pc-ir-benefits {
  --pepti-heading: #1e293b;
  --pepti-card-heading: #1e293b;
  --pepti-body: #475569;
  --pepti-border: #e2e8f0;
  --pepti-border-hover: #7c3aed;
  --pepti-shadow: rgba(0, 0, 0, 0.08);
  --pepti-shadow-hover: rgba(0, 0, 0, 0.12);
  --pepti-bg: #ffffff;
  --pepti-card-bg: #ffffff;
  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-ir-benefits {
  --pepti-heading: #2B4A6F;
  --pepti-card-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-border: #dbeafe;
  --pepti-border-hover: #2563eb;
}
html[data-gender="women"] .pc-ir-benefits {
  --pepti-heading: #4a2b6f;
  --pepti-card-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-border: #f9a8d4;
  --pepti-border-hover: #ec4899;
}
.pc-ir-benefits [data-show] { display: none; }
html:not([data-gender]) .pc-ir-benefits [data-show="neutral"],
html[data-gender=""] .pc-ir-benefits [data-show="neutral"],
html[data-gender="neutral"] .pc-ir-benefits [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-ir-benefits [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-ir-benefits [data-show="women"] { display: inline; }
.pc-ir-benefits__container { max-width: 1200px; margin: 0 auto; }
.pc-ir-benefits__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}
.pc-ir-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.pc-ir-benefits__card {
  background: var(--pepti-card-bg);
  padding: 30px 25px;
  border-radius: 16px;
  border: 2px solid var(--pepti-border);
  text-align: center;
  transition: all 0.3s ease;
}
.pc-ir-benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--pepti-shadow-hover);
  border-color: var(--pepti-border-hover);
}
.pc-ir-benefits__card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--pepti-card-heading);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pc-ir-benefits__card p {
  font-size: 15px;
  color: var(--pepti-body);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .pc-ir-benefits { padding: 60px 20px; }
  .pc-ir-benefits__heading { font-size: 32px; margin-bottom: 40px; }
  .pc-ir-benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .pc-ir-benefits { padding: 50px 16px; }
  .pc-ir-benefits__heading { font-size: 26px; margin-bottom: 30px; }
  .pc-ir-benefits__grid { grid-template-columns: 1fr; gap: 16px; }
  .pc-ir-benefits__card { padding: 24px 20px; }
  .pc-ir-benefits__card h3 { font-size: 17px; margin-bottom: 10px; }
  .pc-ir-benefits__card p { font-size: 14px; }
}
@media (max-width: 480px) {
  .pc-ir-benefits { padding: 40px 14px; }
  .pc-ir-benefits__heading { font-size: 22px; margin-bottom: 25px; }
  .pc-ir-benefits__grid { gap: 14px; }
  .pc-ir-benefits__card { padding: 20px 18px; }
  .pc-ir-benefits__card h3 { font-size: 16px; }
  .pc-ir-benefits__card p { font-size: 13px; }
}

/* ── FEATURES ── */
.pc-ir-features {
  --pepti-bg: #ffffff;
  --pepti-heading: #1e293b;
  --pepti-subheading: #1e293b;
  --pepti-body: #475569;
  --pepti-border: #e2e8f0;
  --pepti-image-bg: #f8fafc;
  --pepti-highlight-bg: rgba(124, 58, 237, 0.06);
  --pepti-highlight-border: #7c3aed;
  --pepti-highlight-text: #6d28d9;
  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-ir-features {
  --pepti-heading: #2B4A6F;
  --pepti-subheading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-border: #dbeafe;
  --pepti-image-bg: #eff6ff;
  --pepti-highlight-bg: rgba(54, 157, 211, 0.08);
  --pepti-highlight-border: #2563eb;
  --pepti-highlight-text: #1d4ed8;
}
html[data-gender="women"] .pc-ir-features {
  --pepti-heading: #4a2b6f;
  --pepti-subheading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-border: #f9a8d4;
  --pepti-image-bg: #fce7f3;
  --pepti-highlight-bg: rgba(207, 45, 172, 0.08);
  --pepti-highlight-border: #ec4899;
  --pepti-highlight-text: #db2777;
}
.pc-ir-features [data-show] { display: none; }
html:not([data-gender]) .pc-ir-features [data-show="neutral"],
html[data-gender=""] .pc-ir-features [data-show="neutral"],
html[data-gender="neutral"] .pc-ir-features [data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-ir-features [data-show="men"] { display: block; }
html[data-gender="women"] .pc-ir-features [data-show="women"] { display: block; }
.pc-ir-features__heading [data-show] { display: none; }
html:not([data-gender]) .pc-ir-features__heading [data-show="neutral"],
html[data-gender=""] .pc-ir-features__heading [data-show="neutral"],
html[data-gender="neutral"] .pc-ir-features__heading [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-ir-features__heading [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-ir-features__heading [data-show="women"] { display: inline; }
.pc-ir-features__container { max-width: 1200px; margin: 0 auto; }
.pc-ir-features__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}
.pc-ir-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.pc-ir-features__row:last-child { margin-bottom: 0; }
.pc-ir-features__row--reverse { direction: rtl; }
.pc-ir-features__row--reverse > * { direction: ltr; }
.pc-ir-features__image {
  border: 2px solid var(--pepti-border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pepti-image-bg);
}
.pc-ir-features__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-ir-features__content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--pepti-subheading);
  margin-bottom: 16px;
  line-height: 1.3;
}
.pc-ir-features__content p {
  font-size: 16px;
  color: var(--pepti-body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pc-ir-features__highlight {
  background: var(--pepti-highlight-bg);
  border-left: 4px solid var(--pepti-highlight-border);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  color: var(--pepti-highlight-text);
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .pc-ir-features { padding: 60px 20px; }
  .pc-ir-features__heading { font-size: 32px; margin-bottom: 50px; }
  .pc-ir-features__row { gap: 40px; margin-bottom: 50px; }
  .pc-ir-features__content h3 { font-size: 24px; }
}
@media (max-width: 768px) {
  .pc-ir-features { padding: 50px 16px; }
  .pc-ir-features__heading { font-size: 26px; margin-bottom: 40px; }
  .pc-ir-features__row,
  .pc-ir-features__row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 25px;
    margin-bottom: 40px;
  }
  .pc-ir-features__image { min-height: 220px; border-radius: 12px; }
  .pc-ir-features__content h3 { font-size: 20px; margin-bottom: 12px; }
  .pc-ir-features__content p { font-size: 15px; margin-bottom: 16px; }
  .pc-ir-features__highlight { padding: 14px 16px; font-size: 14px; }
}
@media (max-width: 480px) {
  .pc-ir-features { padding: 40px 14px; }
  .pc-ir-features__heading { font-size: 22px; margin-bottom: 30px; }
  .pc-ir-features__row { gap: 20px; margin-bottom: 30px; }
  .pc-ir-features__image { min-height: 180px; }
  .pc-ir-features__content h3 { font-size: 18px; }
  .pc-ir-features__content p { font-size: 14px; }
  .pc-ir-features__highlight { padding: 12px 14px; font-size: 13px; }
}

/* ── JOURNEY ── */
.pc-ir-journey {
  --pepti-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-step-title: #1e293b;
  --pepti-step-body: #475569;
  --pepti-icon-bg: #7c3aed;
  --pepti-icon-text: #ffffff;
  --pepti-line-gradient: linear-gradient(180deg, #7c3aed, #a78bfa);
  --pepti-icon-shadow: rgba(0, 0, 0, 0.15);
  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-ir-journey {
  --pepti-bg: #dbeef5;
  --pepti-heading: #2B4A6F;
  --pepti-step-title: #2B4A6F;
  --pepti-step-body: #47627B;
  --pepti-icon-bg: #2563eb;
  --pepti-line-gradient: linear-gradient(180deg, #2563eb, #60a5fa);
}
html[data-gender="women"] .pc-ir-journey {
  --pepti-bg: #fce7f3;
  --pepti-heading: #4a2b6f;
  --pepti-step-title: #4a2b6f;
  --pepti-step-body: #714b7e;
  --pepti-icon-bg: #ec4899;
  --pepti-line-gradient: linear-gradient(180deg, #ec4899, #f9a8d4);
}
.pc-ir-journey__container { max-width: 900px; margin: 0 auto; }
.pc-ir-journey__heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}
.pc-ir-journey__timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.pc-ir-journey__step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  position: relative;
}
.pc-ir-journey__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 65px;
  width: 3px;
  height: calc(100% + 30px);
  background: var(--pepti-line-gradient);
}
.pc-ir-journey__icon {
  width: 55px;
  height: 55px;
  background: var(--pepti-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--pepti-icon-shadow);
  border: 3px solid #ffffff;
  position: relative;
  z-index: 1;
}
.pc-ir-journey__icon span {
  color: var(--pepti-icon-text);
  font-size: 24px;
  font-weight: 700;
}
.pc-ir-journey__content { flex: 1; padding-top: 5px; }
.pc-ir-journey__content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--pepti-step-title);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pc-ir-journey__content p {
  font-size: 16px;
  color: var(--pepti-step-body);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .pc-ir-journey { padding: 60px 20px; }
  .pc-ir-journey__heading { font-size: 32px; margin-bottom: 50px; }
  .pc-ir-journey__timeline { gap: 35px; }
  .pc-ir-journey__step:not(:last-child)::after { height: calc(100% + 25px); }
  .pc-ir-journey__icon { width: 50px; height: 50px; }
  .pc-ir-journey__icon span { font-size: 22px; }
  .pc-ir-journey__content h3 { font-size: 20px; }
  .pc-ir-journey__content p { font-size: 15px; }
}
@media (max-width: 768px) {
  .pc-ir-journey { padding: 50px 16px; }
  .pc-ir-journey__heading { font-size: 26px; margin-bottom: 40px; }
  .pc-ir-journey__timeline { gap: 30px; }
  .pc-ir-journey__step { gap: 18px; }
  .pc-ir-journey__step:not(:last-child)::after { left: 22px; top: 52px; height: calc(100% + 22px); }
  .pc-ir-journey__icon { width: 45px; height: 45px; border-width: 2px; }
  .pc-ir-journey__icon span { font-size: 20px; }
  .pc-ir-journey__content h3 { font-size: 18px; margin-bottom: 8px; }
  .pc-ir-journey__content p { font-size: 14px; }
}
@media (max-width: 480px) {
  .pc-ir-journey { padding: 40px 14px; }
  .pc-ir-journey__heading { font-size: 22px; margin-bottom: 30px; }
  .pc-ir-journey__timeline { gap: 25px; }
  .pc-ir-journey__step { gap: 14px; }
  .pc-ir-journey__step:not(:last-child)::after { left: 19px; top: 48px; height: calc(100% + 18px); }
  .pc-ir-journey__icon { width: 40px; height: 40px; }
  .pc-ir-journey__icon span { font-size: 18px; }
  .pc-ir-journey__content h3 { font-size: 16px; }
  .pc-ir-journey__content p { font-size: 13px; }
}

/* ── FAQ ── */
.pc-ir-faq {
  --pepti-bg: #ffffff;
  --pepti-heading: #1e293b;
  --pepti-item-bg: #ffffff;
  --pepti-item-border: #e2e8f0;
  --pepti-item-border-hover: #7c3aed;
  --pepti-item-border-active: #7c3aed;
  --pepti-item-shadow-active: rgba(0, 0, 0, 0.08);
  --pepti-question-text: #1e293b;
  --pepti-question-text-hover: #1e293b;
  --pepti-question-bg: transparent;
  --pepti-question-bg-hover: #f8fafc;
  --pepti-icon-color: #7c3aed;
  --pepti-icon-color-hover: #6d28d9;
  --pepti-answer-text: #475569;
  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-ir-faq {
  --pepti-heading: #2B4A6F;
  --pepti-item-border: #dbeafe;
  --pepti-item-border-hover: #2563eb;
  --pepti-item-border-active: #2563eb;
  --pepti-question-text: #2B4A6F;
  --pepti-question-text-hover: #2B4A6F;
  --pepti-question-bg-hover: #eff6ff;
  --pepti-icon-color: #2563eb;
  --pepti-icon-color-hover: #1d4ed8;
  --pepti-answer-text: #47627B;
}
html[data-gender="women"] .pc-ir-faq {
  --pepti-heading: #4a2b6f;
  --pepti-item-border: #f9a8d4;
  --pepti-item-border-hover: #ec4899;
  --pepti-item-border-active: #ec4899;
  --pepti-question-text: #4a2b6f;
  --pepti-question-text-hover: #4a2b6f;
  --pepti-question-bg-hover: #fdf2f8;
  --pepti-icon-color: #ec4899;
  --pepti-icon-color-hover: #db2777;
  --pepti-answer-text: #714b7e;
}
.pc-ir-faq__container { max-width: 900px; margin: 0 auto; }
.pc-ir-faq__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 50px;
}
.pc-ir-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pc-ir-faq__item {
  background: var(--pepti-item-bg);
  border: 2px solid var(--pepti-item-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pc-ir-faq__item:hover { border-color: var(--pepti-item-border-hover); }
.pc-ir-faq__item.active {
  border-color: var(--pepti-item-border-active);
  box-shadow: 0 4px 16px var(--pepti-item-shadow-active);
}
.pc-ir-faq__question {
  width: 100%;
  background: var(--pepti-question-bg) !important;
  border: none !important;
  padding: 22px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--pepti-question-text) !important;
  text-align: left;
  transition: all 0.3s ease;
  font-family: inherit;
  gap: 16px;
  outline: none;
}
.pc-ir-faq__question:hover,
.pc-ir-faq__question:focus {
  background: var(--pepti-question-bg-hover) !important;
  color: var(--pepti-question-text-hover) !important;
}
.pc-ir-faq__question:active {
  background: var(--pepti-question-bg-hover) !important;
  color: var(--pepti-question-text-hover) !important;
}
.pc-ir-faq__question span:first-child { color: inherit; }
.pc-ir-faq__icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--pepti-icon-color) !important;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.pc-ir-faq__question:hover .pc-ir-faq__icon,
.pc-ir-faq__question:focus .pc-ir-faq__icon { color: var(--pepti-icon-color-hover) !important; }
.pc-ir-faq__item.active .pc-ir-faq__icon {
  transform: rotate(45deg);
  color: var(--pepti-icon-color-hover) !important;
}
.pc-ir-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.pc-ir-faq__item.active .pc-ir-faq__answer { max-height: 500px; }
.pc-ir-faq__answer p {
  padding: 0 25px 25px;
  font-size: 16px;
  color: var(--pepti-answer-text) !important;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 1024px) {
  .pc-ir-faq { padding: 60px 20px; }
  .pc-ir-faq__heading { font-size: 32px; margin-bottom: 40px; }
  .pc-ir-faq__question { padding: 20px 22px; font-size: 17px; }
  .pc-ir-faq__answer p { padding: 0 22px 22px; font-size: 15px; }
}
@media (max-width: 768px) {
  .pc-ir-faq { padding: 50px 16px; }
  .pc-ir-faq__heading { font-size: 26px; margin-bottom: 30px; }
  .pc-ir-faq__accordion { gap: 12px; }
  .pc-ir-faq__question { padding: 18px 20px; font-size: 16px; }
  .pc-ir-faq__icon { font-size: 24px; }
  .pc-ir-faq__answer p { padding: 0 20px 20px; font-size: 14px; }
}
@media (max-width: 480px) {
  .pc-ir-faq { padding: 40px 14px; }
  .pc-ir-faq__heading { font-size: 22px; margin-bottom: 25px; }
  .pc-ir-faq__accordion { gap: 10px; }
  .pc-ir-faq__item { border-radius: 10px; }
  .pc-ir-faq__question { padding: 16px 18px; font-size: 15px; }
  .pc-ir-faq__icon { font-size: 22px; }
  .pc-ir-faq__answer p { padding: 0 18px 18px; font-size: 13px; }
}

/* ── WHY CHOOSE US ── */
.pc-ir-why {
  --pepti-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-subheading: #475569;
  --pepti-number: #7c3aed;
  --pepti-card-bg: rgba(255, 255, 255, 0.7);
  --pepti-card-border: rgba(255, 255, 255, 0.9);
  --pepti-card-heading: #1e293b;
  --pepti-card-body: #475569;
  --pepti-card-shadow: rgba(0, 0, 0, 0.06);
  --pepti-card-hover-shadow: rgba(0, 0, 0, 0.1);
  padding: 80px 40px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-ir-why {
  --pepti-bg: #C6D9F7;
  --pepti-heading: #2B4A6F;
  --pepti-subheading: #47627B;
  --pepti-number: #2563eb;
  --pepti-card-heading: #2B4A6F;
  --pepti-card-body: #47627B;
}
html[data-gender="women"] .pc-ir-why {
  --pepti-bg: #f7c8cc;
  --pepti-heading: #4a2b6f;
  --pepti-subheading: #714b7e;
  --pepti-number: #ec4899;
  --pepti-card-heading: #4a2b6f;
  --pepti-card-body: #714b7e;
}
.pc-ir-why [data-show] { display: none; }
html:not([data-gender]) .pc-ir-why [data-show="neutral"],
html[data-gender=""] .pc-ir-why [data-show="neutral"],
html[data-gender="neutral"] .pc-ir-why [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-ir-why [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-ir-why [data-show="women"] { display: inline; }
.pc-ir-why__container { max-width: 1200px; margin: 0 auto; }
.pc-ir-why__header { text-align: center; margin-bottom: 60px; }
.pc-ir-why__header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pc-ir-why__header p {
  font-size: 20px;
  color: var(--pepti-subheading);
  font-weight: 500;
  margin: 0;
}
.pc-ir-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pc-ir-why__card {
  background: var(--pepti-card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--pepti-card-border);
  box-shadow: 0 8px 28px var(--pepti-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-ir-why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px var(--pepti-card-hover-shadow);
}
.pc-ir-why__number {
  font-size: 44px;
  font-weight: 700;
  color: var(--pepti-number);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.pc-ir-why__card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--pepti-card-heading);
  margin-bottom: 16px;
  line-height: 1.3;
}
.pc-ir-why__card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pepti-card-body);
  margin: 0;
}
@media (max-width: 1024px) {
  .pc-ir-why { padding: 60px 30px; }
  .pc-ir-why__header { margin-bottom: 50px; }
  .pc-ir-why__header h2 { font-size: 36px; }
  .pc-ir-why__cards { gap: 24px; }
  .pc-ir-why__card { padding: 32px 26px; }
  .pc-ir-why__number { font-size: 38px; }
  .pc-ir-why__card h3 { font-size: 22px; }
}
@media (max-width: 768px) {
  .pc-ir-why { padding: 50px 20px; }
  .pc-ir-why__header { margin-bottom: 40px; }
  .pc-ir-why__header h2 { font-size: 28px; }
  .pc-ir-why__header p { font-size: 17px; }
  .pc-ir-why__cards { grid-template-columns: 1fr; gap: 20px; }
  .pc-ir-why__card { padding: 28px 24px; border-radius: 20px; }
  .pc-ir-why__number { font-size: 36px; margin-bottom: 12px; }
  .pc-ir-why__card h3 { font-size: 20px; margin-bottom: 12px; }
  .pc-ir-why__card p { font-size: 15px; line-height: 1.6; }
}
@media (max-width: 480px) {
  .pc-ir-why { padding: 40px 16px; }
  .pc-ir-why__header h2 { font-size: 24px; }
  .pc-ir-why__header p { font-size: 15px; }
  .pc-ir-why__cards { gap: 16px; }
  .pc-ir-why__card { padding: 24px 20px; border-radius: 16px; }
  .pc-ir-why__number { font-size: 32px; }
  .pc-ir-why__card h3 { font-size: 18px; }
  .pc-ir-why__card p { font-size: 14px; }
}

/* ── CTA ── */
.pc-ir-cta {
  --pepti-bg: linear-gradient(135deg, #1a0a2e 0%, #3b1d5a 100%);
  --pepti-heading: #ffffff;
  --pepti-body: rgba(255, 255, 255, 0.85);
  --pepti-btn-primary-bg: #7c3aed;
  --pepti-btn-primary-text: #ffffff;
  --pepti-btn-primary-hover-bg: #5b21b6;
  --pepti-btn-primary-hover-text: #ffffff;
  --pepti-btn-primary-shadow: rgba(124, 58, 237, 0.4);
  --pepti-btn-primary-hover-shadow: rgba(124, 58, 237, 0.6);
  --pepti-btn-secondary-border: rgba(255, 255, 255, 0.6);
  --pepti-btn-secondary-text: #ffffff;
  --pepti-btn-secondary-hover-bg: rgba(124, 58, 237, 0.3);
  --pepti-btn-secondary-hover-border: #7c3aed;
  --pepti-btn-secondary-hover-text: #ffffff;
  --pepti-disclaimer: rgba(255, 255, 255, 0.5);
  padding: 100px 40px;
  background: var(--pepti-bg);
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-ir-cta {
  --pepti-bg: linear-gradient(135deg, #1a3a52 0%, #2B4A6F 100%);
  --pepti-body: rgba(255, 255, 255, 0.85);
  --pepti-btn-primary-bg: #60a5fa;
  --pepti-btn-primary-text: #1a3a52;
  --pepti-btn-primary-hover-bg: #93c5fd;
  --pepti-btn-primary-hover-text: #1a3a52;
  --pepti-btn-primary-shadow: rgba(62, 189, 246, 0.4);
  --pepti-btn-primary-hover-shadow: rgba(62, 189, 246, 0.6);
  --pepti-btn-secondary-hover-bg: rgba(62, 189, 246, 0.2);
  --pepti-btn-secondary-hover-border: #60a5fa;
}
html[data-gender="women"] .pc-ir-cta {
  --pepti-bg: linear-gradient(135deg, #3d1f4a 0%, #5a2d6a 100%);
  --pepti-body: rgba(255, 255, 255, 0.85);
  --pepti-btn-primary-bg: #f9a8d4;
  --pepti-btn-primary-text: #3d1f4a;
  --pepti-btn-primary-hover-bg: #ec4899;
  --pepti-btn-primary-hover-text: #ffffff;
  --pepti-btn-primary-shadow: rgba(244, 177, 229, 0.4);
  --pepti-btn-primary-hover-shadow: rgba(207, 45, 172, 0.6);
  --pepti-btn-secondary-hover-bg: rgba(244, 177, 229, 0.2);
  --pepti-btn-secondary-hover-border: #f9a8d4;
}
.pc-ir-cta [data-show] { display: none; }
html:not([data-gender]) .pc-ir-cta [data-show="neutral"],
html[data-gender=""] .pc-ir-cta [data-show="neutral"],
html[data-gender="neutral"] .pc-ir-cta [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-ir-cta [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-ir-cta [data-show="women"] { display: inline; }
.pc-ir-cta__container { max-width: 800px; margin: 0 auto; }
.pc-ir-cta__content { margin-bottom: 45px; }
.pc-ir-cta__content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 20px;
  line-height: 1.2;
}
.pc-ir-cta__content p {
  font-size: 20px;
  color: var(--pepti-body);
  line-height: 1.6;
  margin: 0;
}
.pc-ir-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.pc-ir-cta__btn {
  padding: 18px 44px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
.pc-ir-cta__btn--primary,
.pc-ir-cta__btn--primary:link,
.pc-ir-cta__btn--primary:visited {
  background: var(--pepti-btn-primary-bg) !important;
  color: var(--pepti-btn-primary-text) !important;
  box-shadow: 0 8px 24px var(--pepti-btn-primary-shadow);
  border: none !important;
}
.pc-ir-cta__btn--primary:hover,
.pc-ir-cta__btn--primary:focus,
.pc-ir-cta__btn--primary:active {
  background: var(--pepti-btn-primary-hover-bg) !important;
  color: var(--pepti-btn-primary-hover-text) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--pepti-btn-primary-hover-shadow);
}
.pc-ir-cta__btn--secondary,
.pc-ir-cta__btn--secondary:link,
.pc-ir-cta__btn--secondary:visited {
  background: transparent !important;
  color: var(--pepti-btn-secondary-text) !important;
  border: 2px solid var(--pepti-btn-secondary-border) !important;
}
.pc-ir-cta__btn--secondary:hover,
.pc-ir-cta__btn--secondary:focus,
.pc-ir-cta__btn--secondary:active {
  background: var(--pepti-btn-secondary-hover-bg) !important;
  color: var(--pepti-btn-secondary-hover-text) !important;
  border-color: var(--pepti-btn-secondary-hover-border) !important;
  transform: translateY(-3px);
}
.pc-ir-cta__disclaimer {
  margin-top: 30px;
  font-size: 13px;
  color: var(--pepti-disclaimer);
  line-height: 1.6;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .pc-ir-cta { padding: 80px 30px; }
  .pc-ir-cta__content h2 { font-size: 36px; }
  .pc-ir-cta__content p { font-size: 18px; }
  .pc-ir-cta__btn { padding: 16px 40px; font-size: 17px; }
  .pc-ir-cta__disclaimer { font-size: 12px; }
}
@media (max-width: 768px) {
  .pc-ir-cta { padding: 60px 20px; }
  .pc-ir-cta__content { margin-bottom: 35px; }
  .pc-ir-cta__content h2 { font-size: 28px; margin-bottom: 16px; }
  .pc-ir-cta__content p { font-size: 16px; }
  .pc-ir-cta__buttons { flex-direction: column; gap: 16px; align-items: center; }
  .pc-ir-cta__btn { width: 100%; max-width: 320px; padding: 16px 36px; font-size: 16px; }
  .pc-ir-cta__disclaimer { margin-top: 25px; font-size: 12px; padding: 0 10px; }
}
@media (max-width: 480px) {
  .pc-ir-cta { padding: 50px 16px; }
  .pc-ir-cta__content h2 { font-size: 24px; }
  .pc-ir-cta__content p { font-size: 15px; }
  .pc-ir-cta__btn { padding: 14px 32px; font-size: 15px; }
  .pc-ir-cta__disclaimer { margin-top: 20px; font-size: 11px; }
}

/* =====================================================
   SECTION: ANTI-AGING SERVICE PAGE
   ===================================================== */

/* ── HERO ── */
.pc-aa-hero {
    --pepti-hero-btn-primary: #7c3aed;
    --pepti-hero-btn-primary-hover: #6d28d9;
    --pepti-hero-btn-shadow: rgba(124, 58, 237, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(124, 58, 237, 0.65);
    --pepti-hero-btn-secondary: rgba(255, 255, 255, 0.78);
    --pepti-hero-btn-secondary-hover: #ffffff;
    --pepti-hero-btn-secondary-text: #000000;
    --pepti-hero-btn-secondary-shadow: rgba(0, 0, 0, 0.5);
    --pepti-hero-btn-secondary-shadow-hover: rgba(124, 58, 237, 0.65);
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
html[data-gender="men"] .pc-aa-hero {
    --pepti-hero-btn-primary: #60a5fa;
    --pepti-hero-btn-primary-hover: #93c5fd;
    --pepti-hero-btn-shadow: rgba(62, 189, 246, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(62, 189, 246, 0.65);
    --pepti-hero-btn-secondary-shadow-hover: rgba(62, 189, 246, 0.65);
}
html[data-gender="women"] .pc-aa-hero {
    --pepti-hero-btn-primary: #f9a8d4;
    --pepti-hero-btn-primary-hover: #ec4899;
    --pepti-hero-btn-shadow: rgba(244, 177, 229, 0.5);
    --pepti-hero-btn-shadow-hover: rgba(244, 177, 229, 0.85);
    --pepti-hero-btn-secondary-shadow-hover: rgba(244, 177, 229, 0.85);
}
.pc-aa-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: auto;
}
.pc-aa-hero__bg-img {
    position: absolute;
    inset: 0;
    display: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.pc-aa-hero__bg-img[data-show="neutral"] {
    background-color: #e2e8f0;
    background-image: url('/uploads/2025/11/anti-aging.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pc-aa-hero__bg-img[data-show="men"] {
    background-color: #bfdbfe;
    background-image: url('/uploads/2025/11/anti-aging-1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
.pc-aa-hero__bg-img[data-show="women"] {
    background-color: #f5c6d6;
    background-image: url('/uploads/2025/11/anti-aging.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
html:not([data-gender]) .pc-aa-hero__bg-img[data-show="neutral"],
html[data-gender=""] .pc-aa-hero__bg-img[data-show="neutral"],
html[data-gender="neutral"] .pc-aa-hero__bg-img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-aa-hero__bg-img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-aa-hero__bg-img[data-show="women"] { display: block; }
.pc-aa-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.pc-aa-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}
.pc-aa-hero__content { max-width: 600px; }
.pc-aa-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 24px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.pc-aa-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #ffffff;
    line-height: 1.7;
    margin: 0 0 36px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.pc-aa-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.pc-aa-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1.4;
    text-align: center;
    box-sizing: border-box;
}
.pc-aa-hero__btn--primary,
.pc-aa-hero__btn--primary:link,
.pc-aa-hero__btn--primary:visited {
    background: var(--pepti-hero-btn-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px var(--pepti-hero-btn-shadow);
}
.pc-aa-hero__btn--primary:hover,
.pc-aa-hero__btn--primary:focus,
.pc-aa-hero__btn--primary:active {
    background: var(--pepti-hero-btn-primary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--pepti-hero-btn-shadow-hover);
    text-decoration: none !important;
}
.pc-aa-hero__btn--secondary,
.pc-aa-hero__btn--secondary:link,
.pc-aa-hero__btn--secondary:visited {
    background: var(--pepti-hero-btn-secondary) !important;
    color: var(--pepti-hero-btn-secondary-text) !important;
    box-shadow: 0 4px 15px var(--pepti-hero-btn-secondary-shadow);
}
.pc-aa-hero__btn--secondary:hover,
.pc-aa-hero__btn--secondary:focus,
.pc-aa-hero__btn--secondary:active {
    transform: translateY(-2px);
    background: var(--pepti-hero-btn-secondary-hover) !important;
    color: var(--pepti-hero-btn-secondary-text) !important;
    box-shadow: 0 6px 20px var(--pepti-hero-btn-secondary-shadow-hover);
    text-decoration: none !important;
}
@media (max-width: 1024px) {
    .pc-aa-hero { min-height: 600px; }
    .pc-aa-hero__container { padding: 60px 30px; }
}
@media (max-width: 768px) {
    .pc-aa-hero { min-height: 650px; align-items: flex-start; }
    .pc-aa-hero__container { padding: 50px 20px; }
    .pc-aa-hero__content { max-width: 100%; }
    .pc-aa-hero__buttons { flex-direction: column; align-items: stretch; }
    .pc-aa-hero__btn { width: 100%; min-width: unset; }
}
@media (max-width: 480px) {
    .pc-aa-hero { min-height: 600px; }
    .pc-aa-hero__container { padding: 100px 16px; }
    .pc-aa-hero__btn { padding: 14px 32px; font-size: 15px; }
}
@supports (-webkit-touch-callout: none) {
    .pc-aa-hero { -webkit-overflow-scrolling: touch; }
    .pc-aa-hero__bg, .pc-aa-hero__bg-img {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* ── INTRO (Evidence-Based + Overview) ── */
.pc-aa-intro {
  --pepti-section-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-body: #475569;
  --pepti-accent: #7c3aed;
  --pepti-accent-hover: #6d28d9;
  --pepti-accent-light: #a78bfa;
  --pepti-accent-gradient: linear-gradient(135deg, #7c3aed, #a78bfa);
  --pepti-border: #e2e8f0;
  --pepti-stat-bg: rgba(255, 255, 255, 0.8);
  --pepti-stat-shadow: rgba(0, 0, 0, 0.06);
  --pepti-overview-bg: #ffffff;
  --pepti-overview-border: #e2e8f0;
  --pepti-tag-bg: rgba(124, 58, 237, 0.1);
  --pepti-tag-text: #7c3aed;
  --pepti-btn-bg: linear-gradient(135deg, #7c3aed, #a78bfa);
  --pepti-btn-hover: linear-gradient(135deg, #a78bfa, #7c3aed);
  --pepti-btn-shadow: rgba(124, 58, 237, 0.3);
  --pepti-btn-hover-shadow: rgba(124, 58, 237, 0.4);
  padding: 60px 40px;
  background: var(--pepti-section-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-aa-intro {
  --pepti-section-bg: #bfdbfe;
  --pepti-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-accent: #2563eb;
  --pepti-accent-hover: #1d4ed8;
  --pepti-accent-light: #60a5fa;
  --pepti-accent-gradient: linear-gradient(135deg, #2563eb, #60a5fa);
  --pepti-border: #dbeafe;
  --pepti-stat-bg: rgba(255, 255, 255, 0.8);
  --pepti-stat-shadow: rgba(54, 157, 211, 0.08);
  --pepti-overview-bg: #ffffff;
  --pepti-overview-border: #dbeafe;
  --pepti-tag-bg: rgba(54, 157, 211, 0.1);
  --pepti-tag-text: #2563eb;
  --pepti-btn-bg: linear-gradient(135deg, #2563eb, #60a5fa);
  --pepti-btn-hover: linear-gradient(135deg, #60a5fa, #2563eb);
  --pepti-btn-shadow: rgba(54, 157, 211, 0.3);
  --pepti-btn-hover-shadow: rgba(54, 157, 211, 0.4);
}
html[data-gender="women"] .pc-aa-intro {
  --pepti-section-bg: #f5c6d6;
  --pepti-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-accent: #ec4899;
  --pepti-accent-hover: #db2777;
  --pepti-accent-light: #f9a8d4;
  --pepti-accent-gradient: linear-gradient(135deg, #ec4899, #f9a8d4);
  --pepti-border: #f4d1eb;
  --pepti-stat-bg: rgba(255, 255, 255, 0.8);
  --pepti-stat-shadow: rgba(207, 45, 172, 0.08);
  --pepti-overview-bg: #ffffff;
  --pepti-overview-border: #f4d1eb;
  --pepti-tag-bg: rgba(207, 45, 172, 0.1);
  --pepti-tag-text: #ec4899;
  --pepti-btn-bg: linear-gradient(135deg, #ec4899, #f9a8d4);
  --pepti-btn-hover: linear-gradient(135deg, #f9a8d4, #ec4899);
  --pepti-btn-shadow: rgba(207, 45, 172, 0.3);
  --pepti-btn-hover-shadow: rgba(207, 45, 172, 0.4);
}
.pc-aa-intro__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pc-aa-intro__left { max-width: 600px; }
.pc-aa-intro__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 40px;
  line-height: 1.2;
}
.pc-aa-intro__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}
.pc-aa-intro__stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--pepti-stat-bg);
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--pepti-border);
  box-shadow: 0 4px 12px var(--pepti-stat-shadow);
  backdrop-filter: blur(10px);
}
.pc-aa-intro__check-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--pepti-accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px var(--pepti-btn-shadow);
}
.pc-aa-intro__stat p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--pepti-heading);
  padding-top: 8px;
}
.pc-aa-intro__stat strong { color: var(--pepti-heading); font-weight: 600; }
.pc-aa-intro__stat a,
.pc-aa-intro__stat a:link,
.pc-aa-intro__stat a:visited { color: var(--pepti-accent); text-decoration: none; }
.pc-aa-intro__stat a:hover,
.pc-aa-intro__stat a:focus { color: var(--pepti-accent-hover); text-decoration: underline; }
.pc-aa-intro__divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pepti-border), transparent);
  margin-bottom: 40px;
}
.pc-aa-intro__cta-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.pc-aa-intro__btn,
.pc-aa-intro__btn:link,
.pc-aa-intro__btn:visited {
  padding: 18px 40px;
  background: var(--pepti-btn-bg) !important;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px var(--pepti-btn-shadow);
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}
.pc-aa-intro__btn:hover,
.pc-aa-intro__btn:focus {
  background: var(--pepti-btn-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--pepti-btn-hover-shadow);
}
.pc-aa-intro__contact { display: flex; flex-direction: column; gap: 4px; }
.pc-aa-intro__contact-label { font-size: 14px; color: var(--pepti-body); }
.pc-aa-intro__phone,
.pc-aa-intro__phone:link,
.pc-aa-intro__phone:visited {
  font-size: 22px;
  font-weight: 700;
  color: var(--pepti-accent) !important;
  text-decoration: none !important;
}
.pc-aa-intro__phone:hover,
.pc-aa-intro__phone:focus { color: var(--pepti-accent-hover) !important; text-decoration: underline !important; }
.pc-aa-intro__right { display: flex; justify-content: center; }
.pc-aa-intro__overview {
  background: var(--pepti-overview-bg);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--pepti-overview-border);
  box-shadow: 0 8px 24px var(--pepti-stat-shadow);
}
.pc-aa-intro__overview-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 16px;
}
.pc-aa-intro__overview-text {
  font-size: 17px;
  color: var(--pepti-body);
  line-height: 1.7;
  margin-bottom: 24px;
}
.pc-aa-intro__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.pc-aa-intro__tag {
  background: var(--pepti-tag-bg);
  color: var(--pepti-tag-text);
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .pc-aa-intro { padding: 50px 30px; }
  .pc-aa-intro__container { gap: 40px; }
  .pc-aa-intro__title { font-size: 40px; }
  .pc-aa-intro__overview { padding: 30px; }
}
@media (max-width: 768px) {
  .pc-aa-intro { padding: 40px 20px; }
  .pc-aa-intro__container { grid-template-columns: 1fr; gap: 40px; }
  .pc-aa-intro__left { max-width: 100%; text-align: center; }
  .pc-aa-intro__title { font-size: 32px; margin-bottom: 30px; }
  .pc-aa-intro__stat { text-align: left; }
  .pc-aa-intro__stat p { font-size: 16px; }
  .pc-aa-intro__cta-row { justify-content: center; flex-direction: column; gap: 20px; }
  .pc-aa-intro__btn { width: 100%; max-width: 300px; text-align: center; }
  .pc-aa-intro__contact { align-items: center; }
  .pc-aa-intro__overview { padding: 25px 20px; }
  .pc-aa-intro__overview-heading { font-size: 24px; }
  .pc-aa-intro__overview-text { font-size: 15px; }
}
@media (max-width: 480px) {
  .pc-aa-intro { padding: 30px 16px; }
  .pc-aa-intro__title { font-size: 28px; }
  .pc-aa-intro__stat { padding: 16px 18px; }
  .pc-aa-intro__check-icon { width: 36px; height: 36px; }
  .pc-aa-intro__tag { padding: 8px 14px; font-size: 13px; }
}

/* ── FEATURES/GOALS ── */
.pc-aa-features {
  --pepti-bg: #ffffff;
  --pepti-heading: #1e293b;
  --pepti-subheading: #1e293b;
  --pepti-body: #475569;
  --pepti-border: #e2e8f0;
  --pepti-image-bg: #f8fafc;
  --pepti-highlight-bg: rgba(124, 58, 237, 0.06);
  --pepti-highlight-border: #7c3aed;
  --pepti-highlight-text: #6d28d9;
  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-aa-features {
  --pepti-heading: #2B4A6F;
  --pepti-subheading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-border: #dbeafe;
  --pepti-image-bg: #eff6ff;
  --pepti-highlight-bg: rgba(54, 157, 211, 0.08);
  --pepti-highlight-border: #2563eb;
  --pepti-highlight-text: #1d4ed8;
}
html[data-gender="women"] .pc-aa-features {
  --pepti-heading: #4a2b6f;
  --pepti-subheading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-border: #f9a8d4;
  --pepti-image-bg: #fce7f3;
  --pepti-highlight-bg: rgba(207, 45, 172, 0.08);
  --pepti-highlight-border: #ec4899;
  --pepti-highlight-text: #db2777;
}
.pc-aa-features [data-show] { display: none; }
html:not([data-gender]) .pc-aa-features [data-show="neutral"],
html[data-gender=""] .pc-aa-features [data-show="neutral"],
html[data-gender="neutral"] .pc-aa-features [data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-aa-features [data-show="men"] { display: block; }
html[data-gender="women"] .pc-aa-features [data-show="women"] { display: block; }
.pc-aa-features__container { max-width: 1200px; margin: 0 auto; }
.pc-aa-features__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}
.pc-aa-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.pc-aa-features__row:last-child { margin-bottom: 0; }
.pc-aa-features__row--reverse { direction: rtl; }
.pc-aa-features__row--reverse > * { direction: ltr; }
.pc-aa-features__image {
  border: 2px solid var(--pepti-border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pepti-image-bg);
}
.pc-aa-features__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-aa-features__content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--pepti-subheading);
  margin-bottom: 16px;
  line-height: 1.3;
}
.pc-aa-features__content p {
  font-size: 16px;
  color: var(--pepti-body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pc-aa-features__highlight {
  background: var(--pepti-highlight-bg);
  border-left: 4px solid var(--pepti-highlight-border);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  color: var(--pepti-highlight-text);
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .pc-aa-features { padding: 60px 20px; }
  .pc-aa-features__heading { font-size: 32px; margin-bottom: 50px; }
  .pc-aa-features__row { gap: 40px; margin-bottom: 50px; }
  .pc-aa-features__content h3 { font-size: 24px; }
}
@media (max-width: 768px) {
  .pc-aa-features { padding: 50px 16px; }
  .pc-aa-features__heading { font-size: 26px; margin-bottom: 40px; }
  .pc-aa-features__row,
  .pc-aa-features__row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 25px;
    margin-bottom: 40px;
  }
  .pc-aa-features__image { min-height: 220px; border-radius: 12px; }
  .pc-aa-features__content h3 { font-size: 20px; margin-bottom: 12px; }
  .pc-aa-features__content p { font-size: 15px; margin-bottom: 16px; }
  .pc-aa-features__highlight { padding: 14px 16px; font-size: 14px; }
}
@media (max-width: 480px) {
  .pc-aa-features { padding: 40px 14px; }
  .pc-aa-features__heading { font-size: 22px; margin-bottom: 30px; }
  .pc-aa-features__row { gap: 20px; margin-bottom: 30px; }
  .pc-aa-features__image { min-height: 180px; }
  .pc-aa-features__content h3 { font-size: 18px; }
  .pc-aa-features__content p { font-size: 14px; }
  .pc-aa-features__highlight { padding: 12px 14px; font-size: 13px; }
}

/* ── BENEFITS GRID ── */
.pc-aa-benefits {
  --pepti-heading: #1e1b4b;
  --pepti-card-heading: #1e1b4b;
  --pepti-body: #4c4866;
  --pepti-border: #e2e8f0;
  --pepti-border-hover: #7c3aed;
  --pepti-shadow: rgba(124, 58, 237, 0.15);
  --pepti-bg: #ffffff;
  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-aa-benefits {
  --pepti-heading: #2B4A6F;
  --pepti-card-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-border: #dbeafe;
  --pepti-border-hover: #60a5fa;
  --pepti-shadow: rgba(54, 157, 211, 0.2);
}
html[data-gender="women"] .pc-aa-benefits {
  --pepti-heading: #4a2b6f;
  --pepti-card-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-border: #f9a8d4;
  --pepti-border-hover: #ec4899;
  --pepti-shadow: rgba(207, 45, 172, 0.2);
}
.pc-aa-benefits [data-show] { display: none; }
html:not([data-gender]) .pc-aa-benefits [data-show="neutral"],
html[data-gender=""] .pc-aa-benefits [data-show="neutral"],
html[data-gender="neutral"] .pc-aa-benefits [data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-aa-benefits [data-show="men"] { display: block; }
html[data-gender="women"] .pc-aa-benefits [data-show="women"] { display: block; }
.pc-aa-benefits__heading [data-show] { display: none; }
html:not([data-gender]) .pc-aa-benefits__heading [data-show="neutral"],
html[data-gender=""] .pc-aa-benefits__heading [data-show="neutral"],
html[data-gender="neutral"] .pc-aa-benefits__heading [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-aa-benefits__heading [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-aa-benefits__heading [data-show="women"] { display: inline; }
.pc-aa-benefits__container { max-width: 1200px; margin: 0 auto; }
.pc-aa-benefits__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}
.pc-aa-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.pc-aa-benefits__card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  border: 2px solid var(--pepti-border);
  text-align: center;
  transition: all 0.3s ease;
}
.pc-aa-benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--pepti-shadow);
  border-color: var(--pepti-border-hover);
}
.pc-aa-benefits__card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--pepti-card-heading);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pc-aa-benefits__card p {
  font-size: 15px;
  color: var(--pepti-body);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .pc-aa-benefits { padding: 60px 20px; }
  .pc-aa-benefits__heading { font-size: 32px; margin-bottom: 40px; }
  .pc-aa-benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .pc-aa-benefits { padding: 50px 16px; }
  .pc-aa-benefits__heading { font-size: 26px; margin-bottom: 30px; }
  .pc-aa-benefits__grid { grid-template-columns: 1fr; gap: 16px; }
  .pc-aa-benefits__card { padding: 24px 20px; }
  .pc-aa-benefits__card h3 { font-size: 17px; margin-bottom: 10px; }
  .pc-aa-benefits__card p { font-size: 14px; }
}
@media (max-width: 480px) {
  .pc-aa-benefits { padding: 40px 14px; }
  .pc-aa-benefits__heading { font-size: 22px; margin-bottom: 25px; }
  .pc-aa-benefits__grid { gap: 14px; }
  .pc-aa-benefits__card { padding: 20px 18px; }
  .pc-aa-benefits__card h3 { font-size: 16px; }
  .pc-aa-benefits__card p { font-size: 13px; }
}

/* ── JOURNEY TIMELINE ── */
.pc-aa-journey {
  --pepti-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-step-title: #1e293b;
  --pepti-step-body: #475569;
  --pepti-icon-bg: #7c3aed;
  --pepti-icon-text: #ffffff;
  --pepti-line-gradient: linear-gradient(180deg, #7c3aed, #a78bfa);
  --pepti-icon-shadow: rgba(0, 0, 0, 0.15);
  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-aa-journey {
  --pepti-bg: #dbeef5;
  --pepti-heading: #2B4A6F;
  --pepti-step-title: #2B4A6F;
  --pepti-step-body: #47627B;
  --pepti-icon-bg: #2563eb;
  --pepti-line-gradient: linear-gradient(180deg, #2563eb, #60a5fa);
}
html[data-gender="women"] .pc-aa-journey {
  --pepti-bg: #fce7f3;
  --pepti-heading: #4a2b6f;
  --pepti-step-title: #4a2b6f;
  --pepti-step-body: #714b7e;
  --pepti-icon-bg: #ec4899;
  --pepti-line-gradient: linear-gradient(180deg, #ec4899, #f9a8d4);
}
.pc-aa-journey__container { max-width: 900px; margin: 0 auto; }
.pc-aa-journey__heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}
.pc-aa-journey__timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.pc-aa-journey__step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  position: relative;
}
.pc-aa-journey__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 65px;
  width: 3px;
  height: calc(100% + 30px);
  background: var(--pepti-line-gradient);
}
.pc-aa-journey__icon {
  width: 55px;
  height: 55px;
  background: var(--pepti-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--pepti-icon-shadow);
  border: 3px solid #ffffff;
  position: relative;
  z-index: 1;
}
.pc-aa-journey__icon span {
  color: var(--pepti-icon-text);
  font-size: 24px;
  font-weight: 700;
}
.pc-aa-journey__content { flex: 1; padding-top: 5px; }
.pc-aa-journey__content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--pepti-step-title);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pc-aa-journey__content p {
  font-size: 16px;
  color: var(--pepti-step-body);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .pc-aa-journey { padding: 60px 20px; }
  .pc-aa-journey__heading { font-size: 32px; margin-bottom: 50px; }
  .pc-aa-journey__timeline { gap: 35px; }
  .pc-aa-journey__step:not(:last-child)::after { height: calc(100% + 25px); }
  .pc-aa-journey__icon { width: 50px; height: 50px; }
  .pc-aa-journey__icon span { font-size: 22px; }
  .pc-aa-journey__content h3 { font-size: 20px; }
  .pc-aa-journey__content p { font-size: 15px; }
}
@media (max-width: 768px) {
  .pc-aa-journey { padding: 50px 16px; }
  .pc-aa-journey__heading { font-size: 26px; margin-bottom: 40px; }
  .pc-aa-journey__timeline { gap: 30px; }
  .pc-aa-journey__step { gap: 18px; }
  .pc-aa-journey__step:not(:last-child)::after { left: 22px; top: 52px; height: calc(100% + 22px); }
  .pc-aa-journey__icon { width: 45px; height: 45px; border-width: 2px; }
  .pc-aa-journey__icon span { font-size: 20px; }
  .pc-aa-journey__content h3 { font-size: 18px; margin-bottom: 8px; }
  .pc-aa-journey__content p { font-size: 14px; }
}
@media (max-width: 480px) {
  .pc-aa-journey { padding: 40px 14px; }
  .pc-aa-journey__heading { font-size: 22px; margin-bottom: 30px; }
  .pc-aa-journey__timeline { gap: 25px; }
  .pc-aa-journey__step { gap: 14px; }
  .pc-aa-journey__step:not(:last-child)::after { left: 19px; top: 48px; height: calc(100% + 18px); }
  .pc-aa-journey__icon { width: 40px; height: 40px; }
  .pc-aa-journey__icon span { font-size: 18px; }
  .pc-aa-journey__content h3 { font-size: 16px; }
  .pc-aa-journey__content p { font-size: 13px; }
}

/* ── FAQ ── */
.pc-aa-faq {
  --pepti-bg: #ffffff;
  --pepti-heading: #1e293b;
  --pepti-item-bg: #ffffff;
  --pepti-item-border: #e2e8f0;
  --pepti-item-border-hover: #7c3aed;
  --pepti-item-border-active: #7c3aed;
  --pepti-item-shadow-active: rgba(0, 0, 0, 0.08);
  --pepti-question-text: #1e293b;
  --pepti-question-text-hover: #1e293b;
  --pepti-question-bg: transparent;
  --pepti-question-bg-hover: #f8fafc;
  --pepti-icon-color: #7c3aed;
  --pepti-icon-color-hover: #6d28d9;
  --pepti-answer-text: #475569;
  padding: 80px 20px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-aa-faq {
  --pepti-heading: #2B4A6F;
  --pepti-item-border: #dbeafe;
  --pepti-item-border-hover: #2563eb;
  --pepti-item-border-active: #2563eb;
  --pepti-question-text: #2B4A6F;
  --pepti-question-text-hover: #2B4A6F;
  --pepti-question-bg-hover: #eff6ff;
  --pepti-icon-color: #2563eb;
  --pepti-icon-color-hover: #1d4ed8;
  --pepti-answer-text: #47627B;
}
html[data-gender="women"] .pc-aa-faq {
  --pepti-heading: #4a2b6f;
  --pepti-item-border: #f9a8d4;
  --pepti-item-border-hover: #ec4899;
  --pepti-item-border-active: #ec4899;
  --pepti-question-text: #4a2b6f;
  --pepti-question-text-hover: #4a2b6f;
  --pepti-question-bg-hover: #fdf2f8;
  --pepti-icon-color: #ec4899;
  --pepti-icon-color-hover: #db2777;
  --pepti-answer-text: #714b7e;
}
.pc-aa-faq__container { max-width: 900px; margin: 0 auto; }
.pc-aa-faq__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 50px;
}
.pc-aa-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pc-aa-faq__item {
  background: var(--pepti-item-bg);
  border: 2px solid var(--pepti-item-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pc-aa-faq__item:hover { border-color: var(--pepti-item-border-hover); }
.pc-aa-faq__item.active {
  border-color: var(--pepti-item-border-active);
  box-shadow: 0 4px 16px var(--pepti-item-shadow-active);
}
.pc-aa-faq__question {
  width: 100%;
  background: var(--pepti-question-bg) !important;
  border: none !important;
  padding: 22px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--pepti-question-text) !important;
  text-align: left;
  transition: all 0.3s ease;
  font-family: inherit;
  gap: 16px;
  outline: none;
}
.pc-aa-faq__question:hover,
.pc-aa-faq__question:focus {
  background: var(--pepti-question-bg-hover) !important;
  color: var(--pepti-question-text-hover) !important;
}
.pc-aa-faq__question:active {
  background: var(--pepti-question-bg-hover) !important;
  color: var(--pepti-question-text-hover) !important;
}
.pc-aa-faq__question span:first-child { color: inherit; }
.pc-aa-faq__icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--pepti-icon-color) !important;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.pc-aa-faq__question:hover .pc-aa-faq__icon,
.pc-aa-faq__question:focus .pc-aa-faq__icon { color: var(--pepti-icon-color-hover) !important; }
.pc-aa-faq__item.active .pc-aa-faq__icon {
  transform: rotate(45deg);
  color: var(--pepti-icon-color-hover) !important;
}
.pc-aa-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.pc-aa-faq__item.active .pc-aa-faq__answer { max-height: 500px; }
.pc-aa-faq__answer p {
  padding: 0 25px 25px;
  font-size: 16px;
  color: var(--pepti-answer-text) !important;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 1024px) {
  .pc-aa-faq { padding: 60px 20px; }
  .pc-aa-faq__heading { font-size: 32px; margin-bottom: 40px; }
  .pc-aa-faq__question { padding: 20px 22px; font-size: 17px; }
  .pc-aa-faq__answer p { padding: 0 22px 22px; font-size: 15px; }
}
@media (max-width: 768px) {
  .pc-aa-faq { padding: 50px 16px; }
  .pc-aa-faq__heading { font-size: 26px; margin-bottom: 30px; }
  .pc-aa-faq__accordion { gap: 12px; }
  .pc-aa-faq__question { padding: 18px 20px; font-size: 16px; }
  .pc-aa-faq__icon { font-size: 24px; }
  .pc-aa-faq__answer p { padding: 0 20px 20px; font-size: 14px; }
}
@media (max-width: 480px) {
  .pc-aa-faq { padding: 40px 14px; }
  .pc-aa-faq__heading { font-size: 22px; margin-bottom: 25px; }
  .pc-aa-faq__accordion { gap: 10px; }
  .pc-aa-faq__item { border-radius: 10px; }
  .pc-aa-faq__question { padding: 16px 18px; font-size: 15px; }
  .pc-aa-faq__icon { font-size: 22px; }
  .pc-aa-faq__answer p { padding: 0 18px 18px; font-size: 13px; }
}

/* ── WHY CHOOSE US ── */
.pc-aa-why {
  --pepti-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-subheading: #475569;
  --pepti-number: #7c3aed;
  --pepti-card-bg: rgba(255, 255, 255, 0.7);
  --pepti-card-border: rgba(255, 255, 255, 0.9);
  --pepti-card-heading: #1e293b;
  --pepti-card-body: #475569;
  --pepti-card-shadow: rgba(0, 0, 0, 0.06);
  --pepti-card-hover-shadow: rgba(0, 0, 0, 0.1);
  padding: 80px 40px;
  background: var(--pepti-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-aa-why {
  --pepti-bg: #C6D9F7;
  --pepti-heading: #2B4A6F;
  --pepti-subheading: #47627B;
  --pepti-number: #2563eb;
  --pepti-card-heading: #2B4A6F;
  --pepti-card-body: #47627B;
}
html[data-gender="women"] .pc-aa-why {
  --pepti-bg: #f7c8cc;
  --pepti-heading: #4a2b6f;
  --pepti-subheading: #714b7e;
  --pepti-number: #ec4899;
  --pepti-card-heading: #4a2b6f;
  --pepti-card-body: #714b7e;
}
.pc-aa-why [data-show] { display: none; }
html:not([data-gender]) .pc-aa-why [data-show="neutral"],
html[data-gender=""] .pc-aa-why [data-show="neutral"],
html[data-gender="neutral"] .pc-aa-why [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-aa-why [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-aa-why [data-show="women"] { display: inline; }
.pc-aa-why__container { max-width: 1200px; margin: 0 auto; }
.pc-aa-why__header { text-align: center; margin-bottom: 60px; }
.pc-aa-why__header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pc-aa-why__header p {
  font-size: 20px;
  color: var(--pepti-subheading);
  font-weight: 500;
  margin: 0;
}
.pc-aa-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pc-aa-why__card {
  background: var(--pepti-card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--pepti-card-border);
  box-shadow: 0 8px 28px var(--pepti-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-aa-why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px var(--pepti-card-hover-shadow);
}
.pc-aa-why__number {
  font-size: 44px;
  font-weight: 700;
  color: var(--pepti-number);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.pc-aa-why__card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--pepti-card-heading);
  margin-bottom: 16px;
  line-height: 1.3;
}
.pc-aa-why__card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pepti-card-body);
  margin: 0;
}
@media (max-width: 1024px) {
  .pc-aa-why { padding: 60px 30px; }
  .pc-aa-why__header { margin-bottom: 50px; }
  .pc-aa-why__header h2 { font-size: 36px; }
  .pc-aa-why__cards { gap: 24px; }
  .pc-aa-why__card { padding: 32px 26px; }
  .pc-aa-why__number { font-size: 38px; }
  .pc-aa-why__card h3 { font-size: 22px; }
}
@media (max-width: 768px) {
  .pc-aa-why { padding: 50px 20px; }
  .pc-aa-why__header { margin-bottom: 40px; }
  .pc-aa-why__header h2 { font-size: 28px; }
  .pc-aa-why__header p { font-size: 17px; }
  .pc-aa-why__cards { grid-template-columns: 1fr; gap: 20px; }
  .pc-aa-why__card { padding: 28px 24px; border-radius: 20px; }
  .pc-aa-why__number { font-size: 36px; margin-bottom: 12px; }
  .pc-aa-why__card h3 { font-size: 20px; margin-bottom: 12px; }
  .pc-aa-why__card p { font-size: 15px; line-height: 1.6; }
}
@media (max-width: 480px) {
  .pc-aa-why { padding: 40px 16px; }
  .pc-aa-why__header h2 { font-size: 24px; }
  .pc-aa-why__header p { font-size: 15px; }
  .pc-aa-why__cards { gap: 16px; }
  .pc-aa-why__card { padding: 24px 20px; border-radius: 16px; }
  .pc-aa-why__number { font-size: 32px; }
  .pc-aa-why__card h3 { font-size: 18px; }
  .pc-aa-why__card p { font-size: 14px; }
}

/* ── CTA ── */
.pc-aa-cta {
  --pepti-bg: #5b21b6;
  --pepti-heading: #ffffff;
  --pepti-body: #e2e8f0;
  --pepti-btn-primary-bg: #ffffff;
  --pepti-btn-primary-text: #5b21b6;
  --pepti-btn-primary-hover-bg: #7c3aed;
  --pepti-btn-primary-hover-text: #ffffff;
  --pepti-btn-secondary-border: #ffffff;
  --pepti-btn-secondary-text: #ffffff;
  --pepti-btn-secondary-hover-bg: rgba(255, 255, 255, 0.15);
  --pepti-btn-secondary-hover-text: #ffffff;
  --pepti-disclaimer: rgba(255, 255, 255, 0.7);
  --pepti-btn-shadow: rgba(0, 0, 0, 0.2);
  --pepti-btn-hover-shadow: rgba(124, 58, 237, 0.4);
  padding: 100px 40px;
  background: var(--pepti-bg);
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-aa-cta {
  --pepti-bg: linear-gradient(135deg, #2B4A6F, #47627B);
  --pepti-body: #D6E5F0;
  --pepti-btn-primary-text: #2B4A6F;
  --pepti-btn-primary-hover-bg: #2563eb;
  --pepti-btn-primary-hover-text: #ffffff;
  --pepti-btn-hover-shadow: rgba(54, 157, 211, 0.4);
}
html[data-gender="women"] .pc-aa-cta {
  --pepti-bg: #4a2b6f;
  --pepti-body: #fce7f3;
  --pepti-btn-primary-text: #4a2b6f;
  --pepti-btn-primary-hover-bg: #f9a8d4;
  --pepti-btn-primary-hover-text: #4a2b6f;
  --pepti-btn-hover-shadow: rgba(0, 0, 0, 0.3);
}
.pc-aa-cta [data-show] { display: none; }
html:not([data-gender]) .pc-aa-cta [data-show="neutral"],
html[data-gender=""] .pc-aa-cta [data-show="neutral"],
html[data-gender="neutral"] .pc-aa-cta [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-aa-cta [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-aa-cta [data-show="women"] { display: inline; }
.pc-aa-cta__container { max-width: 800px; margin: 0 auto; }
.pc-aa-cta__content { margin-bottom: 45px; }
.pc-aa-cta__content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 20px;
  line-height: 1.2;
}
.pc-aa-cta__content p {
  font-size: 20px;
  color: var(--pepti-body);
  line-height: 1.6;
  margin: 0;
}
.pc-aa-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.pc-aa-cta__btn {
  padding: 18px 44px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
.pc-aa-cta__btn--primary,
.pc-aa-cta__btn--primary:link,
.pc-aa-cta__btn--primary:visited {
  background: var(--pepti-btn-primary-bg) !important;
  color: var(--pepti-btn-primary-text) !important;
  box-shadow: 0 8px 24px var(--pepti-btn-shadow);
  border: none !important;
}
.pc-aa-cta__btn--primary:hover,
.pc-aa-cta__btn--primary:focus,
.pc-aa-cta__btn--primary:active {
  background: var(--pepti-btn-primary-hover-bg) !important;
  color: var(--pepti-btn-primary-hover-text) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--pepti-btn-hover-shadow);
  text-decoration: none !important;
}
.pc-aa-cta__btn--secondary,
.pc-aa-cta__btn--secondary:link,
.pc-aa-cta__btn--secondary:visited {
  background: transparent !important;
  color: var(--pepti-btn-secondary-text) !important;
  border: 2px solid var(--pepti-btn-secondary-border) !important;
}
.pc-aa-cta__btn--secondary:hover,
.pc-aa-cta__btn--secondary:focus,
.pc-aa-cta__btn--secondary:active {
  background: var(--pepti-btn-secondary-hover-bg) !important;
  color: var(--pepti-btn-secondary-hover-text) !important;
  transform: translateY(-3px);
  text-decoration: none !important;
}
.pc-aa-cta__disclaimer {
  margin-top: 30px;
  font-size: 13px;
  color: var(--pepti-disclaimer);
  line-height: 1.6;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .pc-aa-cta { padding: 80px 30px; }
  .pc-aa-cta__content h2 { font-size: 36px; }
  .pc-aa-cta__content p { font-size: 18px; }
  .pc-aa-cta__btn { padding: 16px 40px; font-size: 17px; }
  .pc-aa-cta__disclaimer { font-size: 12px; }
}
@media (max-width: 768px) {
  .pc-aa-cta { padding: 60px 20px; }
  .pc-aa-cta__content { margin-bottom: 35px; }
  .pc-aa-cta__content h2 { font-size: 28px; margin-bottom: 16px; }
  .pc-aa-cta__content p { font-size: 16px; }
  .pc-aa-cta__buttons { flex-direction: column; gap: 16px; align-items: center; }
  .pc-aa-cta__btn { width: 100%; max-width: 320px; padding: 16px 36px; font-size: 16px; }
  .pc-aa-cta__disclaimer { margin-top: 25px; font-size: 12px; padding: 0 10px; }
}
@media (max-width: 480px) {
  .pc-aa-cta { padding: 50px 16px; }
  .pc-aa-cta__content h2 { font-size: 24px; }
  .pc-aa-cta__content p { font-size: 15px; }
  .pc-aa-cta__btn { padding: 14px 32px; font-size: 15px; }
  .pc-aa-cta__disclaimer { font-size: 11px; }
}

/* ══════════════════════════════════════════════════════════════
   SECTION: SEXUAL PERFORMANCE
   All classes prefixed pc-sp- (sexual performance)
   Converted from WP Elementor rendered HTML (pc-sh-* → pc-sp-*)
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.pc-sp-hero {
  --pepti-hero-btn-primary: #7c3aed;
  --pepti-hero-btn-primary-hover: #6d28d9;
  --pepti-hero-btn-shadow: rgba(124, 58, 237, 0.5);
  --pepti-hero-btn-shadow-hover: rgba(124, 58, 237, 0.65);
  --pepti-hero-btn-secondary: rgba(255, 255, 255, 0.78);
  --pepti-hero-btn-secondary-hover: #ffffff;
  --pepti-hero-btn-secondary-text: #000000;
  --pepti-hero-btn-secondary-shadow: rgba(0, 0, 0, 0.5);
  --pepti-hero-btn-secondary-shadow-hover: rgba(124, 58, 237, 0.65);
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
}
html[data-gender="men"] .pc-sp-hero {
  --pepti-hero-btn-primary: #60a5fa;
  --pepti-hero-btn-primary-hover: #93c5fd;
  --pepti-hero-btn-shadow: rgba(62, 189, 246, 0.5);
  --pepti-hero-btn-shadow-hover: rgba(62, 189, 246, 0.65);
  --pepti-hero-btn-secondary-shadow-hover: rgba(62, 189, 246, 0.65);
}
html[data-gender="women"] .pc-sp-hero {
  --pepti-hero-btn-primary: #f9a8d4;
  --pepti-hero-btn-primary-hover: #ec4899;
  --pepti-hero-btn-shadow: rgba(244, 177, 229, 0.5);
  --pepti-hero-btn-shadow-hover: rgba(244, 177, 229, 0.85);
  --pepti-hero-btn-secondary-shadow-hover: rgba(244, 177, 229, 0.85);
}
.pc-sp-hero__bg { position: absolute; inset: 0; z-index: 0; }
.pc-sp-hero__bg-img { position: absolute; inset: 0; display: none; backface-visibility: hidden; }
.pc-sp-hero__bg-img[data-show="neutral"] {
  background-color: #e2e8f0;
  background-image: url('/uploads/2025/11/Sex.png');
  background-size: cover; background-position: center right; background-repeat: no-repeat;
}
.pc-sp-hero__bg-img[data-show="men"] {
  background-color: #bfdbfe;
  background-image: url('/uploads/2025/11/Sex.png');
  background-size: cover; background-position: center right; background-repeat: no-repeat;
}
.pc-sp-hero__bg-img[data-show="women"] {
  background-color: #f5c6d6;
  background-image: url('/uploads/2025/11/Sex.png');
  background-size: cover; background-position: center right; background-repeat: no-repeat;
}
html:not([data-gender]) .pc-sp-hero__bg-img[data-show="neutral"],
html[data-gender=""] .pc-sp-hero__bg-img[data-show="neutral"],
html[data-gender="neutral"] .pc-sp-hero__bg-img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-sp-hero__bg-img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-sp-hero__bg-img[data-show="women"] { display: block; }
.pc-sp-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 1; pointer-events: none;
}
.pc-sp-hero__container { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 80px 40px; width: 100%; }
.pc-sp-hero__content { max-width: 600px; }
.pc-sp-hero__title { font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: #fff; line-height: 1.15; margin: 0 0 24px 0; text-shadow: 0 2px 4px rgba(0,0,0,0.15); }
.pc-sp-hero__subtitle { font-size: clamp(16px, 2vw, 20px); color: #fff; line-height: 1.7; margin: 0 0 36px 0; text-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.pc-sp-hero__buttons { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.pc-sp-hero__btn { display: inline-flex; align-items: center; justify-content: center; min-width: 220px; padding: 16px 40px; border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none !important; transition: all 0.3s ease; cursor: pointer; border: none; }
.pc-sp-hero__btn--primary, .pc-sp-hero__btn--primary:link, .pc-sp-hero__btn--primary:visited { background: var(--pepti-hero-btn-primary) !important; color: #fff !important; box-shadow: 0 4px 15px var(--pepti-hero-btn-shadow); }
.pc-sp-hero__btn--primary:hover { background: var(--pepti-hero-btn-primary-hover) !important; transform: translateY(-2px); box-shadow: 0 6px 20px var(--pepti-hero-btn-shadow-hover); }
.pc-sp-hero__btn--secondary, .pc-sp-hero__btn--secondary:link, .pc-sp-hero__btn--secondary:visited { background: var(--pepti-hero-btn-secondary) !important; color: var(--pepti-hero-btn-secondary-text) !important; box-shadow: 0 4px 15px var(--pepti-hero-btn-secondary-shadow); }
.pc-sp-hero__btn--secondary:hover { background: var(--pepti-hero-btn-secondary-hover) !important; transform: translateY(-2px); box-shadow: 0 6px 20px var(--pepti-hero-btn-secondary-shadow-hover); }
@media (max-width: 1024px) { .pc-sp-hero { min-height: 600px; } .pc-sp-hero__container { padding: 60px 30px; } }
@media (max-width: 768px) { .pc-sp-hero { min-height: 650px; align-items: flex-start; } .pc-sp-hero__container { padding: 50px 20px; } .pc-sp-hero__content { max-width: 100%; } .pc-sp-hero__buttons { flex-direction: column; align-items: stretch; } .pc-sp-hero__btn { width: 100%; min-width: unset; } }
@media (max-width: 480px) { .pc-sp-hero { min-height: 600px; } .pc-sp-hero__container { padding: 100px 16px; } .pc-sp-hero__btn { padding: 14px 32px; font-size: 15px; } }

/* ── CALCULATOR / SLIDER ── */
.pc-sp-calc {
  --pepti-section-bg: #f8fafc; --pepti-heading: #1e293b; --pepti-body: #475569;
  --pepti-accent: #7c3aed; --pepti-accent-hover: #6d28d9; --pepti-accent-light: #a78bfa;
  --pepti-accent-gradient: linear-gradient(135deg, #7c3aed, #a78bfa);
  --pepti-border: #e2e8f0; --pepti-stat-bg: rgba(255,255,255,0.8); --pepti-stat-shadow: rgba(0,0,0,0.06);
  --pepti-btn-shadow: rgba(124,58,237,0.3); --pepti-box-bg: #fff; --pepti-result-bg: #f8fafc;
  padding: 60px 40px; background: var(--pepti-section-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sp-calc { --pepti-section-bg: #bfdbfe; --pepti-heading: #2B4A6F; --pepti-body: #47627B; --pepti-accent: #2563eb; --pepti-accent-hover: #1d4ed8; --pepti-accent-light: #60a5fa; --pepti-accent-gradient: linear-gradient(135deg, #2563eb, #60a5fa); --pepti-border: #dbeafe; --pepti-stat-shadow: rgba(54,157,211,0.08); --pepti-btn-shadow: rgba(54,157,211,0.3); --pepti-result-bg: #eff6ff; }
html[data-gender="women"] .pc-sp-calc { --pepti-section-bg: #f5c6d6; --pepti-heading: #4a2b6f; --pepti-body: #714b7e; --pepti-accent: #ec4899; --pepti-accent-hover: #db2777; --pepti-accent-light: #f9a8d4; --pepti-accent-gradient: linear-gradient(135deg, #ec4899, #f9a8d4); --pepti-border: #f9a8d4; --pepti-stat-shadow: rgba(207,45,172,0.08); --pepti-btn-shadow: rgba(207,45,172,0.3); --pepti-result-bg: #fdf2f8; }
.pc-sp-calc__right[data-show] { display: none; }
html:not([data-gender]) .pc-sp-calc__right[data-show="neutral"], html[data-gender=""] .pc-sp-calc__right[data-show="neutral"], html[data-gender="neutral"] .pc-sp-calc__right[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-sp-calc__right[data-show="men"] { display: block; }
html[data-gender="women"] .pc-sp-calc__right[data-show="women"] { display: block; }
.pc-sp-calc [data-show]:not(.pc-sp-calc__right) { display: none; }
html:not([data-gender]) .pc-sp-calc [data-show="neutral"]:not(.pc-sp-calc__right), html[data-gender=""] .pc-sp-calc [data-show="neutral"]:not(.pc-sp-calc__right), html[data-gender="neutral"] .pc-sp-calc [data-show="neutral"]:not(.pc-sp-calc__right) { display: inline; }
html[data-gender="men"] .pc-sp-calc [data-show="men"]:not(.pc-sp-calc__right) { display: inline; }
html[data-gender="women"] .pc-sp-calc [data-show="women"]:not(.pc-sp-calc__right) { display: inline; }
.pc-sp-calc__container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pc-sp-calc__left { max-width: 600px; }
.pc-sp-calc__title { font-size: 48px; font-weight: 700; color: var(--pepti-heading); margin-bottom: 40px; line-height: 1.2; }
.pc-sp-calc__stats { display: flex; flex-direction: column; gap: 20px; margin-bottom: 35px; }
.pc-sp-calc__stat { display: flex; align-items: flex-start; gap: 16px; background: var(--pepti-stat-bg); padding: 18px 22px; border-radius: 12px; border: 1px solid var(--pepti-border); box-shadow: 0 4px 12px var(--pepti-stat-shadow); backdrop-filter: blur(10px); }
.pc-sp-calc__check-icon { flex-shrink: 0; width: 38px; height: 38px; background: var(--pepti-accent-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 8px var(--pepti-btn-shadow); }
.pc-sp-calc__stat p { font-size: 17px; color: var(--pepti-body); line-height: 1.5; margin: 0; }
.pc-sp-calc__stat p strong { color: var(--pepti-heading); }
.pc-sp-calc__stat sup a { color: var(--pepti-accent); text-decoration: none; font-size: 12px; }
.pc-sp-calc__divider { height: 2px; background: linear-gradient(90deg, transparent, var(--pepti-border), transparent); margin: 30px 0; }
.pc-sp-calc__cta-row { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.pc-sp-calc__btn { padding: 18px 40px; font-size: 18px; font-weight: 600; color: #fff !important; background: var(--pepti-accent-gradient) !important; border: none; border-radius: 50px; cursor: pointer; box-shadow: 0 6px 20px var(--pepti-btn-shadow); transition: all 0.3s ease; text-decoration: none !important; display: inline-block; }
.pc-sp-calc__btn:hover { transform: translateY(-2px); background: var(--pepti-accent-hover) !important; box-shadow: 0 8px 24px var(--pepti-btn-shadow); }
.pc-sp-calc__contact { display: flex; flex-direction: column; gap: 4px; }
.pc-sp-calc__contact-label { font-size: 14px; color: var(--pepti-body); }
.pc-sp-calc__phone { font-size: 22px; font-weight: 700; color: var(--pepti-accent) !important; text-decoration: none !important; transition: color 0.3s; }
.pc-sp-calc__phone:hover { color: var(--pepti-accent-light) !important; }
.pc-sp-calc__box { background: var(--pepti-box-bg); border-radius: 24px; padding: 30px; box-shadow: 0 12px 40px rgba(0,0,0,0.08); border: 2px solid var(--pepti-border); position: relative; }
.pc-sp-calc__featured-badge { display: inline-block; background: var(--pepti-accent-gradient); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 8px 20px; border-radius: 50px; margin-bottom: 16px; box-shadow: 0 4px 12px var(--pepti-btn-shadow); }
.pc-sp-calc__box-heading { font-size: 22px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 8px; }
.pc-sp-calc__box-subtitle { font-size: 14px; color: var(--pepti-body); text-align: center; margin-bottom: 25px; line-height: 1.5; }
.pc-sp-calc__box--women { text-align: center; }
.pc-sp-calc__box-heading--women { font-size: 28px; margin-bottom: 4px; }
.pc-sp-calc__box-subtitle--women { color: var(--pepti-accent); font-weight: 600; font-style: italic; margin-bottom: 20px; }
.pc-sp-calc__card-body { display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: start; margin-bottom: 25px; text-align: left; }
.pc-sp-calc__card-body--women { grid-template-columns: 140px 1fr; }
.pc-sp-calc__image-container { display: flex; justify-content: center; }
.pc-sp-calc__image { max-width: 110px; height: auto; filter: drop-shadow(0 8px 20px rgba(0,0,0,0)); }
.pc-sp-calc__image--women { max-width: 130px; }
.pc-sp-calc__mode-label { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--pepti-accent); margin-bottom: 8px; }
.pc-sp-calc__hero-text { font-size: 18px; font-weight: 700; color: var(--pepti-heading); margin-bottom: 10px; line-height: 1.3; }
.pc-sp-calc__description { font-size: 13px; color: var(--pepti-body); line-height: 1.6; margin-bottom: 12px; }
.pc-sp-calc__benefits { list-style: none; padding: 0; margin: 0 0 12px 0; }
.pc-sp-calc__benefits li { font-size: 13px; color: var(--pepti-heading); line-height: 1.5; padding-left: 18px; position: relative; margin-bottom: 5px; }
.pc-sp-calc__benefits li:before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--pepti-accent); border-radius: 50%; }
.pc-sp-calc__mood-tag { display: inline-block; background: var(--pepti-result-bg); color: var(--pepti-body); padding: 7px 14px; border-radius: 20px; font-size: 12px; font-style: italic; border: 1px solid var(--pepti-border); }
.pc-sp-calc__slider-section { margin-bottom: 25px; }
.pc-sp-calc__track-wrapper { position: relative; height: 26px; margin: 20px 0 15px; }
.pc-sp-calc__track { position: absolute; top: 50%; transform: translateY(-50%); left: 30px; right: 30px; height: 6px; background: var(--pepti-border); border-radius: 10px; }
.pc-sp-calc__progress { position: absolute; height: 6px; background: var(--pepti-accent-gradient); border-radius: 10px; transition: width 0.4s ease; }
.pc-sp-calc__range { position: absolute; width: calc(100% - 60px); left: 30px; top: 50%; transform: translateY(-50%); -webkit-appearance: none; background: transparent; outline: none; height: 26px; cursor: pointer; margin: 0; }
.pc-sp-calc__range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; background: var(--pepti-accent); border-radius: 50%; cursor: pointer; border: 3px solid #fff; box-shadow: 0 4px 12px var(--pepti-btn-shadow); }
.pc-sp-calc__range::-moz-range-thumb { width: 22px; height: 22px; background: var(--pepti-accent); border-radius: 50%; cursor: pointer; border: 3px solid #fff; box-shadow: 0 4px 12px var(--pepti-btn-shadow); }
.pc-sp-calc__labels { display: flex; justify-content: space-between; padding: 0 30px; margin-top: 12px; }
.pc-sp-calc__label { font-size: 11px; font-weight: 600; color: var(--pepti-body); text-align: center; flex: 1; line-height: 1.3; transition: all 0.3s ease; cursor: pointer; }
.pc-sp-calc__label--active { color: var(--pepti-accent); transform: scale(1.05); }
.pc-sp-calc__box-footer { text-align: center; }
.pc-sp-calc__box-btn { display: block; width: 100%; padding: 20px 28px; font-size: 18px; font-weight: 700; color: #fff !important; background: var(--pepti-accent) !important; border: none; border-radius: 14px; cursor: pointer; box-shadow: 0 10px 30px var(--pepti-btn-shadow); transition: all 0.3s ease; margin-bottom: 12px; font-family: inherit; text-decoration: none !important; text-align: center; }
.pc-sp-calc__box-btn:hover { transform: translateY(-2px); background: var(--pepti-accent-hover) !important; box-shadow: 0 14px 40px var(--pepti-btn-shadow); }
.pc-sp-calc__box-btn--women { background: var(--pepti-accent-light) !important; color: var(--pepti-heading) !important; }
.pc-sp-calc__box-btn--women:hover { background: var(--pepti-accent) !important; color: #fff !important; }
.pc-sp-calc__disclaimer { font-size: 11px; color: #64748b; margin: 0; line-height: 1.5; }
@media (max-width: 1200px) { .pc-sp-calc__container { gap: 40px; } .pc-sp-calc__title { font-size: 40px; } }
@media (max-width: 1024px) { .pc-sp-calc { padding: 50px 30px; } .pc-sp-calc__container { grid-template-columns: 1fr; gap: 40px; } .pc-sp-calc__left { max-width: 100%; text-align: center; } .pc-sp-calc__title { font-size: 36px; } .pc-sp-calc__stat { text-align: left; } .pc-sp-calc__cta-row { justify-content: center; } .pc-sp-calc__box { max-width: 500px; margin: 0 auto; } }
@media (max-width: 768px) { .pc-sp-calc { padding: 40px 20px; } .pc-sp-calc__title { font-size: 32px; margin-bottom: 28px; } .pc-sp-calc__cta-row { flex-direction: column; align-items: center; gap: 18px; } .pc-sp-calc__btn { width: 100%; max-width: 300px; text-align: center; } .pc-sp-calc__contact { align-items: center; } .pc-sp-calc__card-body { grid-template-columns: 80px 1fr; gap: 14px; } .pc-sp-calc__card-body--women { grid-template-columns: 80px 1fr; } .pc-sp-calc__image { max-width: 75px; } .pc-sp-calc__image--women { max-width: 75px; } }
@media (max-width: 480px) { .pc-sp-calc { padding: 30px 16px; } .pc-sp-calc__title { font-size: 26px; } .pc-sp-calc__card-body { grid-template-columns: 65px 1fr; gap: 10px; } .pc-sp-calc__card-body--women { grid-template-columns: 65px 1fr; } .pc-sp-calc__image { max-width: 60px; } .pc-sp-calc__image--women { max-width: 60px; } .pc-sp-calc__box { padding: 20px 16px; } .pc-sp-calc__box-heading { font-size: 18px; } .pc-sp-calc__box-subtitle { font-size: 12px; margin-bottom: 18px; } .pc-sp-calc__box-btn { padding: 16px 24px; font-size: 16px; } }

/* ── FEATURES ── */
.pc-sp-features {
  --pepti-bg: #fff; --pepti-heading: #1e293b; --pepti-subheading: #1e293b; --pepti-body: #475569;
  --pepti-border: #e2e8f0; --pepti-image-bg: #f8fafc;
  --pepti-highlight-bg: rgba(124,58,237,0.06); --pepti-highlight-border: #7c3aed; --pepti-highlight-text: #6d28d9;
  padding: 80px 20px; background: var(--pepti-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sp-features { --pepti-heading: #2B4A6F; --pepti-subheading: #2B4A6F; --pepti-body: #47627B; --pepti-border: #dbeafe; --pepti-image-bg: #eff6ff; --pepti-highlight-bg: rgba(54,157,211,0.08); --pepti-highlight-border: #2563eb; --pepti-highlight-text: #1d4ed8; }
html[data-gender="women"] .pc-sp-features { --pepti-heading: #4a2b6f; --pepti-subheading: #4a2b6f; --pepti-body: #714b7e; --pepti-border: #f9a8d4; --pepti-image-bg: #fce7f3; --pepti-highlight-bg: rgba(207,45,172,0.08); --pepti-highlight-border: #ec4899; --pepti-highlight-text: #db2777; }
.pc-sp-features [data-show] { display: none; }
html:not([data-gender]) .pc-sp-features [data-show="neutral"], html[data-gender=""] .pc-sp-features [data-show="neutral"], html[data-gender="neutral"] .pc-sp-features [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-sp-features [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-sp-features [data-show="women"] { display: inline; }
.pc-sp-features img[data-show] { display: none; }
html:not([data-gender]) .pc-sp-features img[data-show="neutral"], html[data-gender=""] .pc-sp-features img[data-show="neutral"], html[data-gender="neutral"] .pc-sp-features img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-sp-features img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-sp-features img[data-show="women"] { display: block; }
.pc-sp-features__container { max-width: 1200px; margin: 0 auto; }
.pc-sp-features__heading { font-size: 36px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 60px; line-height: 1.2; }
.pc-sp-features__row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.pc-sp-features__row:last-child { margin-bottom: 0; }
.pc-sp-features__row--reverse { direction: rtl; }
.pc-sp-features__row--reverse > * { direction: ltr; }
.pc-sp-features__image { border: 2px solid var(--pepti-border); border-radius: 16px; overflow: hidden; min-height: 280px; display: flex; align-items: center; justify-content: center; background: var(--pepti-image-bg); }
.pc-sp-features__image img { width: 100%; height: 100%; object-fit: cover; }
.pc-sp-features__content h3 { font-size: 28px; font-weight: 700; color: var(--pepti-subheading); margin-bottom: 16px; line-height: 1.3; }
.pc-sp-features__content p { font-size: 16px; color: var(--pepti-body); line-height: 1.7; margin-bottom: 20px; }
.pc-sp-features__highlight { background: var(--pepti-highlight-bg); border-left: 4px solid var(--pepti-highlight-border); padding: 16px 20px; border-radius: 0 12px 12px 0; font-size: 15px; color: var(--pepti-highlight-text); font-weight: 600; line-height: 1.5; }
@media (max-width: 768px) { .pc-sp-features { padding: 50px 16px; } .pc-sp-features__heading { font-size: 26px; margin-bottom: 40px; } .pc-sp-features__row, .pc-sp-features__row--reverse { grid-template-columns: 1fr; direction: ltr; gap: 25px; margin-bottom: 40px; } .pc-sp-features__image { min-height: 220px; border-radius: 12px; } .pc-sp-features__content h3 { font-size: 20px; margin-bottom: 12px; } .pc-sp-features__content p { font-size: 15px; } .pc-sp-features__highlight { padding: 14px 16px; font-size: 14px; } }

/* ── BENEFITS GRID ── */
.pc-sp-benefits {
  --pepti-bg: #f8fafc; --pepti-heading: #1e293b; --pepti-card-bg: #fff; --pepti-card-heading: #1e293b;
  --pepti-body: #475569; --pepti-border: #e2e8f0; --pepti-border-hover: #7c3aed;
  --pepti-shadow: rgba(0,0,0,0.06); --pepti-shadow-hover: rgba(0,0,0,0.1);
  padding: 80px 20px; background: var(--pepti-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sp-benefits { --pepti-bg: #eff6ff; --pepti-heading: #2B4A6F; --pepti-card-heading: #2B4A6F; --pepti-body: #47627B; --pepti-border: #dbeafe; --pepti-border-hover: #2563eb; }
html[data-gender="women"] .pc-sp-benefits { --pepti-bg: #fdf2f8; --pepti-heading: #4a2b6f; --pepti-card-heading: #4a2b6f; --pepti-body: #714b7e; --pepti-border: #f9a8d4; --pepti-border-hover: #ec4899; }
.pc-sp-benefits [data-show] { display: none; }
html:not([data-gender]) .pc-sp-benefits [data-show="neutral"], html[data-gender=""] .pc-sp-benefits [data-show="neutral"], html[data-gender="neutral"] .pc-sp-benefits [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-sp-benefits [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-sp-benefits [data-show="women"] { display: inline; }
.pc-sp-benefits__container { max-width: 1100px; margin: 0 auto; }
.pc-sp-benefits__heading { font-size: 38px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 50px; line-height: 1.2; }
.pc-sp-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.pc-sp-benefits__card { background: var(--pepti-card-bg); padding: 35px 30px; border-radius: 16px; border: 2px solid var(--pepti-border); text-align: center; transition: all 0.3s ease; box-shadow: 0 4px 16px var(--pepti-shadow); }
.pc-sp-benefits__card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px var(--pepti-shadow-hover); border-color: var(--pepti-border-hover); }
.pc-sp-benefits__card h3 { font-size: 20px; font-weight: 700; color: var(--pepti-card-heading); margin-bottom: 12px; line-height: 1.3; }
.pc-sp-benefits__card p { font-size: 15px; color: var(--pepti-body); line-height: 1.6; margin: 0; }
@media (max-width: 768px) { .pc-sp-benefits { padding: 60px 16px; } .pc-sp-benefits__heading { font-size: 28px; margin-bottom: 35px; } .pc-sp-benefits__grid { grid-template-columns: 1fr; gap: 20px; } }

/* ── JOURNEY ── */
.pc-sp-journey {
  --pepti-bg: transparent; --pepti-heading: #1e293b; --pepti-step-heading: #1e293b; --pepti-body: #475569;
  --pepti-icon-bg: linear-gradient(135deg, #7c3aed, #a78bfa); --pepti-icon-text: #fff;
  --pepti-line: linear-gradient(to bottom, #7c3aed, #a78bfa);
  padding: 80px 20px; background: var(--pepti-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sp-journey { --pepti-heading: #2B4A6F; --pepti-step-heading: #2B4A6F; --pepti-body: #47627B; --pepti-icon-bg: linear-gradient(135deg, #2563eb, #60a5fa); --pepti-line: linear-gradient(to bottom, #2563eb, #60a5fa); }
html[data-gender="women"] .pc-sp-journey { --pepti-heading: #4a2b6f; --pepti-step-heading: #4a2b6f; --pepti-body: #714b7e; --pepti-icon-bg: linear-gradient(135deg, #ec4899, #f9a8d4); --pepti-line: linear-gradient(to bottom, #ec4899, #f9a8d4); }
.pc-sp-journey__container { max-width: 900px; margin: 0 auto; }
.pc-sp-journey__heading { font-size: 38px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 60px; line-height: 1.2; }
.pc-sp-journey__timeline { display: flex; flex-direction: column; gap: 40px; }
.pc-sp-journey__step { display: flex; gap: 30px; align-items: flex-start; position: relative; }
.pc-sp-journey__step:not(:last-child)::before { content: ''; position: absolute; left: 24px; top: 55px; width: 3px; height: calc(100% + 20px); background: var(--pepti-line); border-radius: 2px; }
.pc-sp-journey__icon { flex-shrink: 0; width: 50px; height: 50px; background: var(--pepti-icon-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,0.15); z-index: 1; }
.pc-sp-journey__icon span { font-size: 22px; font-weight: 700; color: var(--pepti-icon-text); }
.pc-sp-journey__content { flex: 1; padding-top: 4px; }
.pc-sp-journey__content h3 { font-size: 22px; font-weight: 700; color: var(--pepti-step-heading); margin-bottom: 10px; line-height: 1.3; }
.pc-sp-journey__content p { font-size: 16px; color: var(--pepti-body); line-height: 1.6; margin: 0; }
@media (max-width: 768px) { .pc-sp-journey { padding: 60px 16px; } .pc-sp-journey__heading { font-size: 28px; margin-bottom: 40px; } .pc-sp-journey__step { gap: 20px; } .pc-sp-journey__icon { width: 42px; height: 42px; } .pc-sp-journey__icon span { font-size: 18px; } .pc-sp-journey__content h3 { font-size: 18px; } .pc-sp-journey__content p { font-size: 14px; } .pc-sp-journey__step:not(:last-child)::before { left: 20px; top: 46px; height: calc(100% + 14px); } }

/* ── WHY CHOOSE US ── */
.pc-sp-why {
  --pepti-bg: #f8fafc; --pepti-heading: #1e293b; --pepti-subheading: #475569;
  --pepti-card-bg: rgba(255,255,255,0.7); --pepti-card-border: rgba(255,255,255,0.8);
  --pepti-card-shadow: rgba(0,0,0,0.06); --pepti-card-shadow-hover: rgba(0,0,0,0.1);
  --pepti-number: #7c3aed; --pepti-card-heading: #1e293b; --pepti-body: #475569;
  padding: 80px 40px; background: var(--pepti-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sp-why { --pepti-bg: #eff6ff; --pepti-heading: #2B4A6F; --pepti-subheading: #47627B; --pepti-number: #2563eb; --pepti-card-heading: #2B4A6F; --pepti-body: #47627B; --pepti-card-shadow: rgba(54,157,211,0.08); --pepti-card-shadow-hover: rgba(54,157,211,0.18); }
html[data-gender="women"] .pc-sp-why { --pepti-bg: #fdf2f8; --pepti-heading: #4a2b6f; --pepti-subheading: #714b7e; --pepti-number: #ec4899; --pepti-card-heading: #4a2b6f; --pepti-body: #714b7e; --pepti-card-shadow: rgba(207,45,172,0.08); --pepti-card-shadow-hover: rgba(207,45,172,0.18); }
.pc-sp-why__container { max-width: 1200px; margin: 0 auto; }
.pc-sp-why__header { text-align: center; margin-bottom: 60px; }
.pc-sp-why__header h2 { font-size: 42px; font-weight: 700; color: var(--pepti-heading); margin-bottom: 14px; line-height: 1.2; }
.pc-sp-why__header p { font-size: 20px; color: var(--pepti-subheading); font-weight: 500; margin: 0; }
.pc-sp-why__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pc-sp-why__card { background: var(--pepti-card-bg); backdrop-filter: blur(14px); padding: 40px 32px; border-radius: 24px; border: 1px solid var(--pepti-card-border); box-shadow: 0 8px 28px var(--pepti-card-shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pc-sp-why__card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px var(--pepti-card-shadow-hover); }
.pc-sp-why__number { font-size: 48px; font-weight: 800; color: var(--pepti-number); display: block; margin-bottom: 20px; line-height: 1; opacity: 0.9; }
.pc-sp-why__card h3 { font-size: 22px; font-weight: 700; color: var(--pepti-card-heading); margin-bottom: 14px; line-height: 1.3; }
.pc-sp-why__card p { font-size: 15px; color: var(--pepti-body); line-height: 1.7; margin: 0; }
@media (max-width: 768px) { .pc-sp-why { padding: 60px 20px; } .pc-sp-why__header h2 { font-size: 28px; } .pc-sp-why__header p { font-size: 16px; } .pc-sp-why__cards { grid-template-columns: 1fr; gap: 24px; } }

/* ── FAQ ── */
.pc-sp-faq {
  --pepti-bg: #fff; --pepti-heading: #1e293b; --pepti-question-text: #1e293b;
  --pepti-question-hover-bg: #f8fafc; --pepti-icon: #7c3aed; --pepti-icon-active: #6d28d9;
  --pepti-answer-text: #475569; --pepti-border: #e2e8f0; --pepti-border-hover: #7c3aed;
  --pepti-shadow-active: rgba(124,58,237,0.15);
  padding: 80px 20px; background: var(--pepti-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-sp-faq { --pepti-heading: #2B4A6F; --pepti-question-text: #2B4A6F; --pepti-question-hover-bg: #eff6ff; --pepti-icon: #2563eb; --pepti-icon-active: #1d4ed8; --pepti-answer-text: #47627B; --pepti-border: #dbeafe; --pepti-border-hover: #2563eb; --pepti-shadow-active: rgba(54,157,211,0.15); }
html[data-gender="women"] .pc-sp-faq { --pepti-heading: #4a2b6f; --pepti-question-text: #ec4899; --pepti-question-hover-bg: #fdf2f8; --pepti-icon: #ec4899; --pepti-icon-active: #db2777; --pepti-answer-text: #714b7e; --pepti-border: #f9a8d4; --pepti-border-hover: #ec4899; --pepti-shadow-active: rgba(207,45,172,0.15); }
.pc-sp-faq [data-show] { display: none; }
html:not([data-gender]) .pc-sp-faq [data-show="neutral"], html[data-gender=""] .pc-sp-faq [data-show="neutral"], html[data-gender="neutral"] .pc-sp-faq [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-sp-faq [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-sp-faq [data-show="women"] { display: inline; }
.pc-sp-faq__container { max-width: 900px; margin: 0 auto; }
.pc-sp-faq__heading { font-size: 36px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 50px; line-height: 1.2; }
.pc-sp-faq__accordion { display: flex; flex-direction: column; gap: 16px; }
.pc-sp-faq__item { background: #fff; border: 2px solid var(--pepti-border); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
.pc-sp-faq__item:hover { border-color: var(--pepti-border-hover); }
.pc-sp-faq__item.active { border-color: var(--pepti-icon); box-shadow: 0 4px 16px var(--pepti-shadow-active); }
.pc-sp-faq__question { width: 100%; background: none !important; border: none; padding: 22px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 18px; font-weight: 600; color: var(--pepti-question-text); text-align: left; transition: all 0.3s ease; font-family: inherit; }
.pc-sp-faq__question:hover { background: var(--pepti-question-hover-bg) !important; }
.pc-sp-faq__item.active .pc-sp-faq__question { background: var(--pepti-question-hover-bg) !important; }
.pc-sp-faq__icon { font-size: 28px; color: var(--pepti-icon); font-weight: 300; transition: transform 0.3s ease; line-height: 1; flex-shrink: 0; padding-left: 20px; }
.pc-sp-faq__item.active .pc-sp-faq__icon { transform: rotate(45deg); color: var(--pepti-icon-active); }
.pc-sp-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.pc-sp-faq__item.active .pc-sp-faq__answer { max-height: 600px; }
.pc-sp-faq__answer p { padding: 0 25px 25px; font-size: 16px; color: var(--pepti-answer-text); line-height: 1.7; margin: 0; }
@media (max-width: 768px) { .pc-sp-faq { padding: 50px 16px; } .pc-sp-faq__heading { font-size: 26px; margin-bottom: 30px; } .pc-sp-faq__question { font-size: 16px; padding: 18px 20px; } .pc-sp-faq__answer p { font-size: 14px; padding: 0 20px 20px; } }

/* ── ALLIED HEALTH ── */
.pc-sp-allied-health { background: var(--pepti-bg-light); padding: 80px 20px; text-align: center; }
.pc-sp-allied-health__inner { max-width: 1100px; margin: 0 auto; }
.pc-sp-allied-health__badge { display: inline-block; background: var(--pepti-primary-subtle); color: var(--pepti-primary); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 18px; border-radius: var(--pepti-radius-full); margin-bottom: 16px; }
.pc-sp-allied-health__title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--pepti-text-dark); margin: 0 0 12px; line-height: 1.25; }
.pc-sp-allied-health__subtitle { font-size: 1.05rem; color: var(--pepti-text); max-width: 650px; margin: 0 auto 48px; line-height: 1.7; }
.pc-sp-allied-health__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-bottom: 40px; }
.pc-sp-allied-health__card { background: var(--pepti-white); border: 1px solid var(--pepti-border); border-radius: var(--pepti-radius-xl); padding: 36px 28px; text-align: left; transition: all var(--pepti-transition-base); }
.pc-sp-allied-health__card:hover { box-shadow: var(--pepti-shadow-theme); border-color: var(--pepti-border-hover); transform: translateY(-2px); }
.pc-sp-allied-health__icon { font-size: 2rem; margin-bottom: 14px; }
.pc-sp-allied-health__card-title { font-size: 1.15rem; font-weight: 700; color: var(--pepti-text-dark); margin: 0 0 10px; }
.pc-sp-allied-health__card-desc { font-size: 0.95rem; color: var(--pepti-text); line-height: 1.7; margin: 0; }
.pc-sp-allied-health__note { font-size: 13px; font-style: italic; color: var(--pepti-text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }
@media (max-width: 768px) { .pc-sp-allied-health { padding: 56px 16px; } .pc-sp-allied-health__grid { grid-template-columns: 1fr; gap: 20px; } }

/* ── OTC PRODUCTS ── */
.pc-sp-otc-products { background: var(--pepti-bg-dark); padding: 80px 20px; text-align: center; }
.pc-sp-otc-products__inner { max-width: 1100px; margin: 0 auto; }
.pc-sp-otc-products__badge { display: inline-block; background: var(--pepti-glow-light); color: var(--pepti-primary-light); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 18px; border-radius: var(--pepti-radius-full); margin-bottom: 16px; }
.pc-sp-otc-products__title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--pepti-text-on-dark); margin: 0 0 12px; line-height: 1.25; }
.pc-sp-otc-products__subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 650px; margin: 0 auto 48px; line-height: 1.7; }
.pc-sp-otc-products__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 40px; }
.pc-sp-otc-products__card { background: var(--pepti-bg-dark-secondary); border: 1px solid var(--pepti-glow-light); border-radius: var(--pepti-radius-xl); padding: 32px 24px; text-align: center; transition: all var(--pepti-transition-base); }
.pc-sp-otc-products__card:hover { border-color: var(--pepti-primary-light); box-shadow: 0 8px 32px var(--pepti-glow); transform: translateY(-2px); }
.pc-sp-otc-products__card-icon { font-size: 2rem; margin-bottom: 12px; }
.pc-sp-otc-products__card-title { font-size: 1.05rem; font-weight: 700; color: var(--pepti-text-on-dark); margin: 0 0 8px; }
.pc-sp-otc-products__card-desc { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }
.pc-sp-otc-products__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; padding: 14px 32px; background: var(--pepti-gradient-primary); color: #fff; font-weight: 700; font-size: 1rem; border-radius: var(--pepti-radius-lg); text-decoration: none; transition: all var(--pepti-transition-base); }
.pc-sp-otc-products__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--pepti-glow-strong); }
.pc-sp-otc-products__note { font-size: 13px; font-style: italic; color: rgba(255,255,255,0.45); max-width: 600px; margin: 24px auto 0; line-height: 1.6; }
@media (max-width: 768px) { .pc-sp-otc-products { padding: 56px 16px; } .pc-sp-otc-products__grid { grid-template-columns: 1fr; gap: 16px; } }

/* ── CTA ── */
.pc-sp-cta {
  --pepti-bg: #5b21b6; --pepti-headline: #fff; --pepti-subheading: #e2e8f0;
  --pepti-btn-primary-bg: #fff; --pepti-btn-primary-text: #5b21b6;
  --pepti-btn-primary-hover-bg: #7c3aed; --pepti-btn-primary-hover-text: #fff;
  --pepti-btn-secondary-border: #fff; --pepti-btn-secondary-text: #fff;
  --pepti-btn-secondary-hover-bg: rgba(255,255,255,0.15);
  --pepti-disclaimer: rgba(255,255,255,0.7);
  --pepti-btn-shadow: rgba(0,0,0,0.2); --pepti-btn-hover-shadow: rgba(124,58,237,0.4);
  padding: 80px 20px; background: var(--pepti-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; text-align: center;
}
html[data-gender="men"] .pc-sp-cta { --pepti-bg: linear-gradient(135deg, #2B4A6F, #47627B); --pepti-subheading: #D6E5F0; --pepti-btn-primary-text: #2B4A6F; --pepti-btn-primary-hover-bg: #2563eb; --pepti-btn-hover-shadow: rgba(54,157,211,0.4); }
html[data-gender="women"] .pc-sp-cta { --pepti-bg: #4a2b6f; --pepti-subheading: #fce7f3; --pepti-btn-primary-text: #4a2b6f; --pepti-btn-primary-hover-bg: #f9a8d4; --pepti-btn-primary-hover-text: #4a2b6f; --pepti-btn-hover-shadow: rgba(0,0,0,0.3); }
.pc-sp-cta [data-show] { display: none; }
html:not([data-gender]) .pc-sp-cta [data-show="neutral"], html[data-gender=""] .pc-sp-cta [data-show="neutral"], html[data-gender="neutral"] .pc-sp-cta [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-sp-cta [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-sp-cta [data-show="women"] { display: inline; }
.pc-sp-cta__container { max-width: 900px; margin: 0 auto; }
.pc-sp-cta__content { color: #fff; }
.pc-sp-cta__headline { font-size: 48px; font-weight: 700; color: var(--pepti-headline); margin-bottom: 20px; line-height: 1.2; }
.pc-sp-cta__subheading { font-size: 18px; color: var(--pepti-subheading); margin-bottom: 40px; line-height: 1.6; }
.pc-sp-cta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 12px; }
.pc-sp-cta__btn-primary, .pc-sp-cta__btn-primary:link, .pc-sp-cta__btn-primary:visited { display: inline-block !important; background: var(--pepti-btn-primary-bg) !important; color: var(--pepti-btn-primary-text) !important; font-size: 18px !important; font-weight: 600 !important; padding: 18px 45px !important; border-radius: 50px !important; text-decoration: none !important; transition: all 0.3s ease; box-shadow: 0 8px 24px var(--pepti-btn-shadow); border: none !important; cursor: pointer; }
.pc-sp-cta__btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px var(--pepti-btn-hover-shadow); background: var(--pepti-btn-primary-hover-bg) !important; color: var(--pepti-btn-primary-hover-text) !important; }
.pc-sp-cta__btn-secondary, .pc-sp-cta__btn-secondary:link, .pc-sp-cta__btn-secondary:visited { display: inline-block !important; background: transparent !important; color: var(--pepti-btn-secondary-text) !important; font-size: 18px !important; font-weight: 600 !important; padding: 18px 45px !important; border-radius: 50px !important; text-decoration: none !important; transition: all 0.3s ease; border: 2px solid var(--pepti-btn-secondary-border) !important; cursor: pointer; }
.pc-sp-cta__btn-secondary:hover { transform: translateY(-3px); background: var(--pepti-btn-secondary-hover-bg) !important; }
.pc-sp-cta__disclaimer { margin-top: 25px; font-size: 13px; color: var(--pepti-disclaimer); line-height: 1.6; font-style: italic; max-width: 700px; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) { .pc-sp-cta { padding: 60px 16px; } .pc-sp-cta__headline { font-size: 32px; } .pc-sp-cta__subheading { font-size: 16px; } .pc-sp-cta__buttons { flex-direction: column; align-items: center; } .pc-sp-cta__btn-primary, .pc-sp-cta__btn-secondary { font-size: 16px !important; padding: 15px 35px !important; width: 100%; max-width: 320px; } }

/* ============================================================
   SECTION: IMMUNITY
   Prefix: pc-imm-
   Converted from WP Elementor rendered HTML
   ============================================================ */

/* ── HERO ── */
.pc-imm-hero {
  --pepti-hero-btn-primary: #7c3aed;
  --pepti-hero-btn-primary-hover: #6d28d9;
  --pepti-hero-btn-shadow: rgba(124, 58, 237, 0.5);
  --pepti-hero-btn-shadow-hover: rgba(124, 58, 237, 0.65);
  --pepti-hero-btn-secondary: rgba(255, 255, 255, 0.78);
  --pepti-hero-btn-secondary-hover: #ffffff;
  --pepti-hero-btn-secondary-text: #000000;
  --pepti-hero-btn-secondary-shadow: rgba(0, 0, 0, 0.5);
  --pepti-hero-btn-secondary-shadow-hover: rgba(124, 58, 237, 0.65);
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
html[data-gender="men"] .pc-imm-hero {
  --pepti-hero-btn-primary: #60a5fa;
  --pepti-hero-btn-primary-hover: #93c5fd;
  --pepti-hero-btn-shadow: rgba(62, 189, 246, 0.5);
  --pepti-hero-btn-shadow-hover: rgba(62, 189, 246, 0.65);
  --pepti-hero-btn-secondary-shadow-hover: rgba(62, 189, 246, 0.65);
}
html[data-gender="women"] .pc-imm-hero {
  --pepti-hero-btn-primary: #f9a8d4;
  --pepti-hero-btn-primary-hover: #ec4899;
  --pepti-hero-btn-shadow: rgba(244, 177, 229, 0.5);
  --pepti-hero-btn-shadow-hover: rgba(244, 177, 229, 0.85);
  --pepti-hero-btn-secondary-shadow-hover: rgba(244, 177, 229, 0.85);
}
.pc-imm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: auto;
}
.pc-imm-hero__bg-img {
  position: absolute;
  inset: 0;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pc-imm-hero__bg-img[data-show="neutral"] {
  background-color: #e2e8f0;
  background-image: url('/uploads/2025/11/Immunity.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pc-imm-hero__bg-img[data-show="men"] {
  background-color: #bfdbfe;
  background-image: url('/uploads/2025/11/Immunity-2.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.pc-imm-hero__bg-img[data-show="women"] {
  background-color: #f5c6d6;
  background-image: url('/uploads/2025/11/Immunity.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
html:not([data-gender]) .pc-imm-hero__bg-img[data-show="neutral"],
html[data-gender=""] .pc-imm-hero__bg-img[data-show="neutral"],
html[data-gender="neutral"] .pc-imm-hero__bg-img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-imm-hero__bg-img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-imm-hero__bg-img[data-show="women"] { display: block; }

.pc-imm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 30%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.pc-imm-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.pc-imm-hero__content { max-width: 600px; }
.pc-imm-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 24px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.pc-imm-hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #ffffff;
  line-height: 1.7;
  margin: 0 0 36px 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.pc-imm-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.pc-imm-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.pc-imm-hero__btn--primary,
.pc-imm-hero__btn--primary:link,
.pc-imm-hero__btn--primary:visited {
  background: var(--pepti-hero-btn-primary) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px var(--pepti-hero-btn-shadow);
}
.pc-imm-hero__btn--primary:hover,
.pc-imm-hero__btn--primary:focus,
.pc-imm-hero__btn--primary:active {
  background: var(--pepti-hero-btn-primary-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--pepti-hero-btn-shadow-hover);
  text-decoration: none !important;
}
.pc-imm-hero__btn--secondary,
.pc-imm-hero__btn--secondary:link,
.pc-imm-hero__btn--secondary:visited {
  background: var(--pepti-hero-btn-secondary) !important;
  color: var(--pepti-hero-btn-secondary-text) !important;
  box-shadow: 0 4px 15px var(--pepti-hero-btn-secondary-shadow);
}
.pc-imm-hero__btn--secondary:hover,
.pc-imm-hero__btn--secondary:focus,
.pc-imm-hero__btn--secondary:active {
  background: var(--pepti-hero-btn-secondary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--pepti-hero-btn-secondary-shadow-hover);
  text-decoration: none !important;
}
@media (max-width: 1024px) {
  .pc-imm-hero { min-height: 600px; }
  .pc-imm-hero__container { padding: 60px 30px; }
}
@media (max-width: 768px) {
  .pc-imm-hero { min-height: 650px; align-items: flex-start; }
  .pc-imm-hero__container { padding: 50px 20px; }
  .pc-imm-hero__content { max-width: 100%; }
  .pc-imm-hero__buttons { flex-direction: column; align-items: stretch; }
  .pc-imm-hero__btn { width: 100%; min-width: unset; }
}
@media (max-width: 480px) {
  .pc-imm-hero { min-height: 600px; }
  .pc-imm-hero__container { padding: 100px 16px; }
  .pc-imm-hero__btn { padding: 14px 32px; font-size: 15px; }
}
@supports (-webkit-touch-callout: none) {
  .pc-imm-hero { -webkit-overflow-scrolling: touch; }
  .pc-imm-hero__bg, .pc-imm-hero__bg-img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* ── PILLARS (Tabs) ── */
.pc-imm-pillars {
  --pepti-section-bg: #f8fafc;
  --pepti-heading: #1e293b;
  --pepti-body: #475569;
  --pepti-accent: #7c3aed;
  --pepti-accent-hover: #6d28d9;
  --pepti-accent-light: #a78bfa;
  --pepti-border: #e2e8f0;
  --pepti-tab-border: #e2e8f0;
  --pepti-tab-active-shadow: rgba(124, 58, 237, 0.3);
  --pepti-content-shadow: rgba(124, 58, 237, 0.1);
  --pepti-content-border: #e2e8f0;
  --pepti-check-color: #7c3aed;
  padding: 80px 40px;
  background: var(--pepti-section-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-imm-pillars {
  --pepti-section-bg: #dbeef5;
  --pepti-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-accent: #2563eb;
  --pepti-accent-hover: #1d4ed8;
  --pepti-accent-light: #60a5fa;
  --pepti-border: #dbeafe;
  --pepti-tab-border: #dbeafe;
  --pepti-tab-active-shadow: rgba(54, 157, 211, 0.3);
  --pepti-content-shadow: rgba(54, 157, 211, 0.1);
  --pepti-content-border: #dbeafe;
  --pepti-check-color: #2563eb;
}
html[data-gender="women"] .pc-imm-pillars {
  --pepti-section-bg: #fce7f3;
  --pepti-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-accent: #ec4899;
  --pepti-accent-hover: #db2777;
  --pepti-accent-light: #f9a8d4;
  --pepti-border: #f9a8d4;
  --pepti-tab-border: #f4d1eb;
  --pepti-tab-active-shadow: rgba(207, 45, 172, 0.3);
  --pepti-content-shadow: rgba(207, 45, 172, 0.1);
  --pepti-content-border: #f4d1eb;
  --pepti-check-color: #ec4899;
}
.pc-imm-pillars__container { max-width: 1000px; margin: 0 auto; }
.pc-imm-pillars__tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 35px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--pepti-accent) transparent;
}
.pc-imm-pillars__tabs::-webkit-scrollbar { height: 6px; }
.pc-imm-pillars__tabs::-webkit-scrollbar-track { background: transparent; }
.pc-imm-pillars__tabs::-webkit-scrollbar-thumb { background: var(--pepti-accent); border-radius: 10px; }
.pc-imm-pillars__tab {
  background: #ffffff;
  border: 2px solid var(--pepti-tab-border);
  color: var(--pepti-heading);
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
}
.pc-imm-pillars__tab:hover {
  border-color: var(--pepti-accent-light);
  background: var(--pepti-accent-light);
  color: #ffffff;
}
.pc-imm-pillars__tab--active {
  background: var(--pepti-accent);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px var(--pepti-tab-active-shadow);
}
.pc-imm-pillars__content {
  display: none;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 6px 24px var(--pepti-content-shadow);
  border: 1px solid var(--pepti-content-border);
}
.pc-imm-pillars__content--active {
  display: block;
  animation: pcImmPillarsFadeIn 0.4s ease;
}
@keyframes pcImmPillarsFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.pc-imm-pillars__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 18px;
}
.pc-imm-pillars__description {
  font-size: 16px;
  color: var(--pepti-body);
  line-height: 1.7;
  margin-bottom: 25px;
}
.pc-imm-pillars__list { list-style: none; padding: 0; margin: 0; }
.pc-imm-pillars__list li {
  font-size: 16px;
  color: var(--pepti-heading);
  line-height: 1.8;
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}
.pc-imm-pillars__list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--pepti-check-color);
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .pc-imm-pillars { padding: 70px 30px; }
  .pc-imm-pillars__tabs { gap: 10px; margin-bottom: 30px; }
  .pc-imm-pillars__tab { font-size: 14px; padding: 12px 24px; }
  .pc-imm-pillars__content { padding: 35px 30px; }
  .pc-imm-pillars__title { font-size: 26px; margin-bottom: 16px; }
  .pc-imm-pillars__description { font-size: 15px; margin-bottom: 22px; }
  .pc-imm-pillars__list li { font-size: 15px; }
}
@media (max-width: 768px) {
  .pc-imm-pillars { padding: 60px 20px; }
  .pc-imm-pillars__tabs { gap: 8px; margin-bottom: 25px; }
  .pc-imm-pillars__tab { font-size: 13px; padding: 11px 20px; }
  .pc-imm-pillars__content { padding: 30px 25px; border-radius: 16px; }
  .pc-imm-pillars__title { font-size: 24px; margin-bottom: 14px; }
  .pc-imm-pillars__description { font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
  .pc-imm-pillars__list li { font-size: 14px; line-height: 1.7; padding-left: 24px; }
  .pc-imm-pillars__list li:before { font-size: 16px; }
}
@media (max-width: 480px) {
  .pc-imm-pillars { padding: 50px 16px; }
  .pc-imm-pillars__tab { font-size: 12px; padding: 10px 18px; }
  .pc-imm-pillars__content { padding: 25px 20px; }
  .pc-imm-pillars__title { font-size: 22px; }
  .pc-imm-pillars__description { font-size: 13px; }
  .pc-imm-pillars__list li { font-size: 13px; }
}

/* ── FEATURES ── */
.pc-imm-features {
  --pepti-section-bg: #ffffff;
  --pepti-heading: #1e293b;
  --pepti-body: #475569;
  --pepti-accent: #7c3aed;
  --pepti-border: #e2e8f0;
  --pepti-highlight-bg: #f8fafc;
  --pepti-highlight-border: #e2e8f0;
  --pepti-highlight-text: #7c3aed;
  --pepti-image-bg: #f8fafc;
  padding: 80px 40px;
  background: var(--pepti-section-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-imm-features {
  --pepti-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-accent: #2563eb;
  --pepti-border: #dbeafe;
  --pepti-highlight-bg: #eff6ff;
  --pepti-highlight-border: #dbeafe;
  --pepti-highlight-text: #2563eb;
  --pepti-image-bg: #eff6ff;
}
html[data-gender="women"] .pc-imm-features {
  --pepti-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-accent: #ec4899;
  --pepti-border: #f9a8d4;
  --pepti-highlight-bg: #fdf2f8;
  --pepti-highlight-border: #f9a8d4;
  --pepti-highlight-text: #ec4899;
  --pepti-image-bg: #fdf2f8;
}
/* Content visibility */
.pc-imm-features [data-show] { display: none; }
html:not([data-gender]) .pc-imm-features [data-show="neutral"],
html[data-gender=""] .pc-imm-features [data-show="neutral"],
html[data-gender="neutral"] .pc-imm-features [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-imm-features [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-imm-features [data-show="women"] { display: inline; }
/* Image visibility */
.pc-imm-features__image img[data-show] { display: none; }
html:not([data-gender]) .pc-imm-features__image img[data-show="neutral"],
html[data-gender=""] .pc-imm-features__image img[data-show="neutral"],
html[data-gender="neutral"] .pc-imm-features__image img[data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-imm-features__image img[data-show="men"] { display: block; }
html[data-gender="women"] .pc-imm-features__image img[data-show="women"] { display: block; }

.pc-imm-features__container { max-width: 1200px; margin: 0 auto; }
.pc-imm-features__heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 60px;
}
.pc-imm-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.pc-imm-features__row:last-child { margin-bottom: 0; }
.pc-imm-features__row--reverse { direction: rtl; }
.pc-imm-features__row--reverse > * { direction: ltr; }
.pc-imm-features__image {
  border: 2px solid var(--pepti-border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pepti-image-bg);
}
.pc-imm-features__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.pc-imm-features__content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 16px;
  line-height: 1.3;
}
.pc-imm-features__content p {
  font-size: 16px;
  color: var(--pepti-body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pc-imm-features__highlight {
  background: var(--pepti-highlight-bg);
  border-left: 4px solid var(--pepti-highlight-border);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
}
.pc-imm-features__highlight strong {
  color: var(--pepti-highlight-text);
  font-weight: 600;
  font-size: 15px;
}
@media (max-width: 1024px) {
  .pc-imm-features { padding: 60px 30px; }
  .pc-imm-features__heading { font-size: 36px; margin-bottom: 50px; }
  .pc-imm-features__row { gap: 40px; margin-bottom: 50px; }
  .pc-imm-features__content h3 { font-size: 24px; }
}
@media (max-width: 768px) {
  .pc-imm-features { padding: 50px 20px; }
  .pc-imm-features__heading { font-size: 28px; margin-bottom: 40px; }
  .pc-imm-features__row,
  .pc-imm-features__row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    margin-bottom: 40px;
    gap: 25px;
  }
  .pc-imm-features__image { min-height: 200px; border-radius: 14px; }
  .pc-imm-features__content h3 { font-size: 22px; margin-bottom: 12px; }
  .pc-imm-features__content p { font-size: 15px; margin-bottom: 16px; }
  .pc-imm-features__highlight { padding: 14px 16px; }
  .pc-imm-features__highlight strong { font-size: 14px; }
}
@media (max-width: 480px) {
  .pc-imm-features { padding: 40px 16px; }
  .pc-imm-features__heading { font-size: 24px; margin-bottom: 30px; }
  .pc-imm-features__row { gap: 20px; margin-bottom: 35px; }
  .pc-imm-features__image { min-height: 180px; }
  .pc-imm-features__content h3 { font-size: 20px; }
  .pc-imm-features__content p { font-size: 14px; }
  .pc-imm-features__highlight { padding: 12px 14px; }
  .pc-imm-features__highlight strong { font-size: 13px; }
}

/* ── JOURNEY ── */
.pc-imm-journey {
  --pepti-section-bg: transparent;
  --pepti-heading: #1e293b;
  --pepti-step-heading: #1e293b;
  --pepti-body: #475569;
  --pepti-accent: #7c3aed;
  --pepti-accent-light: #a78bfa;
  --pepti-icon-shadow: rgba(124, 58, 237, 0.3);
  --pepti-line-gradient: linear-gradient(180deg, #7c3aed, #a78bfa);
  padding: 80px 40px;
  background: var(--pepti-section-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-imm-journey {
  --pepti-heading: #2B4A6F;
  --pepti-step-heading: #2B4A6F;
  --pepti-body: #47627B;
  --pepti-accent: #2563eb;
  --pepti-accent-light: #60a5fa;
  --pepti-icon-shadow: rgba(54, 157, 211, 0.3);
  --pepti-line-gradient: linear-gradient(180deg, #2563eb, #60a5fa);
}
html[data-gender="women"] .pc-imm-journey {
  --pepti-section-bg: #fce7f3;
  --pepti-heading: #4a2b6f;
  --pepti-step-heading: #4a2b6f;
  --pepti-body: #714b7e;
  --pepti-accent: #ec4899;
  --pepti-accent-light: #f9a8d4;
  --pepti-icon-shadow: rgba(207, 45, 172, 0.3);
  --pepti-line-gradient: linear-gradient(180deg, #ec4899, #f9a8d4);
}
/* Content visibility */
.pc-imm-journey [data-show] { display: none; }
html:not([data-gender]) .pc-imm-journey [data-show="neutral"],
html[data-gender=""] .pc-imm-journey [data-show="neutral"],
html[data-gender="neutral"] .pc-imm-journey [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-imm-journey [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-imm-journey [data-show="women"] { display: inline; }

.pc-imm-journey__container { max-width: 900px; margin: 0 auto; }
.pc-imm-journey__heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--pepti-heading);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}
.pc-imm-journey__timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.pc-imm-journey__step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  position: relative;
}
.pc-imm-journey__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 65px;
  width: 3px;
  height: calc(100% + 30px);
  background: var(--pepti-line-gradient);
}
.pc-imm-journey__icon {
  width: 55px;
  height: 55px;
  background: var(--pepti-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--pepti-icon-shadow);
  border: 3px solid #ffffff;
  position: relative;
  z-index: 1;
}
.pc-imm-journey__icon span {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}
.pc-imm-journey__content { flex: 1; padding-top: 5px; }
.pc-imm-journey__content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--pepti-step-heading);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pc-imm-journey__content p {
  font-size: 16px;
  color: var(--pepti-body);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .pc-imm-journey { padding: 60px 30px; }
  .pc-imm-journey__heading { font-size: 36px; margin-bottom: 50px; }
  .pc-imm-journey__timeline { gap: 35px; }
  .pc-imm-journey__step:not(:last-child)::after { height: calc(100% + 25px); }
  .pc-imm-journey__icon { width: 50px; height: 50px; }
  .pc-imm-journey__icon span { font-size: 22px; }
  .pc-imm-journey__content h3 { font-size: 20px; }
  .pc-imm-journey__content p { font-size: 15px; }
}
@media (max-width: 768px) {
  .pc-imm-journey { padding: 50px 20px; }
  .pc-imm-journey__heading { font-size: 28px; margin-bottom: 40px; }
  .pc-imm-journey__timeline { gap: 30px; }
  .pc-imm-journey__step { gap: 18px; }
  .pc-imm-journey__step:not(:last-child)::after { left: 23px; top: 55px; height: calc(100% + 20px); }
  .pc-imm-journey__icon { width: 46px; height: 46px; }
  .pc-imm-journey__icon span { font-size: 20px; }
  .pc-imm-journey__content h3 { font-size: 18px; margin-bottom: 8px; }
  .pc-imm-journey__content p { font-size: 14px; line-height: 1.5; }
}
@media (max-width: 480px) {
  .pc-imm-journey { padding: 40px 16px; }
  .pc-imm-journey__heading { font-size: 24px; margin-bottom: 35px; }
  .pc-imm-journey__timeline { gap: 25px; }
  .pc-imm-journey__step { gap: 15px; }
  .pc-imm-journey__step:not(:last-child)::after { left: 21px; top: 50px; height: calc(100% + 15px); }
  .pc-imm-journey__icon { width: 42px; height: 42px; }
  .pc-imm-journey__icon span { font-size: 18px; }
  .pc-imm-journey__content h3 { font-size: 17px; }
  .pc-imm-journey__content p { font-size: 13px; }
}

/* ── FAQ ── */
.pc-imm-faq {
  --pepti-heading: #1e293b;
  --pepti-question-text: #1e293b;
  --pepti-question-hover-text: #7c3aed;
  --pepti-question-hover-bg: #f8fafc;
  --pepti-icon-color: #7c3aed;
  --pepti-icon-active: #5b21b6;
  --pepti-answer-text: #475569;
  --pepti-border: #e2e8f0;
  --pepti-active-border: #7c3aed;
  --pepti-hover-border: #a78bfa;
  --pepti-active-shadow: rgba(124, 58, 237, 0.15);
  padding: 80px 40px;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-imm-faq {
  --pepti-heading: #2B4A6F;
  --pepti-question-text: #2B4A6F;
  --pepti-question-hover-text: #2563eb;
  --pepti-question-hover-bg: #eff6ff;
  --pepti-icon-color: #2563eb;
  --pepti-icon-active: #2B4A6F;
  --pepti-answer-text: #47627B;
  --pepti-border: #dbeafe;
  --pepti-active-border: #2563eb;
  --pepti-hover-border: #60a5fa;
  --pepti-active-shadow: rgba(54, 157, 211, 0.15);
}
html[data-gender="women"] .pc-imm-faq {
  --pepti-heading: #4a2b6f;
  --pepti-question-text: #4a2b6f;
  --pepti-question-hover-text: #ec4899;
  --pepti-question-hover-bg: #fdf2f8;
  --pepti-icon-color: #ec4899;
  --pepti-icon-active: #4a2b6f;
  --pepti-answer-text: #714b7e;
  --pepti-border: #f9a8d4;
  --pepti-active-border: #ec4899;
  --pepti-hover-border: #f9a8d4;
  --pepti-active-shadow: rgba(207, 45, 172, 0.15);
}
.pc-imm-faq [data-show] { display: none; }
html:not([data-gender]) .pc-imm-faq [data-show="neutral"],
html[data-gender=""] .pc-imm-faq [data-show="neutral"],
html[data-gender="neutral"] .pc-imm-faq [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-imm-faq [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-imm-faq [data-show="women"] { display: inline; }

.pc-imm-faq__container { max-width: 900px; margin: 0 auto; }
.pc-imm-faq__heading {
  font-size: 42px; font-weight: 700; color: var(--pepti-heading);
  text-align: center; margin-bottom: 50px;
}
.pc-imm-faq__accordion { display: flex; flex-direction: column; gap: 16px; }
.pc-imm-faq__item {
  background: #ffffff; border: 2px solid var(--pepti-border);
  border-radius: 12px; overflow: hidden; transition: all 0.3s ease;
}
.pc-imm-faq__item:hover { border-color: var(--pepti-hover-border); }
.pc-imm-faq__item.active {
  border-color: var(--pepti-active-border);
  box-shadow: 0 4px 16px var(--pepti-active-shadow);
}
.pc-imm-faq__question {
  width: 100%; background: none !important; border: none;
  padding: 22px 25px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; font-size: 18px;
  font-weight: 600; color: var(--pepti-question-text);
  text-align: left; transition: all 0.3s ease; font-family: inherit;
}
.pc-imm-faq__question:hover {
  background: var(--pepti-question-hover-bg) !important;
  color: var(--pepti-question-hover-text);
}
.pc-imm-faq__item.active .pc-imm-faq__question { background: var(--pepti-question-hover-bg) !important; }
.pc-imm-faq__question:focus { outline: none; }
.pc-imm-faq__icon {
  font-size: 28px; color: var(--pepti-icon-color); font-weight: 300;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1; flex-shrink: 0; padding-left: 20px;
}
.pc-imm-faq__item.active .pc-imm-faq__icon {
  transform: rotate(45deg);
  color: var(--pepti-icon-active);
}
.pc-imm-faq__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  background: transparent !important;
}
.pc-imm-faq__item.active .pc-imm-faq__answer { max-height: 600px; }
.pc-imm-faq__answer p {
  padding: 0 25px 25px 25px; font-size: 16px;
  color: var(--pepti-answer-text); line-height: 1.7; margin: 0;
}
@media (max-width: 1024px) {
  .pc-imm-faq { padding: 60px 30px; }
  .pc-imm-faq__heading { font-size: 36px; margin-bottom: 40px; }
  .pc-imm-faq__accordion { gap: 14px; }
  .pc-imm-faq__question { padding: 20px 22px; font-size: 17px; }
  .pc-imm-faq__icon { font-size: 24px; }
  .pc-imm-faq__answer p { padding: 0 22px 22px 22px; font-size: 15px; }
}
@media (max-width: 768px) {
  .pc-imm-faq { padding: 50px 20px; }
  .pc-imm-faq__heading { font-size: 28px; margin-bottom: 30px; }
  .pc-imm-faq__accordion { gap: 12px; }
  .pc-imm-faq__question { font-size: 16px; padding: 18px 20px; }
  .pc-imm-faq__icon { font-size: 22px; padding-left: 15px; }
  .pc-imm-faq__answer p { font-size: 14px; padding: 0 20px 20px 20px; line-height: 1.6; }
}
@media (max-width: 480px) {
  .pc-imm-faq { padding: 40px 16px; }
  .pc-imm-faq__heading { font-size: 24px; margin-bottom: 24px; }
  .pc-imm-faq__accordion { gap: 10px; }
  .pc-imm-faq__question { font-size: 15px; padding: 16px 18px; }
  .pc-imm-faq__icon { font-size: 20px; padding-left: 12px; }
  .pc-imm-faq__answer p { font-size: 13px; padding: 0 18px 18px 18px; }
}

/* ── CTA ── */
.pc-imm-cta {
  --pepti-bg: #5b21b6;
  --pepti-heading: #ffffff;
  --pepti-body: #e2e8f0;
  --pepti-btn-primary-bg: #ffffff;
  --pepti-btn-primary-text: #5b21b6;
  --pepti-btn-primary-hover-bg: #7c3aed;
  --pepti-btn-primary-hover-text: #ffffff;
  --pepti-btn-secondary-border: #ffffff;
  --pepti-btn-secondary-text: #ffffff;
  --pepti-btn-secondary-hover-bg: rgba(255, 255, 255, 0.15);
  --pepti-btn-secondary-hover-text: #ffffff;
  --pepti-disclaimer: rgba(255, 255, 255, 0.7);
  --pepti-btn-shadow: rgba(0, 0, 0, 0.2);
  --pepti-btn-hover-shadow: rgba(124, 58, 237, 0.4);
  padding: 100px 40px;
  background: var(--pepti-bg);
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-imm-cta {
  --pepti-bg: linear-gradient(135deg, #2B4A6F, #47627B);
  --pepti-body: #D6E5F0;
  --pepti-btn-primary-text: #2B4A6F;
  --pepti-btn-primary-hover-bg: #2563eb;
  --pepti-btn-primary-hover-text: #ffffff;
  --pepti-btn-hover-shadow: rgba(54, 157, 211, 0.4);
}
html[data-gender="women"] .pc-imm-cta {
  --pepti-bg: #4a2b6f;
  --pepti-body: #fce7f3;
  --pepti-btn-primary-text: #4a2b6f;
  --pepti-btn-primary-hover-bg: #f9a8d4;
  --pepti-btn-primary-hover-text: #4a2b6f;
  --pepti-btn-hover-shadow: rgba(0, 0, 0, 0.3);
}
.pc-imm-cta__container { max-width: 800px; margin: 0 auto; }
.pc-imm-cta__content { margin-bottom: 45px; }
.pc-imm-cta__content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--pepti-heading);
  margin-bottom: 20px;
  line-height: 1.2;
}
.pc-imm-cta__content p {
  font-size: 20px;
  color: var(--pepti-body);
  line-height: 1.6;
  margin: 0;
}
.pc-imm-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.pc-imm-cta__btn {
  padding: 18px 44px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
.pc-imm-cta__btn--primary,
.pc-imm-cta__btn--primary:link,
.pc-imm-cta__btn--primary:visited {
  background: var(--pepti-btn-primary-bg) !important;
  color: var(--pepti-btn-primary-text) !important;
  box-shadow: 0 8px 24px var(--pepti-btn-shadow);
  border: none !important;
}
.pc-imm-cta__btn--primary:hover,
.pc-imm-cta__btn--primary:focus,
.pc-imm-cta__btn--primary:active {
  background: var(--pepti-btn-primary-hover-bg) !important;
  color: var(--pepti-btn-primary-hover-text) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--pepti-btn-hover-shadow);
  text-decoration: none !important;
}
.pc-imm-cta__btn--secondary,
.pc-imm-cta__btn--secondary:link,
.pc-imm-cta__btn--secondary:visited {
  background: transparent !important;
  color: var(--pepti-btn-secondary-text) !important;
  border: 2px solid var(--pepti-btn-secondary-border) !important;
}
.pc-imm-cta__btn--secondary:hover,
.pc-imm-cta__btn--secondary:focus,
.pc-imm-cta__btn--secondary:active {
  background: var(--pepti-btn-secondary-hover-bg) !important;
  color: var(--pepti-btn-secondary-hover-text) !important;
  transform: translateY(-3px);
  text-decoration: none !important;
}
.pc-imm-cta__disclaimer {
  margin-top: 30px;
  font-size: 13px;
  color: var(--pepti-disclaimer);
  line-height: 1.6;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .pc-imm-cta { padding: 80px 30px; }
  .pc-imm-cta__content h2 { font-size: 36px; }
  .pc-imm-cta__content p { font-size: 18px; }
  .pc-imm-cta__btn { padding: 16px 40px; font-size: 17px; }
  .pc-imm-cta__disclaimer { font-size: 12px; }
}
@media (max-width: 768px) {
  .pc-imm-cta { padding: 60px 20px; }
  .pc-imm-cta__content { margin-bottom: 35px; }
  .pc-imm-cta__content h2 { font-size: 28px; margin-bottom: 16px; }
  .pc-imm-cta__content p { font-size: 16px; }
  .pc-imm-cta__buttons { flex-direction: column; gap: 16px; align-items: center; }
  .pc-imm-cta__btn { width: 100%; max-width: 320px; padding: 16px 36px; font-size: 16px; }
  .pc-imm-cta__disclaimer { margin-top: 25px; font-size: 12px; padding: 0 10px; }
}
@media (max-width: 480px) {
  .pc-imm-cta { padding: 50px 16px; }
  .pc-imm-cta__content h2 { font-size: 24px; }
  .pc-imm-cta__content p { font-size: 15px; }
  .pc-imm-cta__btn { padding: 14px 32px; font-size: 15px; }
  .pc-imm-cta__disclaimer { margin-top: 20px; font-size: 11px; }
}


/* ═══════════════════════════════════════════════════════════
   SECTION: HORMONES (pc-hm-)
   Converted from WordPress Elementor rendered HTML
   ═══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.pc-hm-hero {
  --pepti-hero-btn-primary: #7c3aed;
  --pepti-hero-btn-primary-hover: #6d28d9;
  --pepti-hero-btn-shadow: rgba(124, 58, 237, 0.5);
  --pepti-hero-btn-shadow-hover: rgba(124, 58, 237, 0.65);
  --pepti-hero-btn-secondary: rgba(255, 255, 255, 0.78);
  --pepti-hero-btn-secondary-hover: #ffffff;
  --pepti-hero-btn-secondary-text: #000000;
  --pepti-hero-btn-secondary-shadow: rgba(0, 0, 0, 0.5);
  --pepti-hero-btn-secondary-shadow-hover: rgba(124, 58, 237, 0.65);
  position: relative; min-height: 700px; display: flex; align-items: center;
  padding: 120px 40px 80px; overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-hm-hero {
  --pepti-hero-btn-primary: #60a5fa; --pepti-hero-btn-primary-hover: #93c5fd;
  --pepti-hero-btn-shadow: rgba(62, 189, 246, 0.5); --pepti-hero-btn-shadow-hover: rgba(62, 189, 246, 0.65);
  --pepti-hero-btn-secondary-shadow-hover: rgba(62, 189, 246, 0.65);
}
html[data-gender="women"] .pc-hm-hero {
  --pepti-hero-btn-primary: #f9a8d4; --pepti-hero-btn-primary-hover: #ec4899;
  --pepti-hero-btn-shadow: rgba(244, 177, 229, 0.5); --pepti-hero-btn-shadow-hover: rgba(244, 177, 229, 0.85);
  --pepti-hero-btn-secondary-shadow-hover: rgba(244, 177, 229, 0.85);
}
.pc-hm-hero [data-show] { display: none; }
html:not([data-gender]) .pc-hm-hero [data-show="neutral"],
html[data-gender=""] .pc-hm-hero [data-show="neutral"],
html[data-gender="neutral"] .pc-hm-hero [data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-hm-hero [data-show="men"] { display: block; }
html[data-gender="women"] .pc-hm-hero [data-show="women"] { display: block; }
.pc-hm-hero__image { position: absolute; inset: 0; z-index: 0; }
.pc-hm-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pc-hm-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); z-index: 1; pointer-events: none; }
.pc-hm-hero__container { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; width: 100%; }
.pc-hm-hero__content { max-width: 600px; }
.pc-hm-hero__title { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: #ffffff; line-height: 1.1; margin: 0 0 24px 0; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.pc-hm-hero__subtitle { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.95); line-height: 1.6; margin: 0 0 36px 0; text-shadow: 0 1px 10px rgba(0,0,0,0.3); }
.pc-hm-hero__buttons { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.pc-hm-hero__btn { display: inline-flex; align-items: center; justify-content: center; min-width: 220px; padding: 16px 40px; border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none !important; transition: all 0.3s ease; cursor: pointer; border: none; }
.pc-hm-hero__btn--primary, .pc-hm-hero__btn--primary:link, .pc-hm-hero__btn--primary:visited { background: var(--pepti-hero-btn-primary) !important; color: #ffffff !important; box-shadow: 0 4px 15px var(--pepti-hero-btn-shadow); }
.pc-hm-hero__btn--primary:hover { background: var(--pepti-hero-btn-primary-hover) !important; transform: translateY(-2px); box-shadow: 0 6px 20px var(--pepti-hero-btn-shadow-hover); }
.pc-hm-hero__btn--secondary, .pc-hm-hero__btn--secondary:link, .pc-hm-hero__btn--secondary:visited { background: var(--pepti-hero-btn-secondary) !important; color: var(--pepti-hero-btn-secondary-text) !important; box-shadow: 0 4px 15px var(--pepti-hero-btn-secondary-shadow); }
.pc-hm-hero__btn--secondary:hover { background: var(--pepti-hero-btn-secondary-hover) !important; transform: translateY(-2px); box-shadow: 0 6px 20px var(--pepti-hero-btn-secondary-shadow-hover); }
@media (max-width: 1024px) { .pc-hm-hero { padding: 100px 30px 70px; min-height: 600px; } }
@media (max-width: 768px) { .pc-hm-hero { padding: 100px 20px 60px; min-height: 650px; align-items: flex-start; } .pc-hm-hero__buttons { flex-direction: column; align-items: stretch; } .pc-hm-hero__btn { width: 100%; min-width: unset; } }
@media (max-width: 480px) { .pc-hm-hero { padding: 100px 16px 50px; min-height: 600px; } .pc-hm-hero__btn { padding: 14px 32px; font-size: 15px; } }

/* ── SYMPTOM ASSESSMENT ── */
.pc-hm-calc {
  --pepti-heading: #1e293b; --pepti-body: #475569; --pepti-accent: #7c3aed;
  --pepti-accent-hover: #6d28d9; --pepti-accent-light: #a78bfa; --pepti-accent-dark: #4c1d95;
  --pepti-accent-gradient: linear-gradient(135deg, #7c3aed, #a78bfa);
  --pepti-border: #e2e8f0; --pepti-stat-bg: rgba(255,255,255,0.8);
  --pepti-stat-shadow: rgba(0,0,0,0.06); --pepti-btn-shadow: rgba(124,58,237,0.25);
  --pepti-box-bg: #ffffff; --pepti-result-bg: #f8fafc;
  --pepti-tab-active-bg: rgba(124,58,237,0.08);
  padding: 60px 40px; background: transparent;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html[data-gender="men"] .pc-hm-calc { --pepti-heading: #2B4A6F; --pepti-body: #47627B; --pepti-accent: #2563eb; --pepti-accent-hover: #1d4ed8; --pepti-accent-light: #7fc8ed; --pepti-accent-dark: #1e5a7a; --pepti-accent-gradient: linear-gradient(135deg, #2563eb, #60a5fa); --pepti-border: #dbeafe; --pepti-btn-shadow: rgba(54,157,211,0.25); --pepti-tab-active-bg: rgba(54,157,211,0.08); }
html[data-gender="women"] .pc-hm-calc { --pepti-heading: #4a2b6f; --pepti-body: #714b7e; --pepti-accent: #ec4899; --pepti-accent-hover: #db2777; --pepti-accent-light: #f9a8d4; --pepti-accent-dark: #8b1a6f; --pepti-accent-gradient: linear-gradient(135deg, #ec4899, #f9a8d4); --pepti-border: #f9a8d4; --pepti-btn-shadow: rgba(207,45,172,0.25); --pepti-tab-active-bg: rgba(207,45,172,0.08); }
.pc-hm-calc [data-show] { display: none; }
html:not([data-gender]) .pc-hm-calc [data-show="neutral"], html[data-gender=""] .pc-hm-calc [data-show="neutral"], html[data-gender="neutral"] .pc-hm-calc [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-hm-calc [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-hm-calc [data-show="women"] { display: inline; }
.pc-hm-calc__container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pc-hm-calc__left { max-width: 600px; }
.pc-hm-calc__title { font-size: 48px; font-weight: 700; color: var(--pepti-heading); margin-bottom: 40px; line-height: 1.2; }
.pc-hm-calc__stats { display: flex; flex-direction: column; gap: 20px; margin-bottom: 35px; }
.pc-hm-calc__stat { display: flex; align-items: flex-start; gap: 16px; background: var(--pepti-stat-bg); padding: 18px 22px; border-radius: 12px; border: 1px solid var(--pepti-border); box-shadow: 0 4px 12px var(--pepti-stat-shadow); backdrop-filter: blur(10px); }
.pc-hm-calc__check-icon { flex-shrink: 0; width: 38px; height: 38px; background: var(--pepti-accent-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pc-hm-calc__stat p { font-size: 17px; color: var(--pepti-heading); line-height: 1.5; margin: 0; }
.pc-hm-calc__stat strong { color: var(--pepti-accent); }
.pc-hm-calc__divider { height: 1px; background: var(--pepti-border); margin-bottom: 30px; }
.pc-hm-calc__cta-row { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.pc-hm-calc__btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: var(--pepti-accent-gradient); color: #ffffff !important; font-size: 16px; font-weight: 600; border-radius: 50px; text-decoration: none !important; box-shadow: 0 6px 20px var(--pepti-btn-shadow); transition: all 0.3s ease; }
.pc-hm-calc__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px var(--pepti-btn-shadow); }
.pc-hm-calc__contact { display: flex; flex-direction: column; gap: 2px; }
.pc-hm-calc__contact-label { font-size: 13px; color: var(--pepti-body); }
.pc-hm-calc__phone { font-size: 18px; font-weight: 700; color: var(--pepti-accent); text-decoration: none; transition: color 0.3s ease; }
.pc-hm-calc__phone:hover { color: var(--pepti-accent-dark); }
.pc-hm-calc__box { background: var(--pepti-box-bg); border-radius: 20px; box-shadow: 0 16px 48px rgba(0,0,0,0.1); overflow: hidden; border: 1px solid var(--pepti-border); }
.pc-hm-calc__tabs { display: flex; border-bottom: 1px solid var(--pepti-border); }
.pc-hm-calc__tab { flex: 1; padding: 16px 20px; background: transparent; border: none; font-size: 14px; font-weight: 600; color: var(--pepti-body); cursor: pointer; transition: all 0.3s ease; font-family: inherit; position: relative; }
.pc-hm-calc__tab::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--pepti-accent); transform: scaleX(0); transition: transform 0.3s ease; }
.pc-hm-calc__tab.active { color: var(--pepti-accent); background: var(--pepti-tab-active-bg); }
.pc-hm-calc__tab.active::after { transform: scaleX(1); }
.pc-hm-calc__tab:hover:not(.active) { background: var(--pepti-result-bg); }
.pc-hm-calc__tab-content { display: none; padding: 28px; }
.pc-hm-calc__tab-content.active { display: block; }
.pc-hm-calc__box-heading { font-size: 18px; font-weight: 600; color: var(--pepti-heading); margin: 0 0 24px 0; text-align: center; }
.pc-hm-calc__meter { position: relative; height: 50px; margin-bottom: 8px; }
.pc-hm-calc__meter-track { position: absolute; top: 50%; left: 0; right: 0; height: 8px; background: linear-gradient(to right, #22c55e 0%, #eab308 40%, #f97316 70%, #ef4444 100%); border-radius: 4px; transform: translateY(-50%); }
.pc-hm-calc__meter-pointer { position: absolute; top: 50%; transform: translate(-50%, -50%); transition: left 0.15s ease-out; }
.pc-hm-calc__meter-value { width: 40px; height: 40px; background: var(--pepti-box-bg); border: 3px solid var(--pepti-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--pepti-accent); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.pc-hm-calc__meter-input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; -webkit-appearance: none; margin: 0; }
.pc-hm-calc__meter-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--pepti-body); margin-bottom: 8px; padding: 0 5px; }
.pc-hm-calc__severity-text { text-align: center; font-size: 14px; font-weight: 600; color: var(--pepti-accent); margin: 0 0 24px 0; }
.pc-hm-calc__results-panel { background: var(--pepti-result-bg); border-radius: 14px; padding: 20px; margin-bottom: 20px; }
.pc-hm-calc__results-label { font-size: 13px; color: var(--pepti-body); text-align: center; margin: 0 0 16px 0; }
.pc-hm-calc__results-single { margin-bottom: 16px; }
.pc-hm-calc__result-card { background: var(--pepti-box-bg); border-radius: 12px; padding: 18px 14px; text-align: center; border: 1px solid var(--pepti-border); transition: all 0.3s ease; }
.pc-hm-calc__result-card--recommendation { border-color: var(--pepti-accent); padding: 20px; }
.pc-hm-calc__result-icon { width: 44px; height: 44px; background: var(--pepti-accent-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: #ffffff; }
.pc-hm-calc__result-icon svg { width: 24px; height: 24px; }
.pc-hm-calc__result-text { font-size: 15px; color: var(--pepti-heading); line-height: 1.6; }
.pc-hm-calc__evidence-note { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: var(--pepti-body); background: rgba(0,0,0,0.03); padding: 10px 12px; border-radius: 8px; }
.pc-hm-calc__evidence-note svg { flex-shrink: 0; margin-top: 1px; color: var(--pepti-accent); }
.pc-hm-calc__box-footer { padding: 0 28px 28px; }
.pc-hm-calc__box-btn { display: block; width: 100%; padding: 16px 24px; font-size: 16px; font-weight: 700; color: #ffffff; background: var(--pepti-accent-gradient); border: none; border-radius: 12px; cursor: pointer; box-shadow: 0 8px 24px var(--pepti-btn-shadow); transition: all 0.3s ease; font-family: inherit; text-align: center; text-decoration: none; }
.pc-hm-calc__box-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px var(--pepti-btn-shadow); color: #ffffff; }
@media (max-width: 1024px) { .pc-hm-calc { padding: 50px 30px; } .pc-hm-calc__container { grid-template-columns: 1fr; gap: 40px; } .pc-hm-calc__left { max-width: 100%; text-align: center; } .pc-hm-calc__title { font-size: 36px; } .pc-hm-calc__stat { text-align: left; } .pc-hm-calc__cta-row { justify-content: center; } .pc-hm-calc__box { max-width: 520px; margin: 0 auto; } }
@media (max-width: 768px) { .pc-hm-calc { padding: 40px 20px; } .pc-hm-calc__title { font-size: 32px; margin-bottom: 28px; } .pc-hm-calc__stat { padding: 14px 18px; } .pc-hm-calc__stat p { font-size: 15px; } .pc-hm-calc__check-icon { width: 34px; height: 34px; } .pc-hm-calc__cta-row { flex-direction: column; align-items: center; gap: 18px; } .pc-hm-calc__btn { width: 100%; max-width: 280px; justify-content: center; } .pc-hm-calc__contact { align-items: center; } .pc-hm-calc__tab-content { padding: 20px; } }
@media (max-width: 480px) { .pc-hm-calc { padding: 30px 16px; } .pc-hm-calc__title { font-size: 28px; } .pc-hm-calc__stat p { font-size: 14px; } .pc-hm-calc__tab { padding: 12px 14px; font-size: 13px; } .pc-hm-calc__tab-content { padding: 18px 14px; } .pc-hm-calc__box-heading { font-size: 16px; } .pc-hm-calc__box-btn { font-size: 15px; padding: 14px 20px; } .pc-hm-calc__box-footer { padding: 0 18px 18px; } }

/* ── HOTSPOTS ── */
.pc-hm-hotspots { --pepti-bg: #f8fafc; --pepti-title: #1e293b; --pepti-body: #475569; --pepti-accent: #7c3aed; --pepti-border: #e2e8f0; --pepti-shadow: rgba(124,58,237,0.1); background: var(--pepti-bg); border-radius: 18px; padding: 60px 20px; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
html[data-gender="men"] .pc-hm-hotspots { --pepti-bg: #eff6ff; --pepti-title: #2B4A6F; --pepti-body: #47627B; --pepti-accent: #2563eb; --pepti-border: #dbeafe; --pepti-shadow: rgba(54,157,211,0.1); }
html[data-gender="women"] .pc-hm-hotspots { --pepti-bg: #fdf2f8; --pepti-title: #4a2b6f; --pepti-body: #714b7e; --pepti-accent: #ec4899; --pepti-border: #f9a8d4; --pepti-shadow: rgba(207,45,172,0.1); }
.pc-hm-hotspots [data-show] { display: none; }
html:not([data-gender]) .pc-hm-hotspots [data-show="neutral"], html[data-gender=""] .pc-hm-hotspots [data-show="neutral"], html[data-gender="neutral"] .pc-hm-hotspots [data-show="neutral"] { display: block; }
html[data-gender="men"] .pc-hm-hotspots [data-show="men"] { display: block; }
html[data-gender="women"] .pc-hm-hotspots [data-show="women"] { display: block; }
.pc-hm-hotspots__container { max-width: 900px; margin: 0 auto; text-align: center; }
.pc-hm-hotspots__title { margin: 0 0 16px; font-size: clamp(22px, 3.5vw, 32px); font-weight: 700; color: var(--pepti-title); }
.pc-hm-hotspots__title [data-show] { display: none; }
html:not([data-gender]) .pc-hm-hotspots__title [data-show="neutral"], html[data-gender=""] .pc-hm-hotspots__title [data-show="neutral"], html[data-gender="neutral"] .pc-hm-hotspots__title [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-hm-hotspots__title [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-hm-hotspots__title [data-show="women"] { display: inline; }
.pc-hm-hotspots__description { margin: 0 auto 40px; max-width: 720px; color: var(--pepti-body); font-size: 16px; line-height: 1.6; font-weight: 500; }
.pc-hm-hotspots__description [data-show] { display: none; }
html:not([data-gender]) .pc-hm-hotspots__description [data-show="neutral"], html[data-gender=""] .pc-hm-hotspots__description [data-show="neutral"], html[data-gender="neutral"] .pc-hm-hotspots__description [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-hm-hotspots__description [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-hm-hotspots__description [data-show="women"] { display: inline; }
.pc-hm-hotspots__image-wrapper { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; aspect-ratio: 16 / 12; }
.pc-hm-hotspots__body-image { width: 100%; max-width: 600px; height: auto; object-fit: contain; opacity: 0.95; filter: drop-shadow(0 10px 20px var(--pepti-shadow)); }
.pc-hm-hotspots__hotspot { position: absolute; transform: translate(-50%, -50%); width: 38px; height: 38px; border-radius: 50%; background: #ffffff; border: 2px solid var(--pepti-border); box-shadow: 0 4px 12px var(--pepti-shadow); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
.pc-hm-hotspots__hotspot::before { content: "+"; font-weight: 700; font-size: 20px; color: var(--pepti-accent); }
.pc-hm-hotspots__hotspot:hover { background: var(--pepti-bg); border-color: var(--pepti-accent); box-shadow: 0 6px 16px var(--pepti-shadow); transform: translate(-50%, -50%) scale(1.1); }
.pc-hm-hotspots__info { position: absolute; left: 50%; top: calc(100% + 12px); transform: translateX(-50%); background: #ffffff; border: 1px solid var(--pepti-border); border-radius: 12px; box-shadow: 0 8px 24px var(--pepti-shadow); padding: 16px 18px; width: 220px; text-align: left; z-index: 10; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.pc-hm-hotspots__hotspot:hover .pc-hm-hotspots__info { opacity: 1; }
.pc-hm-hotspots__info h4 { margin: 0 0 8px; font-size: 16px; line-height: 1.3; font-weight: 700; color: var(--pepti-title); }
.pc-hm-hotspots__info p { margin: 0; color: var(--pepti-body); font-size: 14px; line-height: 1.5; }
.pc-hm-hotspots__info::before { content: ""; position: absolute; left: 50%; top: -7px; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background: #ffffff; border-left: 1px solid var(--pepti-border); border-top: 1px solid var(--pepti-border); }
.pc-hm-hotspots__mobile-card { display: none; }
@media (max-width: 768px) {
  .pc-hm-hotspots { padding: 50px 16px; }
  .pc-hm-hotspots__description { font-size: 15px; margin-bottom: 30px; }
  .pc-hm-hotspots__hotspot { width: 34px; height: 34px; }
  .pc-hm-hotspots__hotspot::before { font-size: 18px; }
  .pc-hm-hotspots__info { display: none !important; }
  .pc-hm-hotspots__mobile-card { display: block; margin: 24px auto 0; width: min(92%, 560px); background: #ffffff; border: 2px solid var(--pepti-border); border-radius: 14px; box-shadow: 0 10px 28px var(--pepti-shadow); padding: 20px 22px; text-align: left; }
  .pc-hm-hotspots__mobile-card h4 { margin: 0 0 10px; font-size: clamp(16px, 4.5vw, 19px); line-height: 1.3; font-weight: 700; color: var(--pepti-title); }
  .pc-hm-hotspots__mobile-card p { margin: 0; color: var(--pepti-body); font-size: clamp(14px, 4vw, 16px); line-height: 1.6; }
}
@media (max-width: 480px) { .pc-hm-hotspots { padding: 30px 12px; } .pc-hm-hotspots__title { font-size: 20px; } .pc-hm-hotspots__description { font-size: 14px; } }

/* ── FEATURES ── */
.pc-hm-features { --pepti-heading: #1e293b; --pepti-body: #475569; --pepti-accent: #7c3aed; --pepti-border: #e2e8f0; --pepti-highlight-bg: #f8fafc; --pepti-image-bg: #f8fafc; padding: 80px 40px; background: #ffffff; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
html[data-gender="men"] .pc-hm-features { --pepti-heading: #2B4A6F; --pepti-body: #47627B; --pepti-accent: #2563eb; --pepti-border: #dbeafe; --pepti-highlight-bg: #eff6ff; --pepti-image-bg: #eff6ff; }
html[data-gender="women"] .pc-hm-features { --pepti-heading: #4a2b6f; --pepti-body: #714b7e; --pepti-accent: #ec4899; --pepti-border: #f9a8d4; --pepti-highlight-bg: #fdf2f8; --pepti-image-bg: #fdf2f8; }
.pc-hm-features [data-show] { display: none; }
html:not([data-gender]) .pc-hm-features [data-show="neutral"], html[data-gender=""] .pc-hm-features [data-show="neutral"], html[data-gender="neutral"] .pc-hm-features [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-hm-features [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-hm-features [data-show="women"] { display: inline; }
.pc-hm-features__container { max-width: 1200px; margin: 0 auto; }
.pc-hm-features__heading { font-size: 42px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 60px; }
.pc-hm-features__row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.pc-hm-features__row:last-child { margin-bottom: 0; }
.pc-hm-features__row--reverse { direction: rtl; }
.pc-hm-features__row--reverse > * { direction: ltr; }
.pc-hm-features__image { border: 2px solid var(--pepti-border); border-radius: 16px; overflow: hidden; min-height: 280px; display: flex; align-items: center; justify-content: center; background: var(--pepti-image-bg); }
.pc-hm-features__image img { width: 100%; height: auto; object-fit: cover; }
.pc-hm-features__content h3 { font-size: 28px; font-weight: 700; color: var(--pepti-heading); margin-bottom: 16px; line-height: 1.3; }
.pc-hm-features__content p { font-size: 16px; color: var(--pepti-body); line-height: 1.7; margin-bottom: 20px; }
.pc-hm-features__highlight { background: var(--pepti-highlight-bg); border-left: 4px solid var(--pepti-accent); padding: 16px 20px; border-radius: 0 10px 10px 0; }
.pc-hm-features__highlight strong { color: var(--pepti-accent); font-weight: 600; font-size: 15px; }
@media (max-width: 768px) { .pc-hm-features { padding: 50px 20px; } .pc-hm-features__heading { font-size: 28px; margin-bottom: 40px; } .pc-hm-features__row, .pc-hm-features__row--reverse { grid-template-columns: 1fr; direction: ltr; margin-bottom: 40px; gap: 25px; } .pc-hm-features__image { min-height: 200px; } .pc-hm-features__content h3 { font-size: 22px; } .pc-hm-features__content p { font-size: 15px; } }
@media (max-width: 480px) { .pc-hm-features { padding: 40px 16px; } .pc-hm-features__heading { font-size: 24px; } }

/* ── BENEFITS GRID ── */
.pc-hm-benefits { --pepti-section-bg: #f8fafc; --pepti-heading: #1e293b; --pepti-card-title: #1e293b; --pepti-body: #475569; --pepti-accent: #7c3aed; --pepti-border: #e2e8f0; --pepti-card-bg: #ffffff; --pepti-card-shadow: rgba(124,58,237,0.08); --pepti-card-hover-shadow: rgba(124,58,237,0.15); padding: 80px 40px; background: var(--pepti-section-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
html[data-gender="men"] .pc-hm-benefits { --pepti-section-bg: #dbeef5; --pepti-heading: #2B4A6F; --pepti-card-title: #2B4A6F; --pepti-body: #47627B; --pepti-accent: #2563eb; --pepti-border: #dbeafe; --pepti-card-shadow: rgba(54,157,211,0.08); --pepti-card-hover-shadow: rgba(54,157,211,0.15); }
html[data-gender="women"] .pc-hm-benefits { --pepti-section-bg: #fce7f3; --pepti-heading: #4a2b6f; --pepti-card-title: #4a2b6f; --pepti-body: #714b7e; --pepti-accent: #ec4899; --pepti-border: #f9a8d4; --pepti-card-shadow: rgba(207,45,172,0.08); --pepti-card-hover-shadow: rgba(207,45,172,0.15); }
.pc-hm-benefits [data-show] { display: none; }
html:not([data-gender]) .pc-hm-benefits [data-show="neutral"], html[data-gender=""] .pc-hm-benefits [data-show="neutral"], html[data-gender="neutral"] .pc-hm-benefits [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-hm-benefits [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-hm-benefits [data-show="women"] { display: inline; }
.pc-hm-benefits__container { max-width: 1200px; margin: 0 auto; }
.pc-hm-benefits__title { font-size: 42px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 50px; line-height: 1.2; }
.pc-hm-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.pc-hm-benefits__card { background: var(--pepti-card-bg); border-radius: 16px; padding: 35px 30px; box-shadow: 0 4px 16px var(--pepti-card-shadow); transition: all 0.3s ease; border: 2px solid transparent; text-align: center; }
.pc-hm-benefits__card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px var(--pepti-card-hover-shadow); border-color: var(--pepti-accent); }
.pc-hm-benefits__card-title { font-size: 20px; font-weight: 700; color: var(--pepti-card-title); margin-bottom: 12px; line-height: 1.3; }
.pc-hm-benefits__card-desc { font-size: 15px; color: var(--pepti-body); line-height: 1.6; margin: 0; }
@media (max-width: 1024px) { .pc-hm-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .pc-hm-benefits { padding: 60px 20px; } .pc-hm-benefits__title { font-size: 28px; } .pc-hm-benefits__grid { grid-template-columns: 1fr; } }

/* ── JOURNEY TIMELINE ── */
.pc-hm-journey { --pepti-heading: #1e293b; --pepti-step-title: #1e293b; --pepti-body: #475569; --pepti-icon-bg: #7c3aed; --pepti-line-gradient: linear-gradient(180deg, #7c3aed, #a78bfa); --pepti-shadow: rgba(124,58,237,0.3); padding: 80px 40px; background: #ffffff; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
html[data-gender="men"] .pc-hm-journey { --pepti-heading: #2B4A6F; --pepti-step-title: #2B4A6F; --pepti-body: #47627B; --pepti-icon-bg: #2563eb; --pepti-line-gradient: linear-gradient(180deg, #2563eb, #60a5fa); --pepti-shadow: rgba(54,157,211,0.3); }
html[data-gender="women"] .pc-hm-journey { --pepti-heading: #4a2b6f; --pepti-step-title: #4a2b6f; --pepti-body: #714b7e; --pepti-icon-bg: #ec4899; --pepti-line-gradient: linear-gradient(180deg, #ec4899, #f9a8d4); --pepti-shadow: rgba(207,45,172,0.3); background: #fdf2f8; }
.pc-hm-journey [data-show] { display: none; }
html:not([data-gender]) .pc-hm-journey [data-show="neutral"], html[data-gender=""] .pc-hm-journey [data-show="neutral"], html[data-gender="neutral"] .pc-hm-journey [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-hm-journey [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-hm-journey [data-show="women"] { display: inline; }
.pc-hm-journey__container { max-width: 900px; margin: 0 auto; }
.pc-hm-journey__heading { font-size: 42px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 60px; line-height: 1.2; }
.pc-hm-journey__timeline { display: flex; flex-direction: column; gap: 32px; }
.pc-hm-journey__step { display: flex; align-items: flex-start; gap: 24px; position: relative; }
.pc-hm-journey__step:not(:last-child)::after { content: ''; position: absolute; left: 28px; top: 60px; width: 4px; height: calc(100% + 20px); background: var(--pepti-line-gradient); border-radius: 2px; }
.pc-hm-journey__icon { flex-shrink: 0; width: 56px; height: 56px; background: var(--pepti-icon-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px var(--pepti-shadow); position: relative; z-index: 1; }
.pc-hm-journey__icon span { font-size: 24px; font-weight: 700; color: #ffffff; }
.pc-hm-journey__content { flex: 1; padding-top: 8px; }
.pc-hm-journey__content h3 { font-size: 22px; font-weight: 700; color: var(--pepti-step-title); margin-bottom: 10px; line-height: 1.3; }
.pc-hm-journey__content p { font-size: 16px; color: var(--pepti-body); line-height: 1.6; margin: 0; }
@media (max-width: 768px) { .pc-hm-journey { padding: 50px 20px; } .pc-hm-journey__heading { font-size: 28px; margin-bottom: 40px; } .pc-hm-journey__step:not(:last-child)::after { left: 23px; top: 52px; } .pc-hm-journey__icon { width: 46px; height: 46px; } .pc-hm-journey__icon span { font-size: 20px; } .pc-hm-journey__content h3 { font-size: 18px; } .pc-hm-journey__content p { font-size: 14px; } }

/* ── WHY CHOOSE US ── */
.pc-hm-why { --pepti-heading: #1e293b; --pepti-subhead: #475569; --pepti-card-title: #1e293b; --pepti-body: #475569; --pepti-number: #7c3aed; --pepti-shadow: rgba(124,58,237,0.08); --pepti-hover-shadow: rgba(124,58,237,0.18); --pepti-bg: #f8fafc; padding: 80px 40px; background: var(--pepti-bg); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
html[data-gender="men"] .pc-hm-why { --pepti-heading: #2B4A6F; --pepti-subhead: #47627B; --pepti-card-title: #2B4A6F; --pepti-body: #47627B; --pepti-number: #2563eb; --pepti-shadow: rgba(54,157,211,0.08); --pepti-hover-shadow: rgba(54,157,211,0.18); --pepti-bg: #eff6ff; }
html[data-gender="women"] .pc-hm-why { --pepti-heading: #4a2b6f; --pepti-subhead: #714b7e; --pepti-card-title: #4a2b6f; --pepti-body: #714b7e; --pepti-number: #ec4899; --pepti-shadow: rgba(207,45,172,0.08); --pepti-hover-shadow: rgba(207,45,172,0.18); --pepti-bg: #fdf2f8; }
.pc-hm-why [data-show] { display: none; }
html:not([data-gender]) .pc-hm-why [data-show="neutral"], html[data-gender=""] .pc-hm-why [data-show="neutral"], html[data-gender="neutral"] .pc-hm-why [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-hm-why [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-hm-why [data-show="women"] { display: inline; }
.pc-hm-why__container { max-width: 1200px; margin: 0 auto; }
.pc-hm-why__header { text-align: center; margin-bottom: 60px; }
.pc-hm-why__header h2 { font-size: 42px; font-weight: 700; color: var(--pepti-heading); margin-bottom: 16px; line-height: 1.2; }
.pc-hm-why__header p { font-size: 20px; color: var(--pepti-subhead); margin: 0; }
.pc-hm-why__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pc-hm-why__card { background: #ffffff; border-radius: 24px; padding: 36px 30px; box-shadow: 0 4px 20px var(--pepti-shadow); transition: all 0.3s ease; }
.pc-hm-why__card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px var(--pepti-hover-shadow); }
.pc-hm-why__number { display: block; font-size: 44px; font-weight: 800; color: var(--pepti-number); margin-bottom: 16px; line-height: 1; opacity: 0.9; }
.pc-hm-why__card h3 { font-size: 24px; font-weight: 700; color: var(--pepti-card-title); margin-bottom: 14px; line-height: 1.3; }
.pc-hm-why__card p { font-size: 16px; color: var(--pepti-body); line-height: 1.7; margin: 0; }
@media (max-width: 768px) { .pc-hm-why { padding: 50px 20px; } .pc-hm-why__header h2 { font-size: 28px; } .pc-hm-why__cards { grid-template-columns: 1fr; } .pc-hm-why__card h3 { font-size: 20px; } }

/* ── FAQ ── */
.pc-hm-faq { --pepti-heading: #1e293b; --pepti-question-text: #1e293b; --pepti-question-hover-text: #7c3aed; --pepti-question-hover-bg: #f8fafc; --pepti-icon-color: #7c3aed; --pepti-icon-active: #5b21b6; --pepti-answer-text: #475569; --pepti-border: #e2e8f0; --pepti-active-border: #7c3aed; --pepti-hover-border: #a78bfa; --pepti-active-shadow: rgba(124,58,237,0.15); padding: 80px 40px; background: #ffffff; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
html[data-gender="men"] .pc-hm-faq { --pepti-heading: #2B4A6F; --pepti-question-text: #2B4A6F; --pepti-question-hover-text: #2563eb; --pepti-question-hover-bg: #eff6ff; --pepti-icon-color: #2563eb; --pepti-icon-active: #2B4A6F; --pepti-answer-text: #47627B; --pepti-border: #dbeafe; --pepti-active-border: #2563eb; --pepti-hover-border: #60a5fa; --pepti-active-shadow: rgba(54,157,211,0.15); }
html[data-gender="women"] .pc-hm-faq { --pepti-heading: #4a2b6f; --pepti-question-text: #4a2b6f; --pepti-question-hover-text: #ec4899; --pepti-question-hover-bg: #fdf2f8; --pepti-icon-color: #ec4899; --pepti-icon-active: #4a2b6f; --pepti-answer-text: #714b7e; --pepti-border: #f9a8d4; --pepti-active-border: #ec4899; --pepti-hover-border: #f9a8d4; --pepti-active-shadow: rgba(207,45,172,0.15); }
.pc-hm-faq [data-show] { display: none; }
html:not([data-gender]) .pc-hm-faq [data-show="neutral"], html[data-gender=""] .pc-hm-faq [data-show="neutral"], html[data-gender="neutral"] .pc-hm-faq [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-hm-faq [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-hm-faq [data-show="women"] { display: inline; }
.pc-hm-faq__container { max-width: 900px; margin: 0 auto; }
.pc-hm-faq__heading { font-size: 42px; font-weight: 700; color: var(--pepti-heading); text-align: center; margin-bottom: 50px; }
.pc-hm-faq__accordion { display: flex; flex-direction: column; gap: 16px; }
.pc-hm-faq__item { background: #ffffff; border: 2px solid var(--pepti-border); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
.pc-hm-faq__item:hover { border-color: var(--pepti-hover-border); }
.pc-hm-faq__item.active { border-color: var(--pepti-active-border); box-shadow: 0 4px 16px var(--pepti-active-shadow); }
.pc-hm-faq__question { width: 100%; background: none !important; border: none; padding: 22px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 18px; font-weight: 600; color: var(--pepti-question-text); text-align: left; transition: all 0.3s ease; font-family: inherit; }
.pc-hm-faq__question:hover { background: var(--pepti-question-hover-bg) !important; color: var(--pepti-question-hover-text); }
.pc-hm-faq__item.active .pc-hm-faq__question { background: var(--pepti-question-hover-bg) !important; }
.pc-hm-faq__question:focus { outline: none; }
.pc-hm-faq__icon { font-size: 28px; color: var(--pepti-icon-color); font-weight: 300; transition: transform 0.3s ease, color 0.3s ease; line-height: 1; flex-shrink: 0; padding-left: 20px; }
.pc-hm-faq__item.active .pc-hm-faq__icon { transform: rotate(45deg); color: var(--pepti-icon-active); }
.pc-hm-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: transparent !important; }
.pc-hm-faq__item.active .pc-hm-faq__answer { max-height: 600px; }
.pc-hm-faq__answer p { padding: 0 25px 25px 25px; font-size: 16px; color: var(--pepti-answer-text); line-height: 1.7; margin: 0; }
@media (max-width: 768px) { .pc-hm-faq { padding: 50px 20px; } .pc-hm-faq__heading { font-size: 28px; margin-bottom: 30px; } .pc-hm-faq__question { font-size: 16px; padding: 18px 20px; } .pc-hm-faq__answer p { font-size: 14px; padding: 0 20px 20px 20px; } }

/* ── CTA ── */
.pc-hm-cta { --pepti-bg: #5b21b6; --pepti-heading: #ffffff; --pepti-body: rgba(255,255,255,0.85); --pepti-btn-hover: #7c3aed; padding: 100px 40px; background: var(--pepti-bg); text-align: center; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
html[data-gender="men"] .pc-hm-cta { --pepti-bg: linear-gradient(135deg, #2B4A6F 0%, #2563eb 100%); --pepti-btn-hover: #60a5fa; }
html[data-gender="women"] .pc-hm-cta { --pepti-bg: #4a2b6f; --pepti-btn-hover: #ec4899; }
.pc-hm-cta [data-show] { display: none; }
html:not([data-gender]) .pc-hm-cta [data-show="neutral"], html[data-gender=""] .pc-hm-cta [data-show="neutral"], html[data-gender="neutral"] .pc-hm-cta [data-show="neutral"] { display: inline; }
html[data-gender="men"] .pc-hm-cta [data-show="men"] { display: inline; }
html[data-gender="women"] .pc-hm-cta [data-show="women"] { display: inline; }
.pc-hm-cta__container { max-width: 800px; margin: 0 auto; }
.pc-hm-cta__content { margin-bottom: 45px; }
.pc-hm-cta__content h2 { font-size: 42px; font-weight: 700; color: var(--pepti-heading); margin-bottom: 20px; line-height: 1.2; }
.pc-hm-cta__content p { font-size: 20px; color: var(--pepti-body); line-height: 1.6; margin: 0; }
.pc-hm-cta__buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.pc-hm-cta__btn { padding: 18px 44px; font-size: 18px; font-weight: 600; border-radius: 50px; text-decoration: none !important; transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease; display: inline-block; cursor: pointer; }
.pc-hm-cta__btn--primary, .pc-hm-cta__btn--primary:link, .pc-hm-cta__btn--primary:visited { background: #ffffff !important; color: #5b21b6 !important; box-shadow: 0 8px 24px rgba(0,0,0,0.2); border: none !important; }
html[data-gender="men"] .pc-hm-cta__btn--primary, html[data-gender="men"] .pc-hm-cta__btn--primary:link, html[data-gender="men"] .pc-hm-cta__btn--primary:visited { color: #2B4A6F !important; }
html[data-gender="women"] .pc-hm-cta__btn--primary, html[data-gender="women"] .pc-hm-cta__btn--primary:link, html[data-gender="women"] .pc-hm-cta__btn--primary:visited { color: #4a2b6f !important; }
.pc-hm-cta__btn--primary:hover { background: var(--pepti-btn-hover) !important; color: #ffffff !important; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.pc-hm-cta__btn--secondary, .pc-hm-cta__btn--secondary:link, .pc-hm-cta__btn--secondary:visited { background: transparent !important; color: #ffffff !important; border: 2px solid #ffffff !important; }
.pc-hm-cta__btn--secondary:hover { background: rgba(255,255,255,0.15) !important; color: #ffffff !important; transform: translateY(-3px); }
.pc-hm-cta__disclaimer { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); }
.pc-hm-cta__disclaimer p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; font-style: italic; margin: 0; max-width: 700px; margin: 0 auto; }
@media (max-width: 768px) { .pc-hm-cta { padding: 60px 20px; } .pc-hm-cta__content h2 { font-size: 28px; } .pc-hm-cta__content p { font-size: 16px; } .pc-hm-cta__buttons { flex-direction: column; gap: 16px; align-items: center; } .pc-hm-cta__btn { width: 100%; max-width: 320px; padding: 16px 36px; font-size: 16px; } }


/* =====================================================
   SECTION: CONTACT PAGE
   Converted from WP rendered HTML — pepti-contact-* (verbatim)
   ===================================================== */

/* ===== CONTACT HERO ===== */
.pepti-contact-hero { position: relative; min-height: 450px; display: flex; align-items: center; overflow: hidden; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.pepti-contact-hero *, .pepti-contact-hero *::before, .pepti-contact-hero *::after { box-sizing: border-box; margin: 0; padding: 0; }
.pepti-contact-hero__bg { position: absolute; inset: 0; z-index: 0; }
.pepti-contact-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.pepti-contact-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%); z-index: 1; }
.pepti-contact-hero__content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 40px; width: 100%; }
.pepti-contact-hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--pepti-glow-light, rgba(124, 58, 237, 0.2)); border: 1px solid var(--pepti-border-strong, rgba(124, 58, 237, 0.5)); border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--pepti-accent, #A78BFA); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.5px; backdrop-filter: blur(10px); }
.pepti-contact-hero__badge svg { width: 16px; height: 16px; }
.pepti-contact-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: #ffffff; margin-bottom: 16px; line-height: 1.1; }
.pepti-contact-hero p { font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.85); max-width: 500px; line-height: 1.6; }

/* ===== CONTACT SECTION GRID ===== */
.pepti-contact-section { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; padding: 60px 40px; background: var(--pepti-bg-light, #f9fafb); }
.pepti-contact-section *, .pepti-contact-section *::before, .pepti-contact-section *::after { box-sizing: border-box; margin: 0; padding: 0; }
.pepti-contact-section__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }

/* ===== FORM CARD ===== */
.pepti-contact-form-card { background: #ffffff; border-radius: 20px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 1px solid #e5e7eb; }
.pepti-contact-form-card__header { margin-bottom: 28px; }
.pepti-contact-form-card__header h2 { font-size: 24px; font-weight: 700; color: var(--pepti-text-dark, #1E1B4B); margin: 0 0 8px 0; }
.pepti-contact-form-card__header p { font-size: 15px; color: #6b7280; margin: 0; }
.pepti-contact-form { display: flex; flex-direction: column; gap: 20px; }
.pepti-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pepti-contact-form__field { display: flex; flex-direction: column; gap: 8px; }
.pepti-contact-form__field label { font-size: 13px; font-weight: 600; color: #374151; text-transform: uppercase; letter-spacing: 0.5px; }
.pepti-contact-form__field label span { color: var(--pepti-primary, #7C3AED); }
.pepti-contact-form__field input, .pepti-contact-form__field select, .pepti-contact-form__field textarea { width: 100%; padding: 14px 16px; font-family: 'Inter', sans-serif; font-size: 15px; color: #1f1f1f; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px; transition: all 0.2s ease; outline: none; }
.pepti-contact-form__field input::placeholder, .pepti-contact-form__field textarea::placeholder { color: #9ca3af; }
.pepti-contact-form__field input:focus, .pepti-contact-form__field select:focus, .pepti-contact-form__field textarea:focus { background: #ffffff; border-color: var(--pepti-primary, #7C3AED); box-shadow: 0 0 0 3px var(--pepti-glow-light, rgba(124, 58, 237, 0.1)); }
.pepti-contact-form__field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 48px; cursor: pointer; }
.pepti-contact-form__field textarea { min-height: 120px; resize: vertical; }
.pepti-contact-form__submit { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px 32px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #ffffff; background: var(--pepti-gradient-primary, linear-gradient(135deg, #7C3AED, #9333EA)); border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; }
.pepti-contact-form__submit svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.pepti-contact-form__submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--pepti-glow, rgba(124, 58, 237, 0.35)); }
.pepti-contact-form__submit:hover svg { transform: translateX(4px); }
.pepti-contact-form__submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.pepti-contact-form__success { background: var(--pepti-success-bg, #ecfdf5); border: 1px solid var(--pepti-success-dark, #065f46); border-radius: 12px; padding: 24px; text-align: center; }
.pepti-contact-form__success p { font-size: 15px; color: var(--pepti-success-dark, #065f46); line-height: 1.6; margin-bottom: 16px; }
.pepti-contact-form__success a { font-weight: 600; text-decoration: underline; color: inherit; }
.pepti-contact-form__error { background: var(--pepti-error-bg, #fef2f2); color: var(--pepti-error-dark, #991b1b); border-radius: 12px; padding: 16px; font-size: 14px; }
.pepti-contact-form__error a { font-weight: 600; text-decoration: underline; color: inherit; }

/* ===== INFO CARD ===== */
.pepti-contact-info-card { background: #ffffff; border-radius: 20px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 1px solid #e5e7eb; }
.pepti-contact-info-card__item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.pepti-contact-info-card__icon { width: 48px; height: 48px; min-width: 48px; background: var(--pepti-glow-light, linear-gradient(135deg, rgba(124,58,237,0.1), rgba(147,51,234,0.08))); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.pepti-contact-info-card__icon svg { width: 22px; height: 22px; stroke: var(--pepti-primary, #7C3AED); }
.pepti-contact-info-card__text { display: flex; flex-direction: column; gap: 4px; }
.pepti-contact-info-card__text span { font-size: 12px; font-weight: 600; color: var(--pepti-primary, #7C3AED); text-transform: uppercase; letter-spacing: 0.5px; }
.pepti-contact-info-card__text a { font-size: 17px; font-weight: 600; color: var(--pepti-text-dark, #1E1B4B); text-decoration: none; transition: color 0.2s ease; }
.pepti-contact-info-card__text a:hover { color: var(--pepti-primary, #7C3AED); }
.pepti-contact-info-card__text p { font-size: 15px; color: #4b5563; line-height: 1.6; }
.pepti-contact-info-card__divider { height: 1px; background: #e5e7eb; margin: 28px 0; }
.pepti-contact-info-card__hours h4 { font-size: 14px; font-weight: 700; color: var(--pepti-text-dark, #1E1B4B); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.pepti-contact-info-card__hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f3f4f6; }
.pepti-contact-info-card__hours-row:last-child { border-bottom: none; }
.pepti-contact-info-card__hours-row span:first-child { font-size: 14px; color: #374151; }
.pepti-contact-info-card__hours-row span:last-child { font-size: 14px; color: #6b7280; }
.pepti-contact-info-card__footer p { font-size: 14px; color: #374151; margin-bottom: 4px; }
.pepti-contact-info-card__footer p strong { color: var(--pepti-text-dark, #1E1B4B); }
.pepti-contact-info-card__legal { font-size: 12px !important; color: #9ca3af !important; }

/* ===== CONTACT MAP ===== */
.pepti-contact-map { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; padding: 0 40px 60px; background: var(--pepti-bg-light, #f9fafb); }
.pepti-contact-map *, .pepti-contact-map *::before, .pepti-contact-map *::after { box-sizing: border-box; margin: 0; padding: 0; }
.pepti-contact-map__container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; background: #ffffff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 1px solid #e5e7eb; }
.pepti-contact-map__info { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; background: var(--pepti-text-dark, linear-gradient(135deg, #1E1B4B 0%, #312e81 100%)); }
.pepti-contact-map__info h3 { font-size: 22px; font-weight: 700; color: #ffffff; margin-bottom: 12px; }
.pepti-contact-map__info p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 24px; line-height: 1.6; }
.pepti-contact-map__info a { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; background: var(--pepti-gradient-primary, linear-gradient(135deg, #7C3AED, #9333EA)); color: #ffffff; font-size: 14px; font-weight: 600; text-decoration: none; border-radius: 10px; transition: all 0.3s ease; width: fit-content; }
.pepti-contact-map__info a:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--pepti-glow, rgba(124, 58, 237, 0.4)); }
.pepti-contact-map__info a svg { width: 16px; height: 16px; }
.pepti-contact-map__embed { min-height: 300px; background: #f3f4f6; }
.pepti-contact-map__embed iframe { width: 100%; height: 100%; min-height: 300px; border: none; display: block; }

/* ===== CONTACT PAGE RESPONSIVE ===== */
@media (max-width: 960px) { .pepti-contact-section__grid { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 900px) { .pepti-contact-map { padding: 0 24px 40px; } .pepti-contact-map__container { grid-template-columns: 1fr; } .pepti-contact-map__info { text-align: center; padding: 32px 24px; } .pepti-contact-map__info a { margin: 0 auto; } .pepti-contact-map__embed { min-height: 250px; } }
@media (max-width: 768px) { .pepti-contact-hero { min-height: 380px; } .pepti-contact-hero__content { padding: 60px 24px; } .pepti-contact-hero__overlay { background: rgba(0,0,0,0.65); } .pepti-contact-section { padding: 40px 20px; } .pepti-contact-form-card, .pepti-contact-info-card { padding: 28px 24px; border-radius: 16px; } .pepti-contact-form__row { grid-template-columns: 1fr; gap: 20px; } }
html[data-gender="men"] .pepti-contact-section, html[data-gender="men"] .pepti-contact-map { background: #f9fafb; }

/* =====================================================
   SECTION: ABOUT PAGE
   ===================================================== */

/* ===== HERO ===== */
.pepti-hero-premium { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--pepti-bg-dark-alt, #0a0a0f); font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.pepti-hero-premium *, .pepti-hero-premium *::before, .pepti-hero-premium *::after { box-sizing: border-box; margin: 0; padding: 0; }

.pepti-hero-premium__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.pepti-hero-premium__aurora { position: absolute; inset: -50%; background: radial-gradient(ellipse at 20% 20%, var(--pepti-hero-glow-1, rgba(124, 58, 237, 0.4)) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, var(--pepti-hero-glow-2, rgba(147, 51, 234, 0.35)) 0%, transparent 50%), radial-gradient(ellipse at 40% 60%, var(--pepti-hero-glow-3, rgba(99, 102, 241, 0.3)) 0%, transparent 40%), radial-gradient(ellipse at 60% 30%, var(--pepti-glow-light, rgba(167, 139, 250, 0.2)) 0%, transparent 45%); animation: pcAboutAuroraMove 20s ease-in-out infinite; }
@keyframes pcAboutAuroraMove { 0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); } 25% { transform: translate(5%, -5%) rotate(5deg) scale(1.05); } 50% { transform: translate(-5%, 5%) rotate(-5deg) scale(1); } 75% { transform: translate(3%, 3%) rotate(3deg) scale(1.02); } }

.pepti-hero-premium__grid { position: absolute; inset: 0; background-image: linear-gradient(var(--pepti-border, rgba(124, 58, 237, 0.03)) 1px, transparent 1px), linear-gradient(90deg, var(--pepti-border, rgba(124, 58, 237, 0.03)) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); }

.pepti-hero-premium__glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.6; animation: pcAboutGlowFloat 8s ease-in-out infinite; }
.pepti-hero-premium__glow--1 { width: 600px; height: 600px; background: var(--pepti-hero-glow-1, rgba(124, 58, 237, 0.4)); top: -200px; left: -100px; animation-delay: 0s; }
.pepti-hero-premium__glow--2 { width: 500px; height: 500px; background: var(--pepti-hero-glow-2, rgba(147, 51, 234, 0.35)); bottom: -150px; right: -100px; animation-delay: -3s; }
.pepti-hero-premium__glow--3 { width: 400px; height: 400px; background: var(--pepti-hero-glow-3, rgba(99, 102, 241, 0.3)); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: -6s; }
@keyframes pcAboutGlowFloat { 0%, 100% { transform: translate(0, 0); opacity: 0.6; } 50% { transform: translate(30px, -30px); opacity: 0.8; } }

.pepti-hero-premium__particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.pepti-hero-premium__particles span { position: absolute; width: 4px; height: 4px; background: var(--pepti-accent, rgba(167, 139, 250, 0.6)); border-radius: 50%; animation: pcAboutParticleFloat 15s linear infinite; box-shadow: 0 0 10px var(--pepti-glow, rgba(167, 139, 250, 0.5)); }
.pepti-hero-premium__particles span:nth-child(1) { left: 10%; animation-duration: 18s; animation-delay: 0s; width: 3px; height: 3px; }
.pepti-hero-premium__particles span:nth-child(2) { left: 20%; animation-duration: 22s; animation-delay: -2s; width: 5px; height: 5px; }
.pepti-hero-premium__particles span:nth-child(3) { left: 30%; animation-duration: 16s; animation-delay: -4s; }
.pepti-hero-premium__particles span:nth-child(4) { left: 40%; animation-duration: 20s; animation-delay: -6s; width: 6px; height: 6px; }
.pepti-hero-premium__particles span:nth-child(5) { left: 50%; animation-duration: 24s; animation-delay: -8s; }
.pepti-hero-premium__particles span:nth-child(6) { left: 60%; animation-duration: 17s; animation-delay: -10s; width: 4px; height: 4px; }
.pepti-hero-premium__particles span:nth-child(7) { left: 70%; animation-duration: 21s; animation-delay: -12s; }
.pepti-hero-premium__particles span:nth-child(8) { left: 80%; animation-duration: 19s; animation-delay: -14s; width: 5px; height: 5px; }
.pepti-hero-premium__particles span:nth-child(9) { left: 85%; animation-duration: 23s; animation-delay: -16s; }
.pepti-hero-premium__particles span:nth-child(10) { left: 95%; animation-duration: 15s; animation-delay: -18s; width: 3px; height: 3px; }
@keyframes pcAboutParticleFloat { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; } }

.pepti-hero-premium__container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 120px 40px 100px; width: 100%; text-align: center; }

.pepti-hero-premium__number-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: clamp(300px, 40vw, 500px); font-weight: 900; color: transparent; -webkit-text-stroke: 1px var(--pepti-border, rgba(124, 58, 237, 0.1)); pointer-events: none; user-select: none; z-index: 0; line-height: 1; opacity: 0; animation: pcAboutNumberReveal 1.5s ease-out 0.5s forwards; }
@keyframes pcAboutNumberReveal { 0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

.pepti-hero-premium__content { position: relative; z-index: 1; }

.pepti-hero-premium__badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px 10px 12px; background: var(--pepti-glow-light, rgba(124, 58, 237, 0.15)); border: 1px solid var(--pepti-border-strong, rgba(124, 58, 237, 0.4)); border-radius: 50px; margin-bottom: 32px; backdrop-filter: blur(10px); opacity: 0; transform: translateY(20px); animation: pcAboutFadeInUp 0.8s ease-out 0.3s forwards; }
.pepti-hero-premium__badge-icon { width: 28px; height: 28px; background: var(--pepti-gradient-primary, linear-gradient(135deg, #7C3AED, #9333EA)); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pepti-hero-premium__badge-icon svg { width: 14px; height: 14px; stroke: #ffffff; }
.pepti-hero-premium__badge span { font-size: 14px; font-weight: 600; color: var(--pepti-accent, #A78BFA); text-transform: uppercase; letter-spacing: 0.5px; }

.pepti-hero-premium__title { font-size: clamp(36px, 6vw, 72px); font-weight: 700; color: #ffffff; line-height: 1.1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.pepti-hero-premium__title-line { opacity: 0; transform: translateY(30px); animation: pcAboutFadeInUp 0.8s ease-out forwards; }
.pepti-hero-premium__title-line:nth-child(1) { animation-delay: 0.5s; }
.pepti-hero-premium__title-line:nth-child(3) { animation-delay: 0.9s; }
.pepti-hero-premium__title-highlight { display: flex; align-items: center; justify-content: center; gap: 20px; opacity: 0; transform: translateY(30px) scale(0.9); animation: pcAboutFadeInUpScale 1s ease-out 0.7s forwards; }
@keyframes pcAboutFadeInUpScale { 0% { opacity: 0; transform: translateY(30px) scale(0.9); } 100% { opacity: 1; transform: translateY(0) scale(1); } }

.pepti-hero-premium__number { font-size: clamp(60px, 10vw, 120px); font-weight: 900; background: var(--pepti-gradient-accent, linear-gradient(135deg, #7C3AED 0%, #A78BFA 50%, #7C3AED 100%)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: pcAboutGradientShift 3s ease-in-out infinite; filter: drop-shadow(0 0 30px var(--pepti-glow, rgba(124, 58, 237, 0.4))); }
@keyframes pcAboutGradientShift { 0%, 100% { background-position: 0% center; } 50% { background-position: 200% center; } }

.pepti-hero-premium__subtitle { font-size: clamp(16px, 2vw, 20px); font-weight: 400; color: rgba(255, 255, 255, 0.75); max-width: 700px; margin: 0 auto 40px; line-height: 1.7; opacity: 0; transform: translateY(20px); animation: pcAboutFadeInUp 0.8s ease-out 1.1s forwards; }

.pepti-hero-premium__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: pcAboutFadeInUp 0.8s ease-out 1.3s forwards; }
.pepti-hero-premium__btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; text-decoration: none; border-radius: 12px; transition: all 0.3s ease; }
.pepti-hero-premium__btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.pepti-hero-premium__btn--primary { background: var(--pepti-hero-btn-primary, #7c3aed); color: #ffffff; box-shadow: 0 8px 32px var(--pepti-hero-btn-shadow, rgba(124, 58, 237, 0.4)); }
.pepti-hero-premium__btn--primary:hover { background: var(--pepti-hero-btn-primary-hover, #6d28d9); transform: translateY(-3px); box-shadow: 0 12px 40px var(--pepti-hero-btn-shadow-hover, rgba(124, 58, 237, 0.5)); }
.pepti-hero-premium__btn--primary:hover svg { transform: translateX(4px); }
.pepti-hero-premium__btn--ghost { background: var(--pepti-hero-btn-secondary, rgba(255, 255, 255, 0.08)); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); }
.pepti-hero-premium__btn--ghost:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.4); transform: translateY(-3px); }

@keyframes pcAboutFadeInUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }

.pepti-hero-premium__stats { display: flex; align-items: center; justify-content: center; gap: 40px; margin-top: 80px; padding: 32px 48px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; backdrop-filter: blur(20px); opacity: 0; transform: translateY(30px); animation: pcAboutFadeInUp 0.8s ease-out 1.5s forwards; }
.pepti-hero-premium__stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.pepti-hero-premium__stat-number { font-size: 32px; font-weight: 800; color: #ffffff; background: linear-gradient(135deg, #ffffff, var(--pepti-accent, #A78BFA)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pepti-hero-premium__stat-label { font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.pepti-hero-premium__stat-divider { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent); }

.pepti-hero-premium__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; opacity: 0; animation: pcAboutFadeInUp 0.8s ease-out 2s forwards; }
.pepti-hero-premium__scroll span { font-size: 12px; font-weight: 500; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 1px; }
.pepti-hero-premium__scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--pepti-primary, rgba(124, 58, 237, 0.8)), transparent); position: relative; overflow: hidden; }
.pepti-hero-premium__scroll-line::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 20px; background: var(--pepti-accent, #A78BFA); animation: pcAboutScrollLine 2s ease-in-out infinite; }
@keyframes pcAboutScrollLine { 0% { transform: translateY(-20px); } 100% { transform: translateY(80px); } }

@media (max-width: 960px) {
  .pepti-hero-premium__stats { flex-wrap: wrap; gap: 24px 32px; padding: 28px 32px; }
  .pepti-hero-premium__stat-divider { display: none; }
  .pepti-hero-premium__stat { min-width: 120px; }
}
@media (max-width: 768px) {
  .pepti-hero-premium { min-height: auto; padding: 60px 0; }
  .pepti-hero-premium__container { padding: 80px 24px 60px; }
  .pepti-hero-premium__number-bg { font-size: 200px; -webkit-text-stroke: 1px var(--pepti-border, rgba(124, 58, 237, 0.08)); }
  .pepti-hero-premium__title-highlight { flex-direction: column; gap: 8px; }
  .pepti-hero-premium__number { font-size: 80px; }
  .pepti-hero-premium__stats { flex-direction: column; gap: 20px; margin-top: 48px; }
  .pepti-hero-premium__stat { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; }
  .pepti-hero-premium__stat:last-child { border-bottom: none; }
  .pepti-hero-premium__cta { flex-direction: column; }
  .pepti-hero-premium__btn { width: 100%; justify-content: center; }
  .pepti-hero-premium__scroll { display: none; }
}

/* ===== SERVICES / WHAT WE DO ===== */
.pepti-about-services { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; padding: 80px 40px; background: var(--pepti-gradient-bg, linear-gradient(180deg, #f9fafb 0%, #ffffff 100%)); }
.pepti-about-services *, .pepti-about-services *::before, .pepti-about-services *::after { box-sizing: border-box; margin: 0; padding: 0; }
.pepti-about-services__container { max-width: 1200px; margin: 0 auto; }
.pepti-about-services__intro { text-align: center; max-width: 800px; margin: 0 auto 56px; }
.pepti-about-services__label { display: inline-block; font-size: 13px; font-weight: 600; color: var(--pepti-primary, #7C3AED); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.pepti-about-services__intro h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--pepti-text-dark, #1E1B4B); margin-bottom: 20px; line-height: 1.2; }
.pepti-about-services__intro p { font-size: 17px; color: #4b5563; line-height: 1.7; }
.pepti-about-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pepti-about-services__item { background: #ffffff; border-radius: 16px; padding: 32px; border: 1px solid #e5e7eb; transition: all 0.3s ease; position: relative; }
.pepti-about-services__item:hover { border-color: var(--pepti-border-strong, rgba(124, 58, 237, 0.3)); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.pepti-about-services__number { font-size: 48px; font-weight: 800; color: var(--pepti-border, rgba(124, 58, 237, 0.1)); line-height: 1; margin-bottom: 16px; display: block; }
.pepti-about-services__item h3 { font-size: 18px; font-weight: 700; color: var(--pepti-text-dark, #1E1B4B); margin-bottom: 12px; }
.pepti-about-services__item p { font-size: 15px; color: #6b7280; line-height: 1.6; }
@media (max-width: 960px) { .pepti-about-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pepti-about-services { padding: 60px 24px; } .pepti-about-services__grid { grid-template-columns: 1fr; } .pepti-about-services__item { padding: 28px 24px; } }

/* ===== FOUNDER ===== */
.pepti-about-founder { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; padding: 80px 40px; background: #1E1B4B; }
.pepti-about-founder *, .pepti-about-founder *::before, .pepti-about-founder *::after { box-sizing: border-box; margin: 0; padding: 0; }
.pepti-about-founder__container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: center; }
.pepti-about-founder__image { position: relative; }
.pepti-about-founder__image img { width: 100%; border-radius: 20px; box-shadow: 0 24px 48px rgba(0,0,0,0.3); }
.pepti-about-founder__image-badge { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: linear-gradient(135deg, #7C3AED, #9333EA); border-radius: 50px; font-size: 14px; font-weight: 600; color: #ffffff; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4); }
.pepti-about-founder__image-badge svg { width: 16px; height: 16px; }
.pepti-about-founder__content { color: #ffffff; }
.pepti-about-founder__label { display: inline-block; font-size: 13px; font-weight: 600; color: #A78BFA; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.pepti-about-founder__content h2 { font-size: clamp(36px, 5vw, 48px); font-weight: 700; color: #ffffff; margin-bottom: 8px; line-height: 1.1; }
.pepti-about-founder__title { font-size: 18px; color: #A78BFA; margin-bottom: 28px; }
.pepti-about-founder__bio p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 20px; }
.pepti-about-founder__bio p:last-child { margin-bottom: 0; }
.pepti-about-founder__stats { display: flex; gap: 40px; margin-top: 36px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); }
.pepti-about-founder__stat { display: flex; flex-direction: column; gap: 4px; }
.pepti-about-founder__stat-number { font-size: 32px; font-weight: 800; color: #ffffff; }
.pepti-about-founder__stat-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 960px) { .pepti-about-founder__container { grid-template-columns: 1fr; gap: 48px; text-align: center; } .pepti-about-founder__image { max-width: 350px; margin: 0 auto; } .pepti-about-founder__stats { justify-content: center; } }
@media (max-width: 600px) { .pepti-about-founder { padding: 60px 24px; } .pepti-about-founder__stats { flex-direction: column; gap: 24px; align-items: center; } .pepti-about-founder__stat { align-items: center; } }

/* ===== PRESCRIBER ===== */
.pepti-about-prescriber { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; padding: 80px 40px; background: var(--pepti-gradient-bg, linear-gradient(180deg, #f9fafb 0%, #ffffff 100%)); }
.pepti-about-prescriber *, .pepti-about-prescriber *::before, .pepti-about-prescriber *::after { box-sizing: border-box; margin: 0; padding: 0; }
.pepti-about-prescriber__container { max-width: 800px; margin: 0 auto; }
.pepti-about-prescriber__content { text-align: center; margin-bottom: 48px; }
.pepti-about-prescriber__label { display: inline-block; font-size: 13px; font-weight: 600; color: var(--pepti-primary, #7c3aed); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.pepti-about-prescriber__content h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--pepti-gray-900, #111827); margin-bottom: 16px; line-height: 1.2; }
.pepti-about-prescriber__subtitle { font-size: 16px; color: var(--pepti-gray-600, #4b5563); line-height: 1.6; max-width: 600px; margin: 0 auto; }
.pepti-about-prescriber__card { background: #ffffff; border: 1px solid var(--pepti-gray-200, #e5e7eb); border-radius: 16px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.pepti-about-prescriber__card + .pepti-about-prescriber__card { margin-top: 24px; }
.pepti-about-prescriber__card-header { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.pepti-about-prescriber__avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--pepti-gradient-primary, linear-gradient(135deg, #7c3aed 0%, #a855f7 100%)); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; color: #ffffff; flex-shrink: 0; }
.pepti-about-prescriber__info h3 { font-size: 24px; font-weight: 700; color: var(--pepti-gray-900, #111827); margin-bottom: 4px; }
.pepti-about-prescriber__role { font-size: 15px; font-weight: 500; color: var(--pepti-primary, #7c3aed); }
.pepti-about-prescriber__bio { margin-bottom: 28px; }
.pepti-about-prescriber__bio p { font-size: 16px; color: var(--pepti-gray-700, #374151); line-height: 1.7; }
.pepti-about-prescriber__details { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 24px; background: var(--pepti-gray-50, #f9fafb); border-radius: 12px; margin-bottom: 24px; }
.pepti-about-prescriber__detail { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--pepti-gray-200, #e5e7eb); }
.pepti-about-prescriber__detail:last-child { padding-bottom: 0; border-bottom: none; }
.pepti-about-prescriber__detail-label { font-size: 13px; font-weight: 600; color: var(--pepti-gray-500, #6b7280); text-transform: uppercase; letter-spacing: 0.5px; }
.pepti-about-prescriber__detail-value { font-size: 15px; font-weight: 500; color: var(--pepti-gray-900, #111827); }
.pepti-about-prescriber__verify { text-align: center; }
.pepti-about-prescriber__verify a { display: inline-block; font-size: 14px; font-weight: 600; color: var(--pepti-primary, #7c3aed); text-decoration: none; padding: 10px 24px; border: 2px solid var(--pepti-primary, #7c3aed); border-radius: 8px; transition: all 0.2s ease; }
.pepti-about-prescriber__verify a:hover { background: var(--pepti-primary, #7c3aed); color: #ffffff; }
.pepti-about-prescriber__disclaimer { margin-top: 24px; font-size: 13px; color: var(--pepti-gray-500, #6b7280); text-align: center; line-height: 1.5; }
@media (max-width: 600px) { .pepti-about-prescriber { padding: 60px 24px; } .pepti-about-prescriber__card { padding: 24px; } .pepti-about-prescriber__card-header { flex-direction: column; text-align: center; } .pepti-about-prescriber__detail { flex-direction: column; gap: 4px; text-align: center; } }

/* Footer CTA on the about page reuses the global .pc-footer-cta block defined above. */

/* ══════════════════════════════════════════════════════════════
   SECTION: BECOME A PATIENT (pc-bp-)
   Marketing landing page that funnels to /eligibility.
   Pairs with src/app/(site)/become-a-patient/page.tsx.
   ══════════════════════════════════════════════════════════════ */

.pc-bp-page { background: var(--pepti-bg-light, #f8f9fc); }

.pc-bp-section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--pepti-bg-dark, #1a0a2e);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.pc-bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.pc-bp-btn--primary {
  background: var(--pepti-primary, #7c3aed);
  color: #fff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}
.pc-bp-btn--primary:hover {
  background: var(--pepti-primary-hover, #6d28d9);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.32);
}
.pc-bp-btn--large { padding: 18px 36px; font-size: 18px; }
.pc-bp-btn__arrow { display: inline-block; transition: transform .15s ease; }
.pc-bp-btn:hover .pc-bp-btn__arrow { transform: translateX(3px); }

/* ── Hero ────────────────────────────────────────────────────── */
.pc-bp-hero {
  position: relative;
  background: linear-gradient(160deg, var(--pepti-bg-dark, #1a0a2e) 0%, var(--pepti-bg-dark-secondary, #3b1d5a) 70%, var(--pepti-bg-dark-tertiary, #2d1548) 100%);
  color: #fff;
  padding: clamp(80px, 12vw, 160px) 24px clamp(80px, 10vw, 130px);
  overflow: hidden;
}
.pc-bp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.18), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.15), transparent 60%);
  pointer-events: none;
}
.pc-bp-hero__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.pc-bp-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.85);
}
.pc-bp-hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.pc-bp-hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto 40px;
}
.pc-bp-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.pc-bp-hero__assurance {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.pc-bp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pc-bp-hero__badges li {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

/* ── Value props ─────────────────────────────────────────────── */
.pc-bp-values { padding: clamp(80px, 10vw, 120px) 24px; }
.pc-bp-values__inner { max-width: 1180px; margin: 0 auto; }
.pc-bp-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pc-bp-value-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pc-bp-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.pc-bp-value-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--pepti-bg-dark, #1a0a2e);
  margin: 0 0 12px;
}
.pc-bp-value-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

/* ── Steps ───────────────────────────────────────────────────── */
.pc-bp-steps {
  background: #fff;
  padding: clamp(80px, 10vw, 120px) 24px;
}
.pc-bp-steps__inner { max-width: 880px; margin: 0 auto; }
.pc-bp-steps__lede {
  text-align: center;
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 56px;
}
.pc-bp-steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pc-bp-step {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--pepti-primary-bg, #f5f3ff);
  border-radius: 20px;
  border-left: 4px solid var(--pepti-primary, #7c3aed);
}
.pc-bp-step__num {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pepti-primary, #7c3aed);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.pc-bp-step__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--pepti-bg-dark, #1a0a2e);
  margin: 0 0 8px;
}
.pc-bp-step__text {
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}
.pc-bp-steps__cta { text-align: center; margin-top: 56px; }

/* ── Included list ───────────────────────────────────────────── */
.pc-bp-included { padding: clamp(80px, 10vw, 120px) 24px; }
.pc-bp-included__inner { max-width: 760px; margin: 0 auto; }
.pc-bp-included__list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pc-bp-included__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
}
.pc-bp-included__icon {
  flex: none;
  width: 28px;
  height: 28px;
  padding: 4px;
  background: var(--pepti-primary-subtle, #ede9fe);
  color: var(--pepti-primary, #7c3aed);
  border-radius: 50%;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.pc-bp-faq {
  background: #fff;
  padding: clamp(80px, 10vw, 120px) 24px;
}
.pc-bp-faq__inner { max-width: 760px; margin: 0 auto; }
.pc-bp-faq__list { margin: 48px 0 0; }
.pc-bp-faq__item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
}
.pc-bp-faq__item:last-child { border-bottom: 0; }
.pc-bp-faq__q {
  font-size: 18px;
  font-weight: 600;
  color: var(--pepti-bg-dark, #1a0a2e);
  margin: 0 0 8px;
}
.pc-bp-faq__a {
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

/* ── Closing CTA ─────────────────────────────────────────────── */
.pc-bp-cta {
  background: linear-gradient(135deg, var(--pepti-primary, #7c3aed) 0%, var(--pepti-accent-hover, #4f46e5) 100%);
  color: #fff;
  padding: clamp(80px, 10vw, 120px) 24px;
  text-align: center;
}
.pc-bp-cta__inner { max-width: 720px; margin: 0 auto; }
.pc-bp-cta__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.pc-bp-cta__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pc-bp-cta .pc-bp-btn--primary {
  background: #fff;
  color: var(--pepti-primary, #7c3aed);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.pc-bp-cta .pc-bp-btn--primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--pepti-primary-active, #5b21b6);
}

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .pc-bp-step { flex-direction: column; padding: 20px; gap: 16px; }
  .pc-bp-step__num { width: 40px; height: 40px; font-size: 18px; }
  .pc-bp-value-card { padding: 28px; }
  .pc-bp-included__item { font-size: 15px; }
  .pc-bp-faq__q { font-size: 17px; }
}

/* =====================================================
   HOME — TRUST BAR (audit container layout)
   Items as direct children of .pc-trust__container.
   ===================================================== */
.pc-trust { padding: 40px 20px; }
.pc-trust__container {
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.pc-trust__icon {
  width: 44px;
  height: 44px;
  background: var(--pepti-primary-subtle, rgba(124, 58, 237, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-trust__icon svg {
  width: 22px;
  height: 22px;
  color: var(--pepti-primary);
  stroke: var(--pepti-primary);
}
.pc-trust__item span {
  color: var(--pepti-text);
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .pc-trust__container { gap: 24px; }
  .pc-trust__item { flex-direction: column; text-align: center; gap: 8px; }
  .pc-trust__icon { width: 50px; height: 50px; }
  .pc-trust__item span { font-size: 12px; }
}
@media (max-width: 480px) {
  .pc-trust { padding: 30px 16px; }
  .pc-trust__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* =====================================================
   HOME — PEN INJECTOR
   ===================================================== */
.pc-pen {
  position: relative;
  padding: 80px 20px;
  background: var(--pepti-bg-dark-alt);
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.pc-pen__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.pc-pen__aurora {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse at 20% 40%, var(--pepti-hero-glow-1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, var(--pepti-hero-glow-2) 0%, transparent 50%);
  opacity: 0.5;
  animation: penAuroraMove 20s ease-in-out infinite;
}
@keyframes penAuroraMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-3%, 3%) scale(1.05); }
}
.pc-pen__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}
.pc-pen__glow--1 {
  width: 350px;
  height: 350px;
  background: var(--pepti-hero-glow-1);
  top: 0;
  left: 5%;
}
.pc-pen__glow--2 {
  width: 300px;
  height: 300px;
  background: var(--pepti-hero-glow-2);
  bottom: 0;
  right: 10%;
}
.pc-pen__container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pc-pen__image-side { text-align: center; }
.pc-pen__image-side img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.5s ease;
}
.pc-pen__image-side img:hover { transform: scale(1.03); }
.pc-pen__content { color: white; }
.pc-pen__icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.15);
}
.pc-pen__icon-wrapper img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.pc-pen__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  background: var(--pepti-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pc-pen__description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}
.pc-pen__cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--pepti-gradient-primary);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: var(--pepti-shadow);
  margin-bottom: 40px;
}
.pc-pen__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--pepti-glow);
}
.pc-pen__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pc-pen__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pc-pen__check-icon {
  width: 24px;
  height: 24px;
  color: var(--pepti-accent);
  flex-shrink: 0;
}
.pc-pen__feature span {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}
@media (max-width: 900px) {
  .pc-pen__container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .pc-pen__image-side { order: 2; }
  .pc-pen__content { order: 1; }
  .pc-pen__icon-wrapper { margin: 0 auto 24px; }
  .pc-pen__features { align-items: center; }
  .pc-pen__image-side img { max-width: 350px; }
}
@media (max-width: 480px) {
  .pc-pen { padding: 60px 16px; }
  .pc-pen__icon-wrapper { width: 64px; height: 64px; }
  .pc-pen__icon-wrapper img { width: 36px; height: 36px; }
  .pc-pen__description { font-size: 16px; }
  .pc-pen__cta { padding: 14px 32px; font-size: 13px; }
  .pc-pen__feature span { font-size: 14px; }
  .pc-pen__features { align-items: flex-start; text-align: left; }
  .pc-pen__image-side img { border-radius: 16px; }
}

/* =====================================================
   HOME — TESTIMONIALS
   ===================================================== */
.pc-testimonials {
  padding: 80px 20px;
  background: white;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.pc-testimonials__container {
  max-width: 1100px;
  margin: 0 auto;
}
.pc-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}
.pc-testimonials__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pepti-primary);
  margin-bottom: 12px;
}
.pc-testimonials__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--pepti-text-dark);
  margin-bottom: 16px;
}
.pc-testimonials__subtitle {
  font-size: 16px;
  color: var(--pepti-text);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.pc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pc-testimonials__card {
  background: var(--pepti-bg-light);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--pepti-border);
  transition: all 0.3s ease;
}
.pc-testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--pepti-primary);
}
.pc-testimonials__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.pc-testimonials__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--pepti-accent);
}
.pc-testimonials__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pepti-text);
  margin-bottom: 24px;
  font-style: italic;
}
.pc-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pc-testimonials__avatar {
  width: 48px;
  height: 48px;
  background: var(--pepti-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.pc-testimonials__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--pepti-text-dark);
}
.pc-testimonials__meta {
  font-size: 13px;
  color: var(--pepti-text-muted);
}
@media (max-width: 900px) {
  .pc-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .pc-testimonials { padding: 60px 16px; }
  .pc-testimonials__card { padding: 24px; }
  .pc-testimonials__text { font-size: 14px; }
  .pc-testimonials__avatar { width: 42px; height: 42px; font-size: 16px; }
}

/* ============================================
   SHOP HERO - sourced from rendered-shop.html
   Uses --pepti-* variables from globals.css
   ============================================ */
.pepti-shop-hero {
  position: relative;
  padding: 64px 20px 52px;
  background: var(--pepti-bg-dark-alt);
  overflow: visible;
  border-radius: 0 0 24px 24px;
  margin-bottom: 32px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.pepti-shop-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}
.pepti-shop-hero__aurora {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse at 70% 30%, var(--pepti-hero-glow-1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, var(--pepti-hero-glow-2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, var(--pepti-hero-glow-3) 0%, transparent 40%);
  animation: shopHeroAurora 20s ease-in-out infinite;
}
@keyframes shopHeroAurora {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(5%, -5%) rotate(3deg) scale(1.05); }
  50% { transform: translate(-5%, 5%) rotate(-3deg) scale(1); }
  75% { transform: translate(3%, 3%) rotate(2deg) scale(1.02); }
}
.pepti-shop-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--pepti-border, rgba(255,255,255,0.06)) 1px, transparent 1px),
    linear-gradient(90deg, var(--pepti-border, rgba(255,255,255,0.06)) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.pepti-shop-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: shopHeroGlow 8s ease-in-out infinite;
}
.pepti-shop-hero__glow--1 {
  width: 300px;
  height: 300px;
  background: var(--pepti-hero-glow-1);
  top: -100px;
  right: 10%;
}
.pepti-shop-hero__glow--2 {
  width: 220px;
  height: 220px;
  background: var(--pepti-hero-glow-2);
  bottom: -50px;
  left: 20%;
  animation-delay: -4s;
}
@keyframes shopHeroGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.7; }
}
.pepti-shop-hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  border-radius: 0 0 24px 24px;
}
.pepti-shop-hero__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--pepti-accent);
  border-radius: 50%;
  opacity: 0;
  animation: shopParticleFloat 12s infinite;
}
.pepti-shop-hero__particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.pepti-shop-hero__particles span:nth-child(2) { left: 25%; animation-delay: 2s; }
.pepti-shop-hero__particles span:nth-child(3) { left: 40%; animation-delay: 4s; }
.pepti-shop-hero__particles span:nth-child(4) { left: 55%; animation-delay: 6s; }
.pepti-shop-hero__particles span:nth-child(5) { left: 70%; animation-delay: 8s; }
.pepti-shop-hero__particles span:nth-child(6) { left: 85%; animation-delay: 10s; }
@keyframes shopParticleFloat {
  0% { bottom: -10px; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { bottom: 100%; opacity: 0; }
}
.pepti-shop-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  overflow: visible;
}
.pepti-shop-hero__content {
  position: relative;
}
.pepti-shop-hero__label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  color: var(--pepti-accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pepti-shop-hero__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: white;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.pepti-shop-hero__subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 20px 0;
  line-height: 1.5;
  max-width: 500px;
}
.pepti-shop-hero__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.pepti-shop-hero__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: white;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  font-family: inherit;
}
.pepti-shop-hero__category:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--pepti-glow);
}
.pepti-shop-hero__category--active {
  background: var(--pepti-gradient-primary) !important;
  border-color: transparent !important;
  box-shadow: var(--pepti-shadow);
}
.pepti-shop-hero__category--active:hover {
  box-shadow: 0 8px 30px var(--pepti-glow);
}
.pepti-shop-hero__category-icon {
  font-size: 14px;
  color: var(--pepti-accent);
  display: flex;
  align-items: center;
}
.pepti-shop-hero__category--active .pepti-shop-hero__category-icon {
  color: white;
}
.pepti-shop-hero__category-icon svg {
  width: 16px;
  height: 16px;
}
.pepti-shop-hero__divider {
  display: flex;
  align-items: center;
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  margin: 0 4px;
  align-self: center;
}
.pepti-shop-hero__category--product {
  border-style: dashed;
}
.pepti-shop-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.pepti-shop-hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.pepti-shop-hero__feature svg {
  width: 18px;
  height: 18px;
  color: var(--pepti-accent);
}
.pepti-shop-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  overflow: visible;
}
.pepti-shop-hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin-right: -40px;
  margin-top: -20px;
  margin-bottom: -30px;
  z-index: 2;
}
.pepti-shop-hero__image {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  animation: peptiHeroFloat 4s ease-in-out infinite;
  transition: transform 0.4s ease;
}
.pepti-shop-hero__image:hover {
  transform: scale(1.08) translateY(-10px);
}
.pepti-shop-hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
  z-index: 3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pepti-shop-hero__badge--1 {
  top: 0;
  right: -20px;
  animation: peptiBadgeFloat 3s ease-in-out infinite;
}
.pepti-shop-hero__badge--2 {
  bottom: 15%;
  left: 5%;
  animation: peptiBadgeFloat 3s ease-in-out infinite 1.5s;
}
.pepti-shop-hero__badge-icon {
  font-size: 18px;
}
@keyframes peptiHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes peptiBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 1024px) {
  .pepti-shop-hero__image-wrapper {
    margin-right: -20px;
    max-width: 300px;
  }
  .pepti-shop-hero__image {
    max-height: 320px;
  }
}
@media (max-width: 900px) {
  .pepti-shop-hero {
    padding: 76px 16px 40px;
    overflow: hidden;
  }
  .pepti-shop-hero__container {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .pepti-shop-hero__visual {
    order: -1;
    min-height: 230px;
    margin-top: 10px;
  }
  .pepti-shop-hero__image-wrapper {
    margin-right: 0;
    margin-top: 8px;
    margin-bottom: -15px;
    max-width: 240px;
  }
  .pepti-shop-hero__image {
    max-height: 260px;
  }
  .pepti-shop-hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .pepti-shop-hero__categories {
    justify-content: center;
  }
  .pepti-shop-hero__features {
    justify-content: center;
  }
  .pepti-shop-hero__badge--1 {
    top: 24px;
    right: 5%;
  }
  .pepti-shop-hero__badge--2 {
    bottom: 5%;
    left: 5%;
  }
}
@media (max-width: 600px) {
  .pepti-shop-hero {
    padding: 82px 12px 34px;
    border-radius: 0 0 16px 16px;
  }
  .pepti-shop-hero__categories {
    gap: 5px;
  }
  .pepti-shop-hero__category {
    padding: 6px 10px;
    font-size: 11px;
  }
  .pepti-shop-hero__image {
    max-height: 200px;
  }
  .pepti-shop-hero__image-wrapper {
    margin-top: 12px;
    margin-bottom: 0;
  }
  .pepti-shop-hero__badge {
    padding: 10px 12px;
    font-size: 10px;
  }
}
@media (max-width: 400px) {
  .pepti-shop-hero__category span:not(.pepti-shop-hero__category-icon) {
    display: none;
  }
  .pepti-shop-hero__category {
    padding: 10px 12px;
  }
  .pepti-shop-hero__category-icon {
    font-size: 16px;
  }
}

/* ============================================
   SHOP TITLE BAR
   ============================================ */
.pepti-shop-title-section {
  padding: 8px 20px 16px;
}
.pepti-shop-title-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.pepti-shop-title-section .the-shop-subtitle-custom .desc {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pepti-primary);
}
.pepti-shop-title-section .woocommerce-products-header__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 0;
  color: var(--pepti-text-dark);
  line-height: 1.1;
}
@media (max-width: 600px) {
  .pepti-shop-title-section { padding: 8px 16px 12px; }
}

/* ============================================
   SHOP PRODUCTS LISTING
   ============================================ */
.pepti-shop-products {
  padding: 24px 20px 64px;
}
.pepti-shop-products__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.pepti-shop-filter {
  margin-bottom: 14px;
  position: relative;
}
.pepti-shop-filter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pepti-shop-filter__pill {
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  min-height: 32px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease;
  white-space: nowrap;
}
.pepti-shop-filter__pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--pepti-glow-light, rgba(124, 58, 237, 0.08));
}
.pepti-shop-filter__navigator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid var(--pepti-border-strong, rgba(124, 58, 237, 0.22));
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
}
.pepti-shop-filter__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid var(--pepti-border-strong, rgba(236, 72, 153, 0.35));
  border-radius: 999px;
  background: var(--pepti-primary-subtle, rgba(236, 72, 153, 0.08));
  color: var(--pepti-primary, #ec4899);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.pepti-shop-filter__back:hover {
  background: var(--pepti-primary, #ec4899);
  color: white;
}
.pepti-shop-filter__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pepti-shop-filter__breadcrumb::-webkit-scrollbar {
  display: none;
}
.pepti-shop-filter__crumb {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--pepti-text-muted, #6b7280);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  padding: 4px 0;
  white-space: nowrap;
}
.pepti-shop-filter__crumb[aria-current="page"] {
  color: var(--pepti-text-dark, #1a1a2e);
  font-weight: 800;
}
.pepti-shop-filter__crumb:hover {
  color: var(--pepti-primary, #ec4899);
}
.pepti-shop-filter__crumb-separator {
  flex: 0 0 auto;
  color: var(--pepti-text-muted, #6b7280);
  opacity: 0.45;
  font-size: 12px;
}
.pepti-shop-subcategories {
  margin-bottom: 20px;
}
.pepti-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 20px;
  border-bottom: 1px solid var(--pepti-gray-200, #e5e7eb);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.pepti-shop-toolbar__count {
  margin: 0;
  font-size: 13px;
  color: var(--pepti-text-muted, #6b7280);
}
.pepti-shop-toolbar__sort {
  appearance: none;
  -webkit-appearance: none;
  background-color: white;
  border: 1px solid var(--pepti-gray-200, #e5e7eb);
  border-radius: 8px;
  padding: 8px 36px 8px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--pepti-text-dark, #1a1a2e);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.pepti-shop-toolbar__sort:focus {
  outline: none;
  border-color: var(--pepti-primary);
  box-shadow: 0 0 0 3px var(--pepti-glow-light, rgba(124,58,237,0.15));
}
.pepti-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1024px) {
  .pepti-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .pepti-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .pepti-shop-products { padding: 24px 16px 56px; }
  .pepti-shop-filter {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .pepti-shop-filter__row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1px 16px 8px 0;
    scrollbar-width: none;
  }
  .pepti-shop-filter--branches::after {
    content: "← swipe →";
    display: table;
    margin: 6px auto 0;
    color: var(--pepti-primary, #ec4899);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-transform: uppercase;
    animation: peptiShopSwipeCue 1.8s ease-in-out infinite;
  }
  .pepti-shop-filter__row::-webkit-scrollbar {
    display: none;
  }
  .pepti-shop-filter__pill {
    flex: 0 0 auto;
    padding: 8px 13px;
  }
  .pepti-shop-filter__navigator {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-right: 16px;
    padding: 10px;
    border-radius: 10px;
  }
  .pepti-shop-filter__back {
    justify-content: center;
    width: 100%;
  }
  .pepti-shop-filter__breadcrumb {
    justify-content: flex-start;
    padding-bottom: 1px;
  }
  .pepti-shop-toolbar {
    align-items: stretch;
    gap: 10px;
  }
  .pepti-shop-toolbar__sort {
    width: 100%;
  }
}
@keyframes peptiShopSwipeCue {
  0%, 100% { transform: translateX(0); opacity: 0.62; }
  50% { transform: translateX(5px); opacity: 1; }
}
@media (max-width: 480px) {
  .pepti-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* Keep the new service-box hero section from inheriting older per-page hero layout rules. */
.pc-service-box-hero,
html[data-gender="men"] .pc-service-box-hero,
html[data-gender="women"] .pc-service-box-hero {
  position: relative;
  display: block;
  align-items: initial;
  min-height: auto;
  padding: 0;
  background: linear-gradient(135deg, var(--pepti-hero-bg-tint-1) 0%, #ffffff 55%, var(--pepti-hero-bg-tint-2) 100%) !important;
  background-image: linear-gradient(135deg, var(--pepti-hero-bg-tint-1) 0%, #ffffff 55%, var(--pepti-hero-bg-tint-2) 100%) !important;
}

.pc-service-box-hero::before,
.pc-service-box-hero::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}
