:root {
  --ph-light-surface-fresh:
    linear-gradient(180deg, rgba(242, 247, 253, 0) 0%, rgba(241, 247, 255, 0.94) 18%, #edf5fc 100%);
  --ph-light-surface-continue:
    linear-gradient(180deg, #edf5fc 0%, #edf5fc 48%, #f4f9ff 100%);
  --ph-light-surface-card:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 249, 255, 0.98) 100%);
  --ph-light-surface-glow:
    radial-gradient(circle at top left, rgba(132, 186, 231, 0.16), transparent 34%);
  --ph-light-surface-glow-soft:
    radial-gradient(circle at top right, rgba(132, 186, 231, 0.18), transparent 34%);
}

.ph-homepage-mirror {
  --ph-font-body: "Lato", Sans-serif;
  --ph-font-display: "Montserrat", Sans-serif;
  --ph-text-hero: clamp(3rem, 6vw, 5rem);
  --ph-text-h1: clamp(2.625rem, 5vw, 4rem);
  --ph-text-h2: clamp(2rem, 4.5vw, 3.375rem);
  --ph-text-h3: 1.375rem;
  --ph-text-eyebrow: 0.875rem;
  --ph-text-body-lg: clamp(1.125rem, 1.8vw, 1.25rem);
  --ph-text-body: 1rem;
  --ph-text-body-sm: 0.9375rem;
  --ph-text-button: 1rem;
  --ph-leading-tight: 1.05;
  --ph-leading-normal: 1.65;
  --ph-tracking-display: -0.03em;
}

/* Custom mirrored section: Our Value vs The Competition */
.ph-value-section {
  padding: clamp(80px, 9vw, 112px) 20px clamp(28px, 3.5vw, 44px);
  background:
    linear-gradient(180deg, #f7f7f7 0%, #f3f8fd 56%, #edf5fc 100%);
  border-top: 1px solid #e3e7ec;
  border-bottom: 0;
}

.ph-value-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.ph-value-header {
  text-align: center;
  width: min(760px, 100%);
  margin: 0 auto;
}

.ph-value-kicker {
  margin: 0;
  color: #c69a22;
  font-family: var(--ph-font-display);
  font-size: var(--ph-text-eyebrow);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ph-value-heading {
  margin: 16px 0 18px;
  color: #1f211d;
  font-family: var(--ph-font-display);
  font-size: var(--ph-text-h2);
  font-weight: 700;
  line-height: var(--ph-leading-tight);
  letter-spacing: var(--ph-tracking-display);
  text-transform: uppercase;
}

.ph-value-intro {
  margin: 0;
  color: rgba(31, 33, 29, 0.72);
  font-family: var(--ph-font-body);
  font-size: var(--ph-text-body-lg);
  font-weight: 400;
  line-height: var(--ph-leading-normal);
}

.ph-value-grid {
  margin-top: clamp(48px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 4vw, 64px);
  align-items: stretch;
}

.ph-value-chart-wrap {
  width: 100%;
  height: 100%;
}

.ph-value-chart {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(400px, 42vw, 500px);
  height: 100%;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.ph-value-chart img {
  display: block;
  width: 100%;
  height: auto;
  max-width: min(720px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(18, 22, 20, 0.16));
}

.ph-value-accordion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.ph-acc-item {
  border-bottom: 1px solid #dde3ea;
  background: transparent;
  padding: 12px 0;
}

.ph-acc-item + .ph-acc-item {
  margin-top: 0;
}

.ph-acc-heading {
  margin: 0;
  display: flex;
}

.ph-value-section .ph-acc-trigger,
.ph-value-section .ph-acc-trigger:hover,
.ph-value-section .ph-acc-trigger:focus-visible,
.ph-value-section .ph-acc-trigger:active {
  appearance: none;
  width: 100%;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #17191c;
  text-align: left;
  cursor: pointer;
  transform: none;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.ph-value-section .ph-acc-trigger:hover,
.ph-value-section .ph-acc-trigger:focus-visible {
  color: #17191c;
  opacity: 0.88;
}

.ph-acc-title {
  font-family: var(--ph-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.ph-acc-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.ph-acc-chevron {
  width: 16px;
  height: 16px;
  color: #3f4954;
  transition: transform 0.2s ease;
}

.ph-acc-item[data-state="open"] .ph-acc-chevron {
  transform: rotate(180deg);
}

.ph-acc-panel {
  overflow: hidden;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.ph-acc-body {
  padding-top: 0;
}

.ph-acc-body p {
  margin: 0;
  padding: 0 0 16px;
  color: #6b7280;
  font-family: var(--ph-font-body);
  font-size: var(--ph-text-body);
  font-weight: 400;
  line-height: var(--ph-leading-normal);
}

.ph-value-highlights {
  margin-top: clamp(48px, 5vw, 64px);
  padding-top: clamp(42px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 40px);
  border-top: 1px solid rgba(31, 33, 29, 0.12);
}

.ph-value-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.ph-value-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(31, 33, 29, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: #1f211d;
  box-shadow: 0 8px 22px rgba(17, 22, 20, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ph-value-highlight:hover .ph-value-highlight-icon {
  transform: translateY(-2px);
  border-color: rgba(198, 154, 34, 0.35);
  color: #c69a22;
  box-shadow: 0 14px 30px rgba(17, 22, 20, 0.1);
}

.ph-value-highlight-icon svg {
  width: 28px;
  height: 28px;
}

.ph-value-highlight h3 {
  margin: 0;
  color: #1f211d;
  font-family: "Montserrat", Sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ph-value-highlight p {
  margin: 0;
  width: min(100%, 280px);
  color: rgba(31, 33, 29, 0.7);
  font-family: "Lato", Sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.ph-value-bridge {
  padding: clamp(34px, 4vw, 54px) 20px clamp(42px, 5vw, 66px);
  background: var(--ph-light-surface-continue);
}

.ph-value-bridge .ph-value-shell {
  width: min(1280px, 100%);
}

.ph-value-bridge .ph-value-highlights {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.ph-value-bridge .ph-value-highlight {
  min-height: 210px;
  justify-content: center;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(31, 33, 29, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
}

@media (max-width: 1024px) {
  .ph-value-grid {
    grid-template-columns: 1fr;
  }

  .ph-value-chart {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .ph-value-section {
    padding: 56px 20px 28px;
  }

  .ph-value-grid {
    gap: 28px;
  }

  .ph-acc-item {
    padding: 10px 0;
  }

  .ph-acc-trigger {
    padding: 8px 0;
  }

  .ph-value-highlights {
    grid-template-columns: 1fr;
  }

  .ph-value-bridge {
    padding: 30px 20px 42px;
  }

  .ph-value-bridge .ph-value-highlight {
    min-height: 0;
  }

  .ph-value-highlight h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .ph-value-section {
    padding: 40px 20px 20px;
  }

  .ph-value-chart {
    min-height: 0;
    padding: 20px;
    border-radius: 24px;
  }

  .ph-acc-title {
    font-size: 16px;
    line-height: 1.5;
  }

  .ph-acc-body p {
    font-size: 14px;
    line-height: 1.65;
  }

  .ph-value-highlight-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .ph-value-highlight h3 {
    font-size: 16px;
  }

  .ph-value-highlight p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .ph-value-highlights {
    gap: clamp(22px, 6vw, 30px);
  }

  .ph-value-highlight {
    gap: clamp(15px, 4vw, 18px);
  }

  .ph-value-highlight-icon {
    width: clamp(72px, 18vw, 82px);
    height: clamp(72px, 18vw, 82px);
    border-radius: clamp(22px, 5vw, 26px);
  }

  .ph-value-highlight-icon svg {
    width: clamp(30px, 7.5vw, 36px);
    height: clamp(30px, 7.5vw, 36px);
  }

  .ph-value-highlight h3 {
    font-size: clamp(1.125rem, 4.7vw, 1.3125rem);
    line-height: 1.2;
  }

  .ph-value-highlight p {
    width: min(100%, 320px);
    font-size: clamp(1rem, 3.9vw, 1.0625rem);
    line-height: 1.62;
  }
}

/* Custom mirrored section: Targeted Programs */
.ph-targeted-programs {
  padding: 64px 24px;
  background:
    radial-gradient(circle at right bottom, rgba(255, 197, 58, 0.12), transparent 30%),
    radial-gradient(circle at left top, rgba(255, 197, 58, 0.06), transparent 24%),
    linear-gradient(180deg, #161c24 0%, #111720 58%, #0f141b 100%);
  color: #ffffff;
  overflow: hidden;
}

.ph-targeted-programs__shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.ph-targeted-programs__header {
  width: min(760px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.ph-targeted-programs__kicker {
  margin: 0 0 12px;
  color: #d2a839;
  font-family: "Montserrat", Sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.ph-targeted-programs__heading {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.ph-targeted-programs__intro {
  margin: 0;
  color: rgba(245, 245, 245, 0.72);
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.ph-targeted-programs__grid {
  display: grid;
  gap: 24px;
  min-height: 800px;
}

.ph-targeted-programs__panel {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 0;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  background: #121412;
  cursor: pointer;
  transition:
    flex 700ms ease,
    transform 700ms ease,
    box-shadow 500ms ease;
}

.ph-targeted-programs__panel:hover,
.ph-targeted-programs__panel:focus-within {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.ph-targeted-programs__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1000ms ease;
}

.ph-targeted-programs__panel:hover .ph-targeted-programs__image,
.ph-targeted-programs__panel:focus-within .ph-targeted-programs__image {
  transform: scale(1.05);
}

.ph-targeted-programs__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72));
  transition: opacity 500ms ease;
}

.ph-targeted-programs__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 4vw, 40px);
}

.ph-targeted-programs__content-inner {
  width: 100%;
  transform: translateY(0);
  transition: transform 500ms ease;
}

.ph-targeted-programs__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #d2a839;
  font-family: "Montserrat", Sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ph-targeted-programs__title {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ph-targeted-programs__reveal {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 500ms ease;
}

.ph-targeted-programs__reveal-inner {
  overflow: hidden;
}

.ph-targeted-programs__copy {
  margin: 0;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.ph-targeted-programs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}

.ph-targeted-programs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ph-gold-button-gap, 10px);
  min-height: var(--ph-gold-button-min-height, 56px);
  padding: var(--ph-gold-button-padding-block, 14px) var(--ph-gold-button-padding-inline, 20px);
  border: 1px solid transparent;
  border-radius: var(--ph-gold-button-radius, 12px);
  font-family: var(--ph-gold-button-font-family, "Montserrat", Sans-serif);
  font-size: var(--ph-gold-button-font-size, 16px);
  font-weight: var(--ph-gold-button-font-weight, 700);
  line-height: var(--ph-gold-button-line-height, 1);
  letter-spacing: var(--ph-gold-button-letter-spacing, 0.12em);
  text-transform: var(--ph-gold-button-text-transform, uppercase);
  text-decoration: none;
  text-shadow: none;
  white-space: nowrap;
  -webkit-text-fill-color: currentColor;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.ph-targeted-programs__button .ph-button-content-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ph-targeted-programs__button .ph-button-text {
  display: inline-block;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.ph-targeted-programs__button:hover,
.ph-targeted-programs__button:focus-visible {
  transform: translateY(-2px);
}

.ph-targeted-programs__button--primary {
  border-color: var(--ph-gold-button-border, rgba(214, 150, 28, 0.68));
  background: linear-gradient(135deg, var(--ph-gold-button-start, #efb33e), var(--ph-gold-button-end, #ffd072));
  box-shadow: var(--ph-gold-button-shadow, 0 14px 30px rgba(239, 179, 62, 0.32));
  color: var(--ph-gold-button-text, #1b2b3c);
  -webkit-text-fill-color: var(--ph-gold-button-text, #1b2b3c);
}

.ph-targeted-programs__button--primary:hover,
.ph-targeted-programs__button--primary:focus-visible {
  border-color: var(--ph-gold-button-border-hover, rgba(214, 150, 28, 0.82));
  background: linear-gradient(135deg, var(--ph-gold-button-start-hover, #f5c357), var(--ph-gold-button-end-hover, #ffe08a));
  box-shadow: var(--ph-gold-button-shadow-hover, 0 18px 34px rgba(239, 179, 62, 0.38));
  color: var(--ph-gold-button-text-hover, #17283a);
  -webkit-text-fill-color: var(--ph-gold-button-text-hover, #17283a);
}

.ph-targeted-programs__button--secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(9, 15, 25, 0.22);
  box-shadow: 0 12px 24px rgba(4, 10, 18, 0.2);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ph-targeted-programs__button--secondary:hover,
.ph-targeted-programs__button--secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 28px rgba(4, 10, 18, 0.26);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.ph-targeted-programs__button:focus-visible {
  outline: 2px solid rgba(239, 179, 62, 0.28);
  outline-offset: 2px;
}

.ph-targeted-programs__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .ph-targeted-programs {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .ph-targeted-programs__header {
    margin-bottom: 56px;
  }

  .ph-targeted-programs__grid {
    display: flex;
    gap: 24px;
    min-height: 500px;
  }

  .ph-targeted-programs__panel {
    flex: 1 1 0;
  }

  .ph-targeted-programs__panel:hover,
  .ph-targeted-programs__panel:focus-within {
    flex: 1.4 1 0;
  }

  .ph-targeted-programs__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 8%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.9) 100%);
  }

  .ph-targeted-programs__content-inner {
    transform: translateY(48px);
  }

  .ph-targeted-programs__eyebrow,
  .ph-targeted-programs__copy,
  .ph-targeted-programs__actions {
    opacity: 0;
    transition: opacity 500ms ease;
  }

  .ph-targeted-programs__reveal {
    grid-template-rows: 0fr;
  }

  .ph-targeted-programs__panel:hover .ph-targeted-programs__content-inner,
  .ph-targeted-programs__panel:focus-within .ph-targeted-programs__content-inner {
    transform: translateY(0);
  }

  .ph-targeted-programs__panel:hover .ph-targeted-programs__eyebrow,
  .ph-targeted-programs__panel:hover .ph-targeted-programs__copy,
  .ph-targeted-programs__panel:hover .ph-targeted-programs__actions,
  .ph-targeted-programs__panel:focus-within .ph-targeted-programs__eyebrow,
  .ph-targeted-programs__panel:focus-within .ph-targeted-programs__copy,
  .ph-targeted-programs__panel:focus-within .ph-targeted-programs__actions {
    opacity: 1;
  }

  .ph-targeted-programs__panel:hover .ph-targeted-programs__reveal,
  .ph-targeted-programs__panel:focus-within .ph-targeted-programs__reveal {
    grid-template-rows: 1fr;
  }
}

@media (max-width: 767px) {
  .ph-targeted-programs {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ph-targeted-programs__header {
    margin-bottom: 36px;
  }

  .ph-targeted-programs__intro {
    font-size: 17px;
  }

  .ph-targeted-programs__grid {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 800px;
  }

  .ph-targeted-programs__content {
    padding: 28px;
  }
}

@media (max-width: 575px) {
  .ph-targeted-programs__heading {
    font-size: 32px;
  }

  .ph-targeted-programs__title {
    font-size: 32px;
  }

  .ph-targeted-programs__copy {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ph-targeted-programs__panel,
  .ph-targeted-programs__image,
  .ph-targeted-programs__overlay,
  .ph-targeted-programs__content-inner,
  .ph-targeted-programs__eyebrow,
  .ph-targeted-programs__copy,
  .ph-targeted-programs__actions,
  .ph-targeted-programs__reveal,
  .ph-targeted-programs__button {
    transition: none;
  }
}

/* Custom mirrored section: Flagship Programs */
.ph-flagship-programs {
  padding: clamp(80px, 9vw, 112px) 20px;
  background:
    var(--ph-light-surface-glow-soft),
    var(--ph-light-surface-continue);
}

.ph-flagship-programs__shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.ph-flagship-programs__header {
  width: min(760px, 100%);
  margin: 0 auto clamp(48px, 5vw, 64px);
  text-align: center;
}

.ph-flagship-programs__kicker {
  margin: 0 0 12px;
  color: #d2a839;
  font-family: "Montserrat", Sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ph-flagship-programs__heading {
  margin: 0;
  color: #1f211d;
  font-family: "Montserrat", Sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.ph-flagship-programs__grid {
  overflow: hidden;
  margin: -8px;
  padding: 8px;
}

.ph-flagship-programs__grid .swiper-wrapper {
  align-items: stretch;
}

.ph-flagship-programs__grid .swiper-slide {
  display: flex;
  height: auto;
  flex-shrink: 0;
}

.ph-flagship-programs__carousel-shell {
  position: relative;
}

.ph-flagship-programs__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #e3ddd1;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.ph-flagship-programs__media {
  position: relative;
  min-height: clamp(260px, 24vw, 320px);
  overflow: hidden;
}

.ph-flagship-programs__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-flagship-programs__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 33, 29, 0) 0%, rgba(31, 33, 29, 0.38) 58%, rgba(31, 33, 29, 0.92) 100%);
}

.ph-flagship-programs__media-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.ph-flagship-programs__title {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
  font-size: clamp(2rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ph-flagship-programs__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: clamp(28px, 3vw, 32px);
}

.ph-flagship-programs__copy {
  margin: 0 0 24px;
  color: rgba(31, 33, 29, 0.72);
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.ph-flagship-programs__list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  flex: 1 1 auto;
}

.ph-flagship-programs__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ph-flagship-programs__list-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #d2a839;
}

.ph-flagship-programs__list-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ph-flagship-programs__list-text {
  color: #1f211d;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.ph-flagship-programs a.ph-flagship-programs__button,
.ph-flagship-programs a.ph-flagship-programs__button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ph-gold-button-gap, 10px);
  width: 100%;
  min-height: var(--ph-gold-button-min-height, 56px);
  padding: var(--ph-gold-button-padding-block, 14px) var(--ph-gold-button-padding-inline, 20px);
  border: 1px solid var(--ph-gold-button-border, rgba(214, 150, 28, 0.68));
  border-radius: var(--ph-gold-button-radius, 12px);
  background: linear-gradient(135deg, var(--ph-gold-button-start, #efb33e), var(--ph-gold-button-end, #ffd072));
  box-shadow: var(--ph-gold-button-shadow, 0 14px 30px rgba(239, 179, 62, 0.32));
  color: var(--ph-gold-button-text, #1b2b3c);
  font-family: var(--ph-gold-button-font-family, "Montserrat", Sans-serif);
  font-size: var(--ph-gold-button-font-size, 16px);
  font-weight: var(--ph-gold-button-font-weight, 700);
  line-height: var(--ph-gold-button-line-height, 1);
  letter-spacing: var(--ph-gold-button-letter-spacing, 0.12em);
  text-transform: var(--ph-gold-button-text-transform, uppercase);
  text-decoration: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.ph-flagship-programs a.ph-flagship-programs__button > span,
.ph-flagship-programs a.ph-flagship-programs__button svg {
  color: inherit !important;
  fill: currentColor;
}

.ph-flagship-programs a.ph-flagship-programs__button:hover,
.ph-flagship-programs a.ph-flagship-programs__button:focus-visible {
  border-color: var(--ph-gold-button-border-hover, rgba(214, 150, 28, 0.82));
  background: linear-gradient(135deg, var(--ph-gold-button-start-hover, #f5c357), var(--ph-gold-button-end-hover, #ffe08a));
  box-shadow: var(--ph-gold-button-shadow-hover, 0 18px 34px rgba(239, 179, 62, 0.38));
  color: var(--ph-gold-button-text-hover, #17283a);
  transform: translateY(-2px);
}

.ph-flagship-programs a.ph-flagship-programs__button:focus-visible {
  outline: 2px solid var(--ph-gold-button-focus-ring, rgba(239, 179, 62, 0.28));
  outline-offset: 2px;
}

.ph-flagship-programs a.ph-flagship-programs__button:active {
  box-shadow: var(--ph-gold-button-shadow-active, 0 10px 22px rgba(239, 179, 62, 0.28));
  transform: translateY(0);
}

.ph-flagship-programs a.ph-flagship-programs__button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.ph-flagship-programs__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 26px;
}

.ph-flagship-programs__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(31, 33, 29, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1f211d;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.ph-flagship-programs__arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ph-flagship-programs__arrow:hover,
.ph-flagship-programs__arrow:focus-visible {
  border-color: rgba(214, 150, 28, 0.42);
  background: #ffffff;
  color: #d2a839;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.ph-flagship-programs__arrow:focus-visible {
  outline: 2px solid rgba(210, 168, 57, 0.24);
  outline-offset: 2px;
}

.ph-flagship-programs__arrow:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .ph-flagship-programs__controls {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .ph-flagship-programs {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ph-flagship-programs__heading {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .ph-flagship-programs__media {
    min-height: 256px;
  }

  .ph-flagship-programs__copy,
  .ph-flagship-programs__list-text {
    font-size: 17px;
  }

  .ph-flagship-programs__controls {
    margin-top: 22px;
  }

  .ph-flagship-programs__arrow {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ph-flagship-programs a.ph-flagship-programs__button,
  .ph-flagship-programs__arrow {
    transition: none;
  }
}

/* Custom mirrored section: Womans Health Medications */
.ph-section-womens .ph-womens-shell {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  background-image: url("/assets/media/2025/09/Womens-Health-Medications-scaled-image.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ph-section-womens .ph-womens-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--e-global-color-294f657);
  opacity: 0;
}

.ph-section-womens .ph-womens-inner {
  position: relative;
  z-index: 1;
  width: min(1290px, 100%);
  margin: 0 auto;
}

.ph-section-womens .ph-womens-content {
  display: flex;
  flex-direction: column;
  width: 600px;
  max-width: 100%;
}

.ph-section-womens .ph-womens-title {
  width: 100%;
  max-width: 100%;
  text-align: start;
}

.ph-section-womens .ph-womens-title .ph-heading-title {
  margin: 0;
  color: #1f211d;
  font-family: "Montserrat", Sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 64px;
}

.ph-section-womens .ph-womens-description .ph-heading-title {
  margin: 0;
  color: #1f211d;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.ph-section-womens .ph-womens-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding-top: 20px;
}

.ph-section-womens .ph-womens-explore-button {
  margin: 0;
}

.ph-section-womens .ph-womens-explore-button .ph-button:not(.ph-cta-secondary) {
  background-color: #292f36;
  color: var(--e-global-color-7b8351e);
  fill: var(--e-global-color-7b8351e);
  border-radius: 8px;
  padding: 20px 30px;
  font-family: "Montserrat", Sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.ph-section-womens .ph-womens-explore-button .ph-button:not(.ph-cta-secondary):hover,
.ph-section-womens .ph-womens-explore-button .ph-button:not(.ph-cta-secondary):focus {
  background-color: var(--e-global-color-secondary);
  color: var(--e-global-color-primary);
}

.ph-section-womens .ph-womens-explore-button .ph-button:not(.ph-cta-secondary):hover svg,
.ph-section-womens .ph-womens-explore-button .ph-button:not(.ph-cta-secondary):focus svg {
  fill: var(--e-global-color-primary);
}

/* Custom mirrored section: Your Care, On Your Time */
.ph-section-care .ph-care-shell {
  padding: 68px 24px;
  background:
    var(--ph-light-surface-glow),
    var(--ph-light-surface-fresh);
}

.ph-section-care .ph-care-inner {
  --ph-care-content-width: min(1188px, 100%);
  width: min(1240px, 100%);
  margin: 0 auto;
}

.ph-section-care .ph-care-heading-wrap {
  position: relative;
  display: block;
  width: min(calc(100% - 140px), 1100px);
  max-width: 100%;
  margin-left: 70px;
  margin-right: 70px;
  margin-bottom: 2px;
}

.ph-section-care .ph-care-heading-wrap::before,
.ph-section-care .ph-care-heading-wrap::after {
  display: none;
}

.ph-section-care .ph-care-heading {
  position: relative;
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px) clamp(24px, 4vw, 42px) clamp(22px, 2.8vw, 30px);
  text-align: left;
  border: 1px solid rgba(24, 27, 23, 0.08);
  border-radius: 32px;
  background:
    var(--ph-light-surface-glow-soft),
    var(--ph-light-surface-card);
  box-shadow: 0 20px 46px rgba(20, 24, 21, 0.06);
  overflow: hidden;
}

.ph-section-care .ph-care-heading::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(24, 27, 23, 0.015), transparent 42%);
  pointer-events: none;
}

.ph-section-care .ph-care-heading-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(112, 164, 214, 0.34);
  background: rgba(243, 248, 255, 0.94);
  color: #436f96;
  font-family: "Montserrat", Sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ph-section-care .ph-care-heading-kicker::before,
.ph-section-care .ph-care-heading-kicker::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70a4d6;
}

.ph-section-care .ph-care-heading .ph-heading-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #181b17;
  font-family: "Montserrat", Sans-serif;
  font-size: clamp(3rem, 4.35vw, 4.15rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.ph-section-care .ph-care-heading-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 14px 0 0;
  color: rgba(29, 34, 28, 0.72);
  font-family: "Montserrat", Sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.58;
  text-wrap: balance;
}

.ph-section-care .ph-care-layout {
  width: var(--ph-care-content-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  grid-template-rows: auto auto;
  gap: 22px;
  align-items: start;
}

.ph-section-care .ph-care-media-col,
.ph-section-care .ph-care-steps-col {
  width: auto;
  flex: unset;
  max-width: none;
  min-width: 0;
}

.ph-section-care .ph-care-media-col {
  grid-column: 1;
  grid-row: 1;
  order: 2;
  display: flex;
  align-self: stretch;
}

.ph-section-care .ph-care-steps-col {
  order: 1;
  display: contents;
}

.ph-section-care .ph-care-steps-track {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 28px;
  counter-reset: care-step;
}

.ph-section-care .ph-care-steps-track::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 28px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(225, 188, 64, 0.55), rgba(32, 36, 31, 0.08));
}

.ph-section-care .ph-care-media {
  flex: 1 1 auto;
  position: relative;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(24, 27, 23, 0.08);
  background: #d8d3c4;
  box-shadow: 0 24px 60px rgba(23, 28, 24, 0.12);
}

.ph-section-care .ph-care-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 16, 14, 0.02) 0%, rgba(13, 16, 14, 0.14) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 48%);
  pointer-events: none;
}

.ph-section-care .ph-care-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.02);
  transition: transform 0.8s ease, opacity 0.45s ease;
}

.ph-section-care .ph-care-media:hover img {
  opacity: 0.96;
  transform: scale(1.05);
}

.ph-section-care .ph-care-step-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 124px;
  border-radius: 26px;
  padding: 18px 22px 18px 18px;
  border: 1px solid rgba(24, 27, 23, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(20, 24, 21, 0.06);
  backdrop-filter: blur(14px);
  counter-increment: care-step;
  transition: transform 0.3s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
  animation: ph-care-step-card-pulse 12s ease-in-out infinite;
}

.ph-section-care .ph-care-step-card:nth-child(1) {
  animation-delay: 0s;
}

.ph-section-care .ph-care-step-card:nth-child(2) {
  animation-delay: 3s;
}

.ph-section-care .ph-care-step-card:nth-child(3) {
  animation-delay: 6s;
}

.ph-section-care .ph-care-step-card:nth-child(4) {
  animation-delay: 9s;
}

.ph-section-care .ph-care-step-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 4px solid #eef6fd;
  background: #70a4d6;
  box-shadow: 0 0 0 0 rgba(112, 164, 214, 0.2);
  transform: translate(-50%, -50%);
  animation: ph-care-step-node-pulse 12s ease-in-out infinite;
}

.ph-section-care .ph-care-step-card:nth-child(1)::after {
  animation-delay: 0s;
}

.ph-section-care .ph-care-step-card:nth-child(2)::after {
  animation-delay: 3s;
}

.ph-section-care .ph-care-step-card:nth-child(3)::after {
  animation-delay: 6s;
}

.ph-section-care .ph-care-step-card:nth-child(4)::after {
  animation-delay: 9s;
}

.ph-section-care .ph-care-step-card:hover {
  transform: translateX(4px);
  border-color: rgba(112, 164, 214, 0.32);
  box-shadow: 0 26px 56px rgba(20, 24, 21, 0.1);
}

.ph-section-care .ph-care-step-icon {
  width: auto;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-section-care .ph-care-step-icon .ph-widget-image {
  position: relative;
  display: flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 240, 221, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 22px rgba(26, 29, 25, 0.08);
}

.ph-section-care .ph-care-step-icon .ph-widget-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(216, 185, 85, 0.22);
  pointer-events: none;
}

.ph-section-care .ph-care-step-icon img {
  width: 50px;
  height: 50px;
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  object-position: center;
}

.ph-section-care .ph-care-step-content {
  width: auto;
  flex: unset;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.ph-section-care .ph-care-step-content h6 {
  margin: 0;
  color: #1d221c;
  font-family: "Montserrat", Sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.ph-section-care .ph-care-step-content h6::before {
  content: "Step " counter(care-step, decimal-leading-zero);
  display: block;
  margin-bottom: 7px;
  color: #9c7c29;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ph-section-care .ph-care-step-content p {
  margin: 0;
  color: rgba(29, 34, 28, 0.78);
  font-family: "Montserrat", Sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.55;
}

.ph-section-care .ph-care-cta-row {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  padding-left: 28px;
}

.ph-section-care .ph-care-cta {
  width: auto;
  max-width: 100%;
  margin: 0;
}

.ph-section-care .ph-care-cta .ph-button {
  min-width: clamp(236px, 30vw, 300px);
  justify-content: center;
}

@keyframes ph-care-step-card-pulse {
  0%,
  8% {
    border-color: rgba(112, 164, 214, 0.34);
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 26px 58px rgba(20, 24, 21, 0.1),
      0 0 0 10px rgba(112, 164, 214, 0.08);
  }

  16%,
  100% {
    border-color: rgba(24, 27, 23, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(20, 24, 21, 0.06);
  }
}

@keyframes ph-care-step-node-pulse {
  0%,
  8% {
    background: #8cbbe5;
    box-shadow:
      0 0 0 0 rgba(112, 164, 214, 0.28),
      0 0 0 12px rgba(112, 164, 214, 0.18);
  }

  16%,
  100% {
    background: #70a4d6;
    box-shadow: 0 0 0 0 rgba(112, 164, 214, 0);
  }
}

@media (max-width: 1024px) {
  .ph-section-womens .ph-womens-shell {
    min-height: 500px;
    background-position: center center;
  }

  .ph-section-womens .ph-womens-shell::before {
    opacity: 0.5;
  }

  .ph-section-womens .ph-womens-title .ph-heading-title,
  .ph-section-care .ph-care-heading .ph-heading-title {
    font-size: clamp(2.8rem, 6vw, 3.5rem);
    line-height: 1;
  }

  .ph-section-care .ph-care-heading-copy {
    font-size: 15px;
  }

  .ph-section-care .ph-care-layout {
    gap: 18px;
  }

  .ph-section-care .ph-care-media {
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
  }

  .ph-section-care .ph-care-step-card {
    grid-template-columns: 80px minmax(0, 1fr);
    padding: 17px 18px 17px 16px;
  }

  .ph-section-care .ph-care-step-content h6 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .ph-section-womens .ph-womens-shell {
    min-height: auto;
    padding: 50px 20px;
    background-position: center center;
  }

  .ph-section-womens .ph-womens-title .ph-heading-title,
  .ph-section-care .ph-care-heading .ph-heading-title {
    font-size: 42px;
    line-height: 52px;
  }

  .ph-section-care .ph-care-heading-wrap {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2px;
  }

  .ph-section-care .ph-care-heading-wrap::before,
  .ph-section-care .ph-care-heading-wrap::after {
    display: none;
  }

  .ph-section-care .ph-care-heading {
    width: 100%;
    max-width: none;
    padding: 22px 22px 20px;
    border-radius: 28px;
  }

  .ph-section-care .ph-care-heading-copy {
    font-size: 14.5px;
  }

  .ph-section-care .ph-care-shell {
    padding: 52px 20px;
  }

  .ph-section-care .ph-care-layout {
    margin-top: 20px;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    gap: 18px;
  }

  .ph-section-care .ph-care-media-col,
  .ph-section-care .ph-care-steps-col {
    width: 100%;
    max-width: 100%;
  }

  .ph-section-care .ph-care-media-col {
    order: -1;
    display: block;
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }

  .ph-section-care .ph-care-steps-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .ph-section-care .ph-care-media {
    flex: none;
    min-height: auto;
    aspect-ratio: 5 / 4;
    border-radius: 28px;
  }

  .ph-section-care .ph-care-steps-track {
    grid-column: auto;
    grid-row: auto;
    padding-left: 24px;
    gap: 12px;
  }

  .ph-section-care .ph-care-steps-track::before {
    left: 24px;
  }

  .ph-section-care .ph-care-step-card {
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 112px;
    padding: 16px 18px 16px 14px;
  }

  .ph-section-care .ph-care-step-card::after {
    left: 0;
  }

  .ph-section-care .ph-care-step-icon .ph-widget-image {
    width: 66px;
    height: 66px;
    border-radius: 20px;
  }

  .ph-section-care .ph-care-step-icon img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
  }

  .ph-section-care .ph-care-step-content h6 {
    font-size: 19px;
  }

  .ph-section-care .ph-care-step-content p {
    font-size: 14px;
  }

  .ph-section-care .ph-care-cta-row {
    padding-left: 24px;
  }
}

@media (max-width: 576px) {
  .ph-section-womens .ph-womens-shell {
    padding: 50px 20px;
    background-size: cover;
  }

  .ph-section-womens .ph-womens-shell::before {
    opacity: 0.6;
  }

  .ph-section-womens .ph-womens-title .ph-heading-title,
  .ph-section-care .ph-care-heading .ph-heading-title {
    font-size: 32px;
    line-height: 36px;
  }

  .ph-section-womens .ph-womens-description .ph-heading-title {
    font-size: 16px;
  }

  .ph-section-womens .ph-womens-actions {
    gap: 10px;
    padding-top: 0;
  }

  .ph-section-womens .ph-womens-explore-button .ph-button {
    font-size: 16px;
    padding: 15px 20px;
  }

  .ph-section-care .ph-care-shell {
    padding: 42px 18px;
  }

  .ph-section-care .ph-care-heading .ph-heading-title {
    line-height: 1.04;
  }

  .ph-section-care .ph-care-heading-kicker {
    margin-bottom: 12px;
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .ph-section-care .ph-care-heading-copy {
    margin-top: 12px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  .ph-section-care .ph-care-layout {
    gap: 16px;
  }

  .ph-section-care .ph-care-media {
    aspect-ratio: 1 / 1;
    min-height: 0;
    border-radius: 24px;
  }

  .ph-section-care .ph-care-steps-track {
    padding-left: 20px;
  }

  .ph-section-care .ph-care-steps-track::before {
    left: 20px;
    top: 24px;
    bottom: 24px;
  }

  .ph-section-care .ph-care-step-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 14px 14px 14px 12px;
    border-radius: 20px;
  }

  .ph-section-care .ph-care-step-card::after {
    width: 12px;
    height: 12px;
  }

  .ph-section-care .ph-care-step-icon .ph-widget-image {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .ph-section-care .ph-care-step-icon img {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
  }

  .ph-section-care .ph-care-step-content {
    gap: 5px;
  }

  .ph-section-care .ph-care-step-content h6 {
    font-size: 18px;
  }

  .ph-section-care .ph-care-step-content h6::before {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .ph-section-care .ph-care-step-content p {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .ph-section-care .ph-care-cta-row {
    grid-column: auto;
    grid-row: auto;
    padding: 0;
  }

  .ph-section-care .ph-care-cta .ph-button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ph-section-care .ph-care-media img,
  .ph-section-care .ph-care-step-card,
  .ph-section-care .ph-care-step-card::after {
    animation: none;
    transition: none;
  }
}

/* Homepage blog read-more CTA */
.ph-element.ph-element-bcfc967 {
  position: relative;
  overflow-x: clip;
}

.ph-element.ph-element-bcfc967 .ph-shortcode,
.ph-element.ph-element-bcfc967 .blog-section-grid {
  position: relative;
  overflow-x: clip;
}

.ph-element.ph-element-bcfc967 .slide-arrow-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ph-element.ph-element-bcfc967 .slide-arrow-wrapper .slide-arrow {
  pointer-events: auto;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 999px;
  background: rgba(31, 33, 29, 0.92);
  box-shadow: 0 14px 28px rgba(20, 24, 21, 0.16);
  transform: translateY(-50%);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.ph-element.ph-element-bcfc967 .slide-arrow-wrapper .slide-arrow svg {
  width: 18px;
  height: 18px;
  fill: #f7f3ea;
}

.ph-element.ph-element-bcfc967 .slide-arrow-wrapper .slide-arrow:hover,
.ph-element.ph-element-bcfc967 .slide-arrow-wrapper .slide-arrow:focus-visible {
  background: rgba(27, 30, 25, 0.98);
  box-shadow: 0 18px 34px rgba(20, 24, 21, 0.2);
  transform: translateY(-50%) scale(1.03);
}

.ph-element.ph-element-bcfc967 .prev-arrow {
  left: clamp(12px, 2vw, 24px);
}

.ph-element.ph-element-bcfc967 .next-arrow {
  left: auto;
  right: clamp(12px, 2vw, 24px);
}

.blog-section-item .read-more-btn {
  margin-top: 18px;
}

.blog-section-item .read-more-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 17px 11px 18px;
  border: 1px solid rgba(210, 168, 57, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, #252922 0%, #1b1e19 100%);
  color: #f7f3ea;
  font-family: "Montserrat", Sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(19, 22, 19, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.blog-section-item .read-more-btn a::after {
  content: "\2192";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #e4bf62;
  font-size: 15px;
  font-weight: 600;
  transform: translateX(0);
  transition: transform 0.25s ease, color 0.25s ease;
}

.blog-section-item .read-more-btn a:hover,
.blog-section-item .read-more-btn a:focus-visible {
  border-color: rgba(228, 191, 98, 0.45);
  background: linear-gradient(180deg, #2c3028 0%, #20231d 100%);
  color: #fffdf8;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 30px rgba(19, 22, 19, 0.16);
}

.blog-section-item .read-more-btn a:hover::after,
.blog-section-item .read-more-btn a:focus-visible::after {
  color: #f0cf79;
  transform: translateX(2px);
}

/* Homepage FAQ accordion */
.faq-accordion .ph-accordion-item-title {
  align-items: center;
  gap: 18px;
}

.faq-accordion .ph-accordion-item-title-header {
  flex: 1 1 auto;
  min-width: 0;
}

.faq-accordion .ph-accordion-item-title-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-self: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(31, 33, 29, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 239, 231, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 22px rgba(20, 24, 21, 0.08);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-accordion .ph-accordion-item-title:hover .ph-accordion-item-title-icon,
.faq-accordion .ph-accordion-item-title:focus-visible .ph-accordion-item-title-icon {
  transform: translateY(-1px);
  border-color: rgba(210, 168, 57, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 28px rgba(20, 24, 21, 0.1);
}

.faq-accordion .ph-accordion-item-title-icon .ph-opened,
.faq-accordion .ph-accordion-item-title-icon .ph-closed {
  position: relative;
  display: flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
}

.faq-accordion .ph-accordion-item-title-icon .ph-opened::before,
.faq-accordion .ph-accordion-item-title-icon .ph-closed::before,
.faq-accordion .ph-accordion-item-title-icon .ph-closed::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #1f211d;
  transition: background-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.faq-accordion .ph-accordion-item-title-icon .ph-opened::before,
.faq-accordion .ph-accordion-item-title-icon .ph-closed::before {
  width: 14px;
  height: 2px;
}

.faq-accordion .ph-accordion-item-title-icon .ph-closed::after {
  width: 2px;
  height: 14px;
}

.faq-accordion .ph-accordion-item-title-icon svg {
  display: none;
}

.faq-accordion .ph-accordion-item[open] > .ph-accordion-item-title .ph-accordion-item-title-icon {
  border-color: rgba(31, 33, 29, 0.96);
  background: linear-gradient(180deg, #262922 0%, #1b1e19 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 30px rgba(20, 24, 21, 0.16);
}

.faq-accordion .ph-accordion-item[open] > .ph-accordion-item-title .ph-accordion-item-title-icon .ph-opened::before,
.faq-accordion .ph-accordion-item[open] > .ph-accordion-item-title .ph-accordion-item-title-icon .ph-closed::before,
.faq-accordion .ph-accordion-item[open] > .ph-accordion-item-title .ph-accordion-item-title-icon .ph-closed::after {
  background: #f8f6f1;
}

@media (max-width: 576px) {
  .ph-element.ph-element-bcfc967 .slide-arrow-wrapper .slide-arrow {
    width: 38px;
    height: 38px;
  }

  .ph-element.ph-element-bcfc967 .slide-arrow-wrapper .slide-arrow svg {
    width: 16px;
    height: 16px;
  }

  .ph-element.ph-element-bcfc967 .prev-arrow {
    left: 10px;
  }

  .ph-element.ph-element-bcfc967 .next-arrow {
    right: 10px;
  }

  .faq-accordion .ph-accordion-item-title {
    gap: 14px;
  }

  .faq-accordion .ph-accordion-item-title-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .faq-accordion .ph-accordion-item-title-icon .ph-opened,
  .faq-accordion .ph-accordion-item-title-icon .ph-closed {
    width: 14px;
    height: 14px;
  }

  .blog-section-item .read-more-btn a {
    min-height: 42px;
    padding: 10px 15px 10px 16px;
    font-size: 12px;
  }
}

/* Custom mirrored section: Take Control of Your Health Today */
.ph-section-labs-cta .ph-labs-cta-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 80px 20px;
  background-image: url("/assets/media/2025/09/Take-control-of-your-health-scaled-image.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ph-section-labs-cta .ph-labs-cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--e-global-color-primary);
  opacity: 0.3;
}

.ph-section-labs-cta .ph-labs-cta-inner {
  position: relative;
  z-index: 1;
  width: min(1290px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.ph-section-labs-cta .ph-labs-cta-content {
  width: 620px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}

.ph-section-labs-cta .ph-labs-cta-title {
  width: 100%;
  max-width: 100%;
  text-align: start;
}

.ph-section-labs-cta .ph-labs-cta-title .ph-heading-title {
  margin: 0;
  color: var(--e-global-color-294f657);
  font-family: "Montserrat", Sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 64px;
}

.ph-section-labs-cta .ph-labs-cta-description .ph-heading-title {
  margin: 0;
  color: var(--e-global-color-294f657);
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}

.ph-section-labs-cta .ph-labs-cta-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-icon i,
.ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-icon svg {
  color: var(--e-global-color-secondary);
  fill: var(--e-global-color-secondary);
}

.ph-section-labs-cta .ph-labs-cta-list {
  --e-icon-list-icon-size: 18px;
}

.ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-items {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-icon {
  flex: 0 0 18px;
  width: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2px;
  padding-inline-end: 0;
}

.ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-icon svg {
  width: 18px;
  height: 18px;
}

.ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-item > .ph-icon-list-text,
.ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-item > a {
  color: var(--e-global-color-294f657);
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

.ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-item:hover .ph-icon-list-text {
  color: var(--e-global-color-7b8351e);
}

.ph-section-labs-cta .ph-labs-cta-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 14px 16px;
  align-items: stretch;
  padding-top: 20px;
  width: 100%;
}

.ph-section-labs-cta .ph-labs-cta-primary,
.ph-section-labs-cta .ph-labs-cta-secondary {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.ph-section-labs-cta .ph-labs-cta-primary .ph-button,
.ph-section-labs-cta .ph-labs-cta-secondary .ph-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

.ph-section-labs-cta .ph-labs-cta-primary .ph-button .ph-button-content-wrapper,
.ph-section-labs-cta .ph-labs-cta-secondary .ph-button .ph-button-content-wrapper {
  flex-wrap: nowrap;
  justify-content: center;
  white-space: nowrap;
}

.ph-section-labs-cta .ph-labs-cta-secondary .ph-button:not(.ph-cta-secondary) {
  background-color: #292f36;
  color: var(--e-global-color-7b8351e);
  fill: var(--e-global-color-7b8351e);
}

.ph-section-labs-cta .ph-labs-cta-secondary .ph-button:not(.ph-cta-secondary):hover,
.ph-section-labs-cta .ph-labs-cta-secondary .ph-button:not(.ph-cta-secondary):focus {
  background-color: var(--e-global-color-7b8351e);
  color: var(--e-global-color-primary);
}

.ph-section-labs-cta .ph-labs-cta-secondary .ph-button:not(.ph-cta-secondary):hover svg,
.ph-section-labs-cta .ph-labs-cta-secondary .ph-button:not(.ph-cta-secondary):focus svg {
  fill: var(--e-global-color-primary);
}

/* Custom mirrored section: Explore Prime Health HRT Treatments */
.ph-section-explore-treatments .ph-explore-shell {
  padding: 80px 20px;
  background: var(--ph-light-surface-continue);
}

.ph-section-explore-treatments .ph-explore-inner {
  width: min(1290px, 100%);
  margin: 0 auto;
}

.ph-section-explore-treatments .ph-explore-header {
  display: flex;
  flex-direction: column;
}

.ph-section-explore-treatments .ph-explore-title {
  text-align: center;
}

.ph-section-explore-treatments .ph-explore-title .ph-heading-title {
  margin: 0;
  color: #1f211d;
  font-family: "Montserrat", Sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 64px;
}

.ph-section-explore-treatments .ph-explore-description {
  width: min(1000px, 100%);
  max-width: 1000px;
  align-self: center;
  text-align: center;
}

.ph-section-explore-treatments .ph-explore-description .ph-heading-title {
  margin: 0;
  color: #2b2b2b;
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.ph-section-explore-treatments .ph-explore-cta {
  margin-top: 20px;
  margin-bottom: 0;
}

.ph-section-explore-treatments .ph-explore-cta .ph-button {
  font-family: "Montserrat", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  border-radius: 8px;
  padding: 20px 30px;
}

.ph-section-explore-treatments .ph-explore-cta .ph-button:hover,
.ph-section-explore-treatments .ph-explore-cta .ph-button:focus {
  background-color: var(--e-global-color-primary);
  color: var(--e-global-color-secondary);
}

.ph-section-explore-treatments .ph-explore-cta .ph-button:hover svg,
.ph-section-explore-treatments .ph-explore-cta .ph-button:focus svg {
  fill: var(--e-global-color-secondary);
}

@media (max-width: 1024px) {
  .ph-section-labs-cta .ph-labs-cta-shell::before {
    opacity: 0.5;
  }

  .ph-section-labs-cta .ph-labs-cta-content {
    width: 100%;
    align-self: stretch;
  }

  .ph-section-labs-cta .ph-labs-cta-title .ph-heading-title,
  .ph-section-explore-treatments .ph-explore-title .ph-heading-title {
    font-size: 54px;
  }

  .ph-section-explore-treatments .ph-explore-description {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .ph-section-labs-cta .ph-labs-cta-shell {
    min-height: auto;
    padding: 50px 20px;
    background-position: top left;
  }

  .ph-section-labs-cta .ph-labs-cta-shell::before {
    opacity: 0.3;
  }

  .ph-section-labs-cta .ph-labs-cta-title .ph-heading-title,
  .ph-section-explore-treatments .ph-explore-title .ph-heading-title {
    font-size: 42px;
    line-height: 52px;
  }

  .ph-section-labs-cta .ph-labs-cta-list {
    --e-icon-list-icon-size: 16px;
  }

  .ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-items {
    gap: 10px;
  }

  .ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-item {
    gap: 10px;
  }

  .ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-icon {
    flex-basis: 16px;
    width: 16px;
  }

  .ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-icon svg {
    width: 16px;
    height: 16px;
  }

  .ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-item > .ph-icon-list-text,
  .ph-section-labs-cta .ph-labs-cta-list .ph-icon-list-item > a {
    font-size: 16px;
    line-height: 22px;
  }

  .ph-section-explore-treatments .ph-explore-shell {
    padding: 50px 20px;
  }

  .ph-section-explore-treatments .ph-explore-description .ph-heading-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .ph-section-labs-cta .ph-labs-cta-shell {
    background-position: -410px 0;
    background-size: cover;
  }

  .ph-section-labs-cta .ph-labs-cta-shell::before {
    opacity: 0.3;
  }

  .ph-section-labs-cta .ph-labs-cta-title .ph-heading-title,
  .ph-section-explore-treatments .ph-explore-title .ph-heading-title {
    font-size: 32px;
    line-height: 36px;
  }

  .ph-section-labs-cta .ph-labs-cta-description .ph-heading-title {
    font-size: 16px;
  }

  .ph-section-labs-cta .ph-labs-cta-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 0;
  }

  .ph-section-labs-cta .ph-labs-cta-primary,
  .ph-section-labs-cta .ph-labs-cta-secondary {
    width: 100%;
  }

  .ph-section-labs-cta .ph-labs-cta-primary .ph-button,
  .ph-section-labs-cta .ph-labs-cta-secondary .ph-button {
    width: 100%;
    min-width: 0;
  }

  .ph-section-explore-treatments .ph-explore-shell {
    padding: 40px 20px;
  }

  .ph-section-explore-treatments .ph-explore-description .ph-heading-title {
    font-size: 16px;
    line-height: 22px;
  }

  .ph-section-explore-treatments .ph-explore-cta {
    margin-top: 0;
  }
}

/* Custom mirrored section: Don't Settle For "Normal" */
.ph-optimal-cta-section {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: clamp(96px, 12vw, 132px) 24px;
  background: #11181e;
}

.ph-optimal-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(0deg, rgba(17, 24, 30, 0.78) 0%, rgba(17, 24, 30, 0.12) 52%, rgba(17, 24, 30, 0.52) 100%),
    linear-gradient(180deg, rgba(17, 24, 30, 0.42) 0%, rgba(17, 24, 30, 0.42) 100%),
    url("/assets/media/2026/04/be-above-average-get-optimized.webp") center 22% / cover no-repeat;
  transform: scale(1.02);
}

.ph-optimal-cta-container {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0;
}

.ph-optimal-cta-content {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.ph-optimal-cta-title-wrap,
.ph-optimal-cta-bottom {
  width: 100%;
}

.ph-optimal-cta-title {
  margin: 0 0 24px;
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
  font-size: clamp(2.9rem, 5.2vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ph-optimal-cta-line {
  display: inline;
}

.ph-optimal-cta-emphasis {
  color: var(--ph-gold-button-start, #efb33e);
}

.ph-optimal-cta-copy {
  margin: 0 auto 40px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Lato", Sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.ph-optimal-cta-action {
  display: flex;
  justify-content: center;
}

.ph-optimal-cta-button.ph-button,
.ph-optimal-cta-button.ph-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ph-gold-button-gap, 10px);
  min-height: var(--ph-gold-button-min-height, 56px);
  padding: var(--ph-gold-button-padding-block, 14px) var(--ph-gold-button-padding-inline, 20px);
  border: 1px solid var(--ph-gold-button-border, rgba(214, 150, 28, 0.68));
  border-radius: var(--ph-gold-button-radius, 12px);
  background: linear-gradient(135deg, var(--ph-gold-button-start, #efb33e), var(--ph-gold-button-end, #ffd072));
  box-shadow: var(--ph-gold-button-shadow, 0 14px 30px rgba(239, 179, 62, 0.32));
  color: var(--ph-gold-button-text, #1b2b3c);
  font-family: var(--ph-gold-button-font-family, "Montserrat", Sans-serif);
  font-size: var(--ph-gold-button-font-size, 16px);
  font-weight: var(--ph-gold-button-font-weight, 700);
  line-height: var(--ph-gold-button-line-height, 1);
  letter-spacing: var(--ph-gold-button-letter-spacing, 0.12em);
  text-transform: var(--ph-gold-button-text-transform, uppercase);
  white-space: nowrap;
}

.ph-optimal-cta-button.ph-button:hover,
.ph-optimal-cta-button.ph-button:focus-visible,
.ph-optimal-cta-button.ph-button:active {
  border-color: var(--ph-gold-button-border-hover, rgba(214, 150, 28, 0.82));
  background: linear-gradient(135deg, var(--ph-gold-button-start-hover, #f5c357), var(--ph-gold-button-end-hover, #ffe08a));
  box-shadow: var(--ph-gold-button-shadow-hover, 0 18px 34px rgba(239, 179, 62, 0.38));
  color: var(--ph-gold-button-text-hover, #17283a);
  transform: translateY(-1px);
}

.ph-optimal-cta-button .ph-button-content-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ph-gold-button-gap, 10px);
}

.ph-optimal-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ph-optimal-cta-icon svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 1025px) and (max-width: 1439px) {
  .ph-optimal-cta-media {
    background-position: center center, center center, 100% 22%;
  }
}

@media (min-width: 1440px) {
  .ph-optimal-cta-media {
    background-position: center center, center center, 100% 22%;
  }
}

@media (max-width: 767px) {
  .ph-optimal-cta-section {
    --ph-optimal-cta-mobile-nav-offset: clamp(68px, 10.5vw, 88px);
    --ph-optimal-cta-mobile-viewport-height: calc(100svh - var(--ph-optimal-cta-mobile-nav-offset));
    --ph-optimal-cta-mobile-pad-side: 20px;
    --ph-optimal-cta-mobile-pad-bottom: calc(24px + env(safe-area-inset-bottom));
    --ph-optimal-cta-mobile-title-band-height: clamp(236px, 44vw, 320px);
    --ph-optimal-cta-mobile-title-band-pad-y: clamp(22px, 5vw, 34px);
    --ph-optimal-cta-mobile-media-height: max(300px, calc(var(--ph-optimal-cta-mobile-viewport-height) - var(--ph-optimal-cta-mobile-title-band-height)));
    height: calc(100vh - var(--ph-optimal-cta-mobile-nav-offset));
    height: var(--ph-optimal-cta-mobile-viewport-height);
    min-height: calc(100vh - var(--ph-optimal-cta-mobile-nav-offset));
    min-height: var(--ph-optimal-cta-mobile-viewport-height);
    max-height: calc(100vh - var(--ph-optimal-cta-mobile-nav-offset));
    max-height: var(--ph-optimal-cta-mobile-viewport-height);
    overflow: hidden;
    padding: 0;
  }

  .ph-optimal-cta-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - var(--ph-optimal-cta-mobile-nav-offset));
    min-height: var(--ph-optimal-cta-mobile-viewport-height);
    box-sizing: border-box;
    padding: 0 var(--ph-optimal-cta-mobile-pad-side) var(--ph-optimal-cta-mobile-pad-bottom);
  }

  .ph-optimal-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 100%;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .ph-optimal-cta-title-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: auto;
    container-type: inline-size;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--ph-optimal-cta-mobile-title-band-height);
    width: min(100%, 440px);
    max-width: 440px;
    padding: var(--ph-optimal-cta-mobile-title-band-pad-y) 8px;
    box-sizing: border-box;
    text-align: center;
    transform: translateX(-50%);
  }

  .ph-optimal-cta-bottom {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: var(--ph-optimal-cta-mobile-pad-bottom);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(calc(100% - (var(--ph-optimal-cta-mobile-pad-side) * 2)), 420px);
    max-width: 420px;
    text-align: center;
    transform: translateX(-50%);
  }

  .ph-optimal-cta-media {
    inset: auto 0 0;
    height: var(--ph-optimal-cta-mobile-media-height);
    background-size: cover, cover, auto 110%;
    background-position: center center, center center, 88% bottom;
    transform: none;
  }

  .ph-optimal-cta-title {
    margin: 0;
    width: 100%;
    max-width: none;
    font-size: clamp(1.78rem, 8.5cqw, 2.38rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .ph-optimal-cta-line {
    display: block;
    white-space: nowrap;
  }

  .ph-optimal-cta-copy {
    margin: 0 auto 20px;
    max-width: 400px;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
  }

  .ph-optimal-cta-action {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .ph-optimal-cta-action {
    margin-top: 0;
  }

  .ph-optimal-cta-button.ph-button,
  .ph-optimal-cta-button.ph-button:visited {
    width: min(100%, 360px);
    margin: 0 auto;
    padding: var(--ph-gold-button-padding-block, 14px) var(--ph-gold-button-padding-inline, 20px);
    font-size: var(--ph-gold-button-font-size, 15px);
    letter-spacing: var(--ph-gold-button-letter-spacing, 0.1em);
  }
}

@media (max-width: 479px) {
  .ph-optimal-cta-title {
    font-size: clamp(1.6rem, 8.7cqw, 2.04rem);
  }

  .ph-optimal-cta-copy {
    font-size: 17px;
  }

  .ph-optimal-cta-button .ph-button-content-wrapper {
    gap: 10px;
  }
}

@media (max-width: 389px) {
  .ph-optimal-cta-section {
    --ph-optimal-cta-mobile-title-band-height: clamp(204px, 38vw, 236px);
    --ph-optimal-cta-mobile-title-band-pad-y: clamp(14px, 3.8vw, 20px);
  }

  .ph-optimal-cta-title-wrap {
    padding-inline: 6px;
  }

  .ph-optimal-cta-title {
    font-size: clamp(1.48rem, 8.2cqw, 1.9rem);
    line-height: 1.02;
  }

  .ph-optimal-cta-button.ph-button,
  .ph-optimal-cta-button.ph-button:visited {
    padding: 13px 16px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .ph-optimal-cta-button .ph-button-content-wrapper {
    gap: 8px;
  }

  .ph-optimal-cta-icon svg {
    width: 18px;
    height: 18px;
  }
}

.ph-element.ph-element-ca40fb1 {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3vw, 30px) 20px;
  background: var(--ph-light-surface-fresh);
}

.ph-element.ph-element-ca40fb1 > .ph-layout-inner {
  padding-block-start: 0;
  padding-block-end: 0;
}

.ph-108 .ph-element.ph-element-ca40fb1 {
  --padding-top: 0px;
  --padding-bottom: 0px;
}

.ph-108 .ph-element.ph-element-a43929d:not(.ph-motion-effects-element-type-background),
.ph-108 .ph-element.ph-element-a43929d > .ph-motion-effects-container > .ph-motion-effects-layer {
  background: var(--ph-light-surface-continue);
}

.ph-108 .ph-element.ph-element-a43929d {
  --container-max-width: 1440px;
}

.ph-108 .ph-element.ph-element-a43929d > .ph-layout-inner {
  width: min(1440px, calc(100vw - clamp(32px, 4vw, 72px)));
  max-width: none;
  margin-inline: auto;
  padding-inline: clamp(18px, 2.6vw, 30px);
  box-sizing: border-box;
}

.ph-home-explore {
  position: relative;
  padding-block-start: clamp(40px, 4.5vw, 56px);
  padding-block-end: clamp(72px, 8vw, 96px);
}

.ph-home-explore__shell {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}

.ph-home-explore__header {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 14px;
}

.ph-home-explore__kicker {
  margin: 0;
  color: #d2a839;
  font-family: var(--ph-font-display);
  font-size: var(--ph-text-eyebrow);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ph-home-explore__heading,
.ph-home-explore__intro-copy,
.ph-home-explore__support,
.ph-home-explore__actions {
  margin: 0;
}

.ph-home-explore__heading .ph-heading-title {
  margin: 0;
  color: #1f211d;
  font-family: var(--ph-font-display);
  font-size: var(--ph-text-h2);
  font-weight: 700;
  line-height: var(--ph-leading-tight);
  letter-spacing: var(--ph-tracking-display);
  text-transform: uppercase;
}

.ph-home-explore__intro-copy {
  width: min(860px, 100%);
  margin-inline: auto;
}

.ph-home-explore__intro-copy .ph-heading-title {
  margin: 0;
  color: rgba(31, 33, 29, 0.76);
  font-family: var(--ph-font-body);
  font-size: var(--ph-text-body-lg);
  font-weight: 400;
  line-height: var(--ph-leading-normal);
}

.ph-home-explore__carousel {
  margin-top: 0;
  padding-inline: 0;
}

.ph-home-explore__support {
  text-align: center;
}

.ph-home-explore__support .ph-heading-title {
  margin: 0;
  color: rgba(31, 33, 29, 0.72);
  font-family: var(--ph-font-body);
  font-size: var(--ph-text-body);
  font-weight: 400;
  line-height: 1.6;
}

.ph-home-explore__actions {
  margin-top: 0;
}

.ph-homepage-mirror .ph-home-explore .ph-element.ph-element-754851c {
  width: min(760px, 100%);
  max-width: 100%;
  text-align: center;
}

.ph-homepage-mirror .ph-home-explore .ph-element.ph-element-754851c .ph-heading-title {
  margin: 0;
  color: #1f211d;
  font-family: var(--ph-font-display);
  font-size: var(--ph-text-h2);
  font-weight: 700;
  line-height: var(--ph-leading-tight);
  letter-spacing: var(--ph-tracking-display);
  text-transform: uppercase;
}

.ph-homepage-mirror .ph-home-explore .ph-element.ph-element-4d5b821 {
  width: min(860px, 100%);
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.ph-homepage-mirror .ph-home-explore .ph-element.ph-element-4d5b821 .ph-heading-title {
  margin: 0;
  color: rgba(31, 33, 29, 0.76);
  font-family: var(--ph-font-body);
  font-size: var(--ph-text-body-lg);
  font-weight: 400;
  line-height: var(--ph-leading-normal);
}

.ph-homepage-mirror .ph-home-explore .ph-element.ph-element-a0583c4 .ph-heading-title {
  margin: 0;
  color: rgba(31, 33, 29, 0.72);
  font-family: var(--ph-font-body);
  font-size: var(--ph-text-body);
  font-weight: 400;
  line-height: 1.6;
}

.ph-homepage-mirror .ph-home-explore .ph-element.ph-element-df7cb55 {
  margin-top: 0;
  padding-inline: 0;
}

.ph-homepage-mirror .ph-home-explore .ph-element.ph-element-704ffde {
  margin: 0;
}

.ph-108 .ph-element.ph-element-a3a8efa:not(.ph-motion-effects-element-type-background),
.ph-108 .ph-element.ph-element-a3a8efa > .ph-motion-effects-container > .ph-motion-effects-layer {
  background: var(--ph-light-surface-continue);
}

.ph-element.ph-element-bcfc967,
.ph-element.ph-element-7ce0da1 {
  background: var(--ph-light-surface-fresh);
}

.ph-element.ph-element-bcfc967 + .ph-element.ph-element-7ce0da1 {
  background: var(--ph-light-surface-continue);
}

.ph-home-care-journey {
  background: var(--ph-light-surface-fresh);
}

.ph-home-trust-bridge {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: clamp(20px, 2.6vw, 28px);
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
}

.ph-home-trust-bridge::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(112, 164, 214, 0.9) 36%, rgba(255, 255, 255, 0.1) 100%);
  z-index: 0;
}

.ph-home-trust-bridge::after {
  content: "";
  position: absolute;
  inset: auto -10% 32% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 186, 231, 0.18) 0%, rgba(132, 186, 231, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.ph-home-trust-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: end;
}

.ph-home-trust-intro {
  display: grid;
  gap: 14px;
  max-width: 780px;
}

.ph-home-trust-kicker {
  margin: 0;
  color: #426f9d;
  font-family: "Montserrat", Sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ph-home-trust-intro .ph-heading-title {
  margin: 0;
  color: #1f211d;
  font-family: "Montserrat", Sans-serif;
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.ph-home-trust-copy {
  margin: 0;
  max-width: 760px;
  color: rgba(41, 47, 54, 0.82);
  font-family: "Lato", Sans-serif;
  font-size: 19px;
  line-height: 1.6;
}

.ph-home-trust-summary {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-self: stretch;
  max-width: 360px;
  padding-left: clamp(20px, 2.2vw, 30px);
  border-left: 1px solid rgba(41, 47, 54, 0.12);
}

.ph-home-trust-summary-kicker {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(41, 47, 54, 0.72);
  font-family: "Montserrat", Sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ph-home-trust-summary-kicker::before {
  content: "";
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='32' y1='2' x2='32' y2='62' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2397c7f2'/%3E%3Cstop offset='1' stop-color='%23eef7ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='2' y='2' width='60' height='60' rx='18' fill='url(%23g)'/%3E%3Cpath d='M22.5 26.5a13 13 0 0 1 21.3-6.9' fill='none' stroke='%23192b40' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M42.5 16.5H48V22' fill='none' stroke='%23192b40' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M41.5 37.5a13 13 0 0 1-21.3 6.9' fill='none' stroke='%23192b40' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.5 47.5H16V42' fill='none' stroke='%23192b40' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M32 24v12' stroke='%23192b40' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M26 30h12' stroke='%23192b40' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.ph-home-trust-summary p {
  margin: 0;
  color: rgba(41, 47, 54, 0.8);
  font-family: "Lato", Sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

.ph-home-trust-summary strong {
  color: #1f211d;
  font-weight: 700;
}

.ph-home-trust-proof-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 22px clamp(18px, 3vw, 28px) 18px;
  overflow: hidden;
}

.ph-home-trust-proof-stage::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -18%;
  width: 42%;
  height: 180%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 46%, rgba(255, 255, 255, 0) 72%);
  transform: translateX(-170%) skewX(-16deg);
  animation: ph-home-trust-stage-sheen 13s ease-in-out infinite;
  pointer-events: none;
}

.ph-home-trust-proof-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ph-home-trust-proof-head::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(41, 47, 54, 0.18) 0%, rgba(41, 47, 54, 0) 100%);
}

.ph-home-trust-proof-head p {
  margin: 0;
  color: rgba(41, 47, 54, 0.74);
  font-family: "Montserrat", Sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ph-home-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(41, 47, 54, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.ph-home-trust-card {
  position: relative;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 184px;
  padding: 24px;
  border-top: 1px solid rgba(41, 47, 54, 0.08);
  border-left: 1px solid rgba(41, 47, 54, 0.08);
  transition: background-color 0.24s ease, transform 0.24s ease;
}

.ph-home-trust-card:nth-child(-n + 2) {
  border-top: 0;
}

.ph-home-trust-card:nth-child(odd) {
  border-left: 0;
}

.ph-home-trust-card:hover,
.ph-home-trust-card:focus-within {
  background: rgba(255, 255, 255, 0.54);
  transform: translateY(-1px);
}

.ph-home-trust-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f2f7fd);
  box-shadow: inset 0 0 0 1px rgba(25, 40, 58, 0.08);
}

.ph-home-trust-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.ph-home-trust-card:hover .ph-home-trust-card-media img,
.ph-home-trust-card:focus-within .ph-home-trust-card-media img {
  transform: scale(1.04);
}

.ph-home-trust-card-copy {
  display: grid;
  gap: 8px;
  width: 100%;
}

.ph-home-trust-card-label {
  display: inline-flex;
  align-items: center;
  color: #7d6224;
  font-family: "Montserrat", Sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ph-home-trust-card-copy h3 {
  margin: 0;
  color: #1f211d;
  font-family: "Montserrat", Sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.ph-home-trust-card-copy p {
  margin: 0;
  color: rgba(41, 47, 54, 0.76);
  font-family: "Lato", Sans-serif;
  font-size: 14.5px;
  line-height: 1.62;
}

@keyframes ph-home-trust-stage-sheen {
  0%,
  14% {
    transform: translateX(-170%) skewX(-16deg);
  }

  44%,
  100% {
    transform: translateX(320%) skewX(-16deg);
  }
}

@media (max-width: 1180px) {
  .ph-home-trust-header {
    grid-template-columns: 1fr;
  }

  .ph-home-trust-summary {
    max-width: 100%;
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(41, 47, 54, 0.12);
  }

  .ph-home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 767px) {
  .ph-element.ph-element-ca40fb1 {
    padding: 16px 20px 0;
  }

  .ph-108 .ph-element.ph-element-a43929d > .ph-layout-inner {
    width: min(100%, calc(100vw - 24px));
    padding-inline: 12px;
  }

  .ph-home-explore {
    padding-block-start: 28px;
    padding-block-end: 48px;
  }

  .ph-home-explore__shell {
    gap: 20px;
  }

  .ph-home-explore__header {
    gap: 12px;
  }

  .ph-homepage-mirror .ph-home-explore .ph-element.ph-element-4d5b821 .ph-heading-title,
  .ph-homepage-mirror .ph-home-explore .ph-element.ph-element-a0583c4 .ph-heading-title {
    font-size: var(--ph-text-body-sm);
  }

  .ph-home-trust-bridge {
    gap: 20px;
    padding: 24px 18px;
  }

  .ph-home-trust-copy {
    font-size: 17px;
    line-height: 1.55;
  }

  .ph-home-trust-summary-kicker {
    gap: 12px;
  }

  .ph-home-trust-summary-kicker::before {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .ph-home-trust-proof-stage {
    gap: 14px;
    padding: 0;
  }

  .ph-home-trust-proof-head {
    gap: 12px;
  }

  .ph-home-trust-proof-head p {
    white-space: normal;
    line-height: 1.5;
  }

  .ph-home-trust-grid {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .ph-home-trust-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px 16px;
    border-left: 0;
  }

  .ph-home-trust-card:nth-child(2) {
    border-top: 1px solid rgba(41, 47, 54, 0.08);
  }

  .ph-home-trust-card-media {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .ph-home-trust-card-copy h3 {
    font-size: 17px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .ph-home-trust-proof-stage::before,
  .ph-home-trust-card,
  .ph-home-trust-card-media img {
    animation: none;
    transition: none;
  }
}

.ph-homepage-mirror section[id].ph-dev-faq {
  scroll-margin-top: 120px;
}

/* Homepage type normalization */
.ph-homepage-mirror .ph-home-trust-kicker,
.ph-homepage-mirror .ph-home-trust-summary-kicker,
.ph-homepage-mirror .ph-value-kicker,
.ph-homepage-mirror .ph-targeted-programs__kicker,
.ph-homepage-mirror .ph-flagship-programs__kicker,
.ph-homepage-mirror .ph-dev-kicker {
  font-family: var(--ph-font-display);
  font-size: var(--ph-text-eyebrow);
}

.ph-homepage-mirror .ph-home-trust-copy,
.ph-homepage-mirror .ph-home-trust-summary p,
.ph-homepage-mirror .ph-home-trust-card-copy p,
.ph-homepage-mirror .ph-targeted-programs__intro,
.ph-homepage-mirror .ph-targeted-programs__copy,
.ph-homepage-mirror .ph-flagship-programs__copy,
.ph-homepage-mirror .ph-optimal-cta-copy {
  font-family: var(--ph-font-body);
  line-height: var(--ph-leading-normal);
}

.ph-homepage-mirror .ph-home-trust-summary p,
.ph-homepage-mirror .ph-home-trust-card-copy p,
.ph-homepage-mirror .ph-targeted-programs__copy,
.ph-homepage-mirror .ph-flagship-programs__copy {
  font-size: var(--ph-text-body);
}

.ph-homepage-mirror .ph-home-trust-copy,
.ph-homepage-mirror .ph-targeted-programs__intro,
.ph-homepage-mirror .ph-optimal-cta-copy {
  font-size: var(--ph-text-body-lg);
}

.ph-homepage-mirror .ph-flagship-programs a.ph-flagship-programs__button,
.ph-homepage-mirror .ph-targeted-programs__button,
.ph-homepage-mirror .ph-optimal-cta-button {
  font-family: var(--ph-gold-button-font-family, "Montserrat", Sans-serif);
  font-size: var(--ph-gold-button-font-size, 16px);
  font-weight: var(--ph-gold-button-font-weight, 700);
  line-height: var(--ph-gold-button-line-height, 1);
  letter-spacing: var(--ph-gold-button-letter-spacing, 0.12em);
  text-transform: var(--ph-gold-button-text-transform, uppercase);
}

.ph-homepage-mirror .ph-targeted-programs__button.ph-targeted-programs__button--primary,
.ph-homepage-mirror .ph-targeted-programs__button.ph-targeted-programs__button--primary:visited {
  color: var(--ph-gold-button-text, #1b2b3c) !important;
  -webkit-text-fill-color: var(--ph-gold-button-text, #1b2b3c) !important;
}

.ph-homepage-mirror .ph-targeted-programs__button.ph-targeted-programs__button--primary:hover,
.ph-homepage-mirror .ph-targeted-programs__button.ph-targeted-programs__button--primary:focus-visible,
.ph-homepage-mirror .ph-targeted-programs__button.ph-targeted-programs__button--primary:active {
  color: var(--ph-gold-button-text-hover, #17283a) !important;
  -webkit-text-fill-color: var(--ph-gold-button-text-hover, #17283a) !important;
}

.ph-homepage-mirror .ph-targeted-programs__button.ph-targeted-programs__button--secondary,
.ph-homepage-mirror .ph-targeted-programs__button.ph-targeted-programs__button--secondary:visited,
.ph-homepage-mirror .ph-targeted-programs__button.ph-targeted-programs__button--secondary:hover,
.ph-homepage-mirror .ph-targeted-programs__button.ph-targeted-programs__button--secondary:focus-visible,
.ph-homepage-mirror .ph-targeted-programs__button.ph-targeted-programs__button--secondary:active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.ph-homepage-mirror .ph-dev-faq {
  --phd-gold: #ffc53a;
  --phd-gold-deep: #d99a11;
  --phd-ink: #0a0e13;
  --phd-panel: #111720;
  --phd-panel-soft: #1a212b;
  --phd-copy: #d9dee5;
  --phd-muted: #98a2ae;
  --phd-white: #ffffff;
  --phd-line: rgba(255, 255, 255, 0.11);
  --phd-line-soft: rgba(255, 255, 255, 0.07);
  --phd-glow: rgba(255, 197, 58, 0.24);
  --phd-light: #f7fafe;
  --phd-light-alt: #edf4fb;
  --phd-light-line: rgba(25, 40, 58, 0.1);
  --phd-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  color: var(--phd-white);
  background:
    radial-gradient(circle at right top, rgba(255, 197, 58, 0.15), transparent 28%),
    linear-gradient(180deg, #10151d 0%, #0d1117 100%);
  font-family: var(--ph-font-body);
}

.ph-homepage-mirror .ph-home-dark-stack {
  position: relative;
  overflow: visible;
  isolation: isolate;
  background:
    radial-gradient(circle at right top, rgba(255, 197, 58, 0.16), transparent 24%),
    radial-gradient(circle at left 18%, rgba(255, 197, 58, 0.09), transparent 22%),
    linear-gradient(180deg, #141a22 0%, #10161e 42%, #0d1117 100%);
}

.ph-homepage-mirror .ph-home-dark-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 12%, transparent 88%, rgba(255, 197, 58, 0.03));
}

.ph-homepage-mirror .ph-home-dark-stack .ph-targeted-programs,
.ph-homepage-mirror .ph-home-dark-stack .ph-dev-faq {
  position: relative;
  z-index: 1;
  background: transparent;
}

.ph-homepage-mirror .ph-home-dark-stack .ph-targeted-programs {
  padding-bottom: clamp(42px, 5vw, 60px);
}

.ph-homepage-mirror .ph-home-dark-stack .ph-dev-faq {
  padding-top: clamp(34px, 4vw, 52px);
}

.ph-homepage-mirror .ph-dev-faq a {
  color: inherit;
  text-decoration: none;
}

.ph-homepage-mirror .ph-dev-faq details summary::-webkit-details-marker {
  display: none;
}

.ph-homepage-mirror .ph-dev-shell {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.ph-homepage-mirror .ph-dev-kicker {
  margin: 0 0 12px;
  color: var(--phd-gold);
  font-family: var(--ph-font-display);
  font-size: var(--ph-text-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.ph-homepage-mirror .ph-dev-section {
  padding: clamp(76px, 9vw, 120px) 0;
}

.ph-homepage-mirror .ph-dev-section--dark h2,
.ph-homepage-mirror .ph-dev-section--dark h3,
.ph-homepage-mirror .ph-dev-section--dark summary,
.ph-homepage-mirror .ph-dev-section--dark strong,
.ph-homepage-mirror .ph-dev-section--dark blockquote {
  color: var(--phd-white);
}

.ph-homepage-mirror .ph-dev-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start;
}

.ph-homepage-mirror .ph-dev-faq__intro {
  position: sticky;
  top: calc(var(--ph-overlay-header-height, 0px) + clamp(16px, 2vw, 28px));
  align-self: start;
  height: fit-content;
  max-height: calc(100dvh - var(--ph-overlay-header-height, 0px) - 36px);
  z-index: 2;
}

.ph-homepage-mirror .ph-dev-faq__intro h2 {
  margin: 0;
  font-family: var(--ph-font-display);
  font-size: var(--ph-text-h2);
  line-height: var(--ph-leading-tight);
  letter-spacing: var(--ph-tracking-display);
  text-transform: uppercase;
}

.ph-homepage-mirror .ph-dev-faq__intro > p:not(.ph-dev-kicker) {
  margin: 14px 0 0;
  font-size: var(--ph-text-body-lg);
  line-height: var(--ph-leading-normal);
}

.ph-homepage-mirror .ph-dev-faq__list {
  display: grid;
  gap: 14px;
}

.ph-homepage-mirror .ph-dev-faq__list details {
  position: relative;
  padding: 26px 24px;
  border: 1px solid var(--phd-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.ph-homepage-mirror .ph-dev-faq__list details[open] {
  border-color: rgba(255, 197, 58, 0.35);
}

.ph-homepage-mirror .ph-dev-faq__list summary {
  position: relative;
  padding-right: 36px;
  cursor: pointer;
  font-family: var(--ph-font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.ph-homepage-mirror .ph-dev-faq__list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--phd-gold);
  font-family: var(--ph-font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.ph-homepage-mirror .ph-dev-faq__list details[open] summary::after {
  content: "–";
}

.ph-homepage-mirror .ph-dev-faq__list p {
  margin: 12px 0 0;
  color: var(--phd-muted);
  font-size: var(--ph-text-body);
  line-height: var(--ph-leading-normal);
}

.ph-homepage-mirror .ph-dev-faq__answer .ph-faq-answer-heading {
  display: block;
  margin: 16px 0 6px;
  color: var(--phd-gold);
  font-family: var(--ph-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .ph-homepage-mirror .ph-dev-faq__layout {
    grid-template-columns: 1fr;
  }

  .ph-homepage-mirror .ph-dev-faq__intro {
    position: static;
    max-height: none;
  }
}

@media (max-width: 960px) {
  .ph-homepage-mirror .ph-dev-shell {
    width: min(100% - 36px, 100%);
  }

  .ph-homepage-mirror .ph-home-dark-stack .ph-targeted-programs {
    padding-bottom: 32px;
  }

  .ph-homepage-mirror .ph-home-dark-stack .ph-dev-faq {
    padding-top: 32px;
  }
}

@media (max-width: 640px) {
  .ph-homepage-mirror .ph-dev-shell {
    width: calc(100% - 28px);
  }

  .ph-homepage-mirror .ph-dev-faq__list details {
    padding: 22px 18px;
  }
}

.ph-homepage-mirror .ph-home-dev3-learn {
  --phd3-gold: #ffc53a;
  --phd3-ink: #292f36;
  --phd3-paper: #ffffff;
  --phd3-copy: #5b6673;
  --phd3-line-light: rgba(41, 47, 54, 0.08);
  --phd3-shadow-soft: 0 22px 54px rgba(17, 21, 26, 0.08);
  --phd3-shell-max: 1440px;
  --phd3-shell-gutter: clamp(28px, 3vw, 56px);
  display: block;
  padding: clamp(80px, 9vw, 112px) 0;
  color: var(--phd3-ink);
  background: var(--phd3-paper);
}

.ph-homepage-mirror .ph-home-dev3-learn,
.ph-homepage-mirror .ph-home-dev3-learn * {
  box-sizing: border-box;
}

.ph-homepage-mirror .ph-home-dev3-learn img {
  display: block;
  max-width: 100%;
}

.ph-homepage-mirror .ph-home-dev3-learn a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.ph-homepage-mirror .ph-home-dev3-learn a:focus-visible {
  outline: 3px solid rgba(255, 197, 58, 0.45);
  outline-offset: 3px;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-shell {
  width: min(var(--phd3-shell-max), calc(100% - (var(--phd3-shell-gutter) * 2)));
  margin: 0 auto;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 38px;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-section-head--split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-kicker,
.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-label {
  margin: 0 0 14px;
  color: var(--phd3-gold);
  font-family: var(--ph-font-display);
  font-size: var(--ph-text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-section-head h2 {
  margin: 0;
  font-family: var(--ph-font-display);
  font-weight: 700;
  letter-spacing: var(--ph-tracking-display);
  text-transform: uppercase;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-section-head h2 {
  max-width: 680px;
  font-size: var(--ph-text-h2);
  line-height: var(--ph-leading-tight);
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--phd3-ink);
  font-family: var(--ph-font-display);
  font-size: var(--ph-text-button);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-inline-link::after {
  content: "→";
  color: var(--phd3-gold);
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-inline-link:hover {
  color: var(--phd3-gold);
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-card {
  border: 1px solid var(--phd3-line-light);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--phd3-shadow-soft);
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-article-card {
  overflow: hidden;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-article-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-article-card__body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-article-card__body h3 {
  margin: 0;
  font-family: var(--ph-font-display);
  font-size: var(--ph-text-h3);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: none;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-article-card__body h3 a {
  color: #1f211d;
  font-family: inherit;
  text-decoration: none;
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-article-card__body h3 a:hover {
  color: var(--phd3-gold);
}

.ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-article-card__body p:last-of-type {
  margin: 0;
  color: var(--phd3-copy);
  font-family: var(--ph-font-body);
  font-size: var(--ph-text-body);
  line-height: var(--ph-leading-normal);
}

@media (max-width: 1180px) {
  .ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-section-head--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-shell {
    width: min(100%, calc(100% - 28px));
  }

  .ph-homepage-mirror .ph-home-dev3-learn .ph-dev3-article-grid {
    grid-template-columns: 1fr;
  }
}
