/* ============================================================
   Premier Health & Wellness — Elementor Addon — widgets.css
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --phe-primary:   #1976d2;
  --phe-dark:      #1a2a4a;
  --phe-accent:    #4fc3f7;
  --phe-danger:    #e53935;
  --phe-light:     #f5f7fa;
  --phe-white:     #ffffff;
  --phe-grey:      #666666;
  --phe-border:    #e0e0e0;
  --phe-radius:    10px;
  --phe-shadow:    0 4px 24px rgba(0,0,0,0.10);
  --phe-transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Shared utilities ── */
.phe-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--phe-primary);
  margin-bottom: 10px;
}

/* =================================================
   HERO SECTION
   ================================================= */
.phe-hero {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
}
.phe-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.phe-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}
.phe-hero__content {
  max-width: 620px;
}
.phe-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--phe-accent);
  margin-bottom: 14px;
}
.phe-hero__h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}
.phe-hero__h1-accent {
  font-style: italic;
  color: var(--phe-accent);
  font-weight: 700;
}
.phe-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
}
.phe-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.phe-hero__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--phe-transition);
}
.phe-hero__btn--primary {
  background: var(--phe-primary);
  color: #fff;
  border: 2px solid var(--phe-primary);
}
.phe-hero__btn--primary:hover {
  background: #1257a8;
  border-color: #1257a8;
  transform: translateY(-2px);
}
.phe-hero__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.phe-hero__btn--secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* =================================================
   STATS BAR
   ================================================= */
.phe-stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 0;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 30px 40px;
}
.phe-stats-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 160px;
  padding: 16px 20px;
  border-right: 1px solid var(--phe-border);
}
.phe-stats-bar__item:last-child { border-right: none; }
.phe-stats-bar__icon { font-size: 28px; color: var(--phe-primary); flex-shrink: 0; }
.phe-stats-bar__text { display: flex; flex-direction: column; }
.phe-stats-bar__number { font-size: 22px; font-weight: 800; color: var(--phe-dark); line-height: 1; }
.phe-stats-bar__label  { font-size: 13px; color: #777; margin-top: 4px; }

/* =================================================
   TRUST BLOCK
   ================================================= */
.phe-trust {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 0;
  overflow: hidden;
}
.phe-trust__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  text-align: center;
}
.phe-trust__big-stat {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--phe-primary);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.phe-trust__stat-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  max-width: 220px;
}
.phe-trust__doctor-img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}
.phe-trust__doctor-img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.phe-trust__highlight-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--phe-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.phe-trust__doctor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
}
.phe-trust__doc-logo { width: 60px; height: auto; object-fit: contain; margin-bottom: 6px; }
.phe-trust__doctor-name { font-size: 16px; font-weight: 700; color: var(--phe-dark); }
.phe-trust__doctor-creds { font-size: 13px; color: #777; }
.phe-trust__right-img {
  width: 100%;
  max-width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* =================================================
   HOW TO GET STARTED
   ================================================= */
.phe-how {
  padding: 70px 40px;
  background: #fff;
}
.phe-how__header {
  text-align: left;
  margin-bottom: 40px;
}
.phe-how__heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--phe-dark);
  margin: 0;
}
.phe-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.phe-how__card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--phe-transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.phe-how__card:hover { transform: translateY(-4px); box-shadow: var(--phe-shadow); }
.phe-how__card-img-wrap { width: 100%; overflow: hidden; }
.phe-how__card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.phe-how__card:hover .phe-how__card-img { transform: scale(1.04); }
.phe-how__card-body { padding: 20px 24px 26px; }
.phe-how__step-num {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid currentColor;
  text-align: center;
  line-height: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.phe-how__card-title { font-size: 17px; font-weight: 700; color: var(--phe-dark); margin: 0 0 8px; }
.phe-how__card-desc  { font-size: 14px; color: #555; line-height: 1.65; margin: 0; }

/* =================================================
   TREATMENTS & SERVICES GRID
   ================================================= */
.phe-treatments {
  padding: 70px 40px;
  background: var(--phe-light);
}
.phe-treatments__header {
  text-align: left;
  margin-bottom: 32px;
}
.phe-treatments__heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--phe-dark);
  margin: 0 0 10px;
}
.phe-treatments__subheading { font-size: 15px; color: #666; margin: 0; }
.phe-treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.phe-treatments__card {
  position: relative;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: var(--phe-transition);
}
.phe-treatments__card:hover { transform: scale(1.02); }
.phe-treatments__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,24,50,0.5);
  transition: var(--phe-transition);
}
.phe-treatments__card:hover .phe-treatments__card-overlay { background: rgba(10,24,50,0.65); }
.phe-treatments__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 1;
}
.phe-treatments__card-title { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.phe-treatments__card-desc  { font-size: 13px; color: rgba(255,255,255,0.85); margin: 0 0 10px; }
.phe-treatments__card-link  { font-size: 13px; font-weight: 600; color: var(--phe-accent); text-decoration: none; }
.phe-treatments__card-link:hover { text-decoration: underline; }

/* =================================================
   BENEFITS SECTION
   ================================================= */
.phe-benefits {
  padding: 80px 40px;
  background: #f0f4ff;
}
.phe-benefits__inner { max-width: 1100px; margin: 0 auto; }
.phe-benefits__header { text-align: center; margin-bottom: 50px; }
.phe-benefits__heading {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: var(--phe-dark);
  margin: 0 0 16px;
}
.phe-benefits__heading-accent { font-style: italic; color: var(--phe-primary); }
.phe-benefits__desc { font-size: 15px; color: #555; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.phe-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.phe-benefits__card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  transition: var(--phe-transition);
}
.phe-benefits__card:hover { transform: translateY(-4px); box-shadow: var(--phe-shadow); }
.phe-benefits__icon { font-size: 32px; color: var(--phe-primary); display: block; margin-bottom: 14px; }
.phe-benefits__card-title { font-size: 16px; font-weight: 700; color: var(--phe-dark); margin: 0 0 10px; }
.phe-benefits__card-desc  { font-size: 14px; color: #666; line-height: 1.65; margin: 0; }
.phe-benefits__cta { text-align: center; }
.phe-benefits__cta-text { font-size: 15px; color: #555; margin: 0 0 16px; }
.phe-benefits__btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--phe-dark);
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--phe-transition);
}
.phe-benefits__btn:hover { background: #0d1a30; transform: translateY(-2px); }

/* =================================================
   VIDEO STORIES / TESTIMONIALS
   ================================================= */
.phe-stories { padding: 70px 40px; background: #fff; }
.phe-stories__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.phe-stories__heading {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--phe-dark);
  margin: 0;
}
.phe-stories__more {
  font-size: 14px;
  color: var(--phe-primary);
  font-weight: 600;
  text-decoration: none;
}
.phe-stories__more:hover { text-decoration: underline; }
.phe-stories__slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.phe-stories__slider::-webkit-scrollbar { display: none; }
.phe-stories__card {
  flex: 0 0 200px;
  height: 360px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  cursor: pointer;
  transition: var(--phe-transition);
}
.phe-stories__card:hover { transform: scale(1.03); }
.phe-stories__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.phe-stories__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 42px;
  color: rgba(255,255,255,0.85);
  z-index: 2;
  text-decoration: none;
  transition: var(--phe-transition);
}
.phe-stories__card:hover .phe-stories__play { color: #fff; transform: translate(-50%,-50%) scale(1.1); }
.phe-stories__card-footer {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.phe-stories__person { font-size: 13px; font-weight: 700; color: #fff; }
.phe-stories__handle { font-size: 11px; color: rgba(255,255,255,0.75); }
.phe-stories__overlay-text {
  position: absolute;
  bottom: 60px;
  left: 12px;
  right: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  z-index: 2;
}
.phe-stories__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}
.phe-stories__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--phe-border);
  border: none;
  cursor: pointer;
  transition: var(--phe-transition);
}
.phe-stories__dot.is-active { background: var(--phe-primary); }

/* =================================================
   TEAM SECTION
   ================================================= */
.phe-team { padding: 70px 40px; background: #fff; }
.phe-team__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
.phe-team__heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--phe-dark);
  margin: 0 0 8px;
}
.phe-team__subheading { font-size: 14px; color: #777; margin: 0; }
.phe-team__badge { width: 80px; height: auto; flex-shrink: 0; }
.phe-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.phe-team__card { display: flex; flex-direction: column; gap: 12px; }
.phe-team__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: var(--phe-transition);
}
.phe-team__card:hover .phe-team__photo { transform: scale(1.02); }
.phe-team__info { display: flex; flex-direction: column; gap: 4px; }
.phe-team__name { font-size: 15px; font-weight: 700; color: var(--phe-dark); }
.phe-team__role { font-size: 13px; color: #777; }

/* =================================================
   FAQ ACCORDION
   ================================================= */
.phe-faq { padding: 70px 40px; background: #f9f6f0; }
.phe-faq__header { margin-bottom: 32px; }
.phe-faq__heading {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--phe-dark);
  margin: 8px 0 0;
}
.phe-faq__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.phe-faq__tab {
  padding: 8px 22px;
  border: 2px solid var(--phe-border);
  border-radius: 30px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: var(--phe-transition);
}
.phe-faq__tab:hover, .phe-faq__tab.is-active {
  background: var(--phe-primary);
  border-color: var(--phe-primary);
  color: #fff;
}
.phe-faq__list { display: flex; flex-direction: column; gap: 10px; }
.phe-faq__item {
  border: 1px solid var(--phe-border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: var(--phe-transition);
}
.phe-faq__item.phe-faq--hidden { display: none; }
.phe-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--phe-dark);
  cursor: pointer;
  gap: 16px;
}
.phe-faq__question:hover { color: var(--phe-primary); }
.phe-faq__toggle { font-size: 14px; color: var(--phe-primary); flex-shrink: 0; }
.phe-faq__icon-minus { display: none; }
.phe-faq__item.is-open .phe-faq__icon-plus  { display: none; }
.phe-faq__item.is-open .phe-faq__icon-minus { display: inline; }
.phe-faq__answer {
  padding: 0 22px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.phe-faq__answer[hidden] { display: none; }

/* =================================================
   NEWS & PRESS GRID
   ================================================= */
.phe-news { padding: 70px 40px; background: #fff; }
.phe-news__header { margin-bottom: 28px; }
.phe-news__heading { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: var(--phe-dark); margin: 0; }
.phe-news__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.phe-news__card {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: var(--phe-transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.phe-news__card:hover { transform: translateY(-4px); box-shadow: var(--phe-shadow); }
.phe-news__img-wrap { overflow: hidden; }
.phe-news__img { width: 100%; height: 140px; object-fit: cover; display: block; transition: transform 0.35s; }
.phe-news__card:hover .phe-news__img { transform: scale(1.05); }
.phe-news__card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.phe-news__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--phe-primary); }
.phe-news__card-title { font-size: 14px; font-weight: 700; color: var(--phe-dark); margin: 0; line-height: 1.4; }
.phe-news__excerpt { font-size: 12px; color: #777; margin: 0; line-height: 1.6; flex: 1; }
.phe-news__date { font-size: 11px; color: #aaa; margin-top: auto; }
.phe-news__footer { text-align: center; margin-top: 32px; }
.phe-news__load-more {
  display: inline-block;
  padding: 12px 32px;
  background: var(--phe-dark);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--phe-transition);
}
.phe-news__load-more:hover { background: #0d1a30; }

/* =================================================
   CTA BANNER
   ================================================= */
.phe-cta {
  padding: 80px 40px;
  background: var(--phe-dark);
  text-align: center;
}
.phe-cta__inner { max-width: 680px; margin: 0 auto; }
.phe-cta__heading {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.phe-cta__sub { font-size: 16px; color: rgba(255,255,255,0.80); margin: 0 0 34px; line-height: 1.7; }
.phe-cta__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.phe-cta__btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--phe-transition);
}
.phe-cta__btn--primary { background: var(--phe-accent); color: var(--phe-dark); }
.phe-cta__btn--primary:hover { background: #81d4fa; transform: translateY(-2px); }
.phe-cta__btn--secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.phe-cta__btn--secondary:hover { border-color: #fff; }

/* =================================================
   SITE HEADER
   ================================================= */
.phe-header {
  font-family: inherit;
  width: 100%;
  position: relative;
  z-index: 1000;
}
.phe-header--sticky .phe-header__main {
  position: sticky;
  top: 0;
  box-shadow: 0 2px 14px rgba(0,0,0,0.10);
}
.phe-header__topbar {
  background: var(--phe-dark);
  padding: 8px 0;
}
.phe-header__topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding-left: 40px;
  padding-right: 40px;
}
.phe-header__topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.phe-header__topbar-item a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--phe-transition);
}
.phe-header__topbar-item a:hover { color: var(--phe-accent); }
.phe-header__main { background: #fff; border-bottom: 1px solid #eee; }
.phe-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 14px 40px;
  gap: 24px;
}

/* ── Width modes ── */
/* Content Width (default) */
.phe-header__inner--content,
.phe-header__topbar-inner.phe-header__inner--content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Full Width — stretches edge to edge */
.phe-header__inner--full,
.phe-header__topbar-inner.phe-header__inner--full {
  max-width: 100%;
}

/* Custom Width — controlled via Elementor slider selector */
.phe-header__inner--custom,
.phe-header__topbar-inner.phe-header__inner--custom {
  margin-left: auto;
  margin-right: auto;
}
.phe-header__logo {
  text-decoration: none;
  flex-shrink: 0;
}
.phe-header__logo-img { display: block; height: auto; }
.phe-header__logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--phe-dark);
}
.phe-header__nav { flex: 1; }
.phe-header__menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.phe-header__menu-item > a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--phe-transition);
}
.phe-header__menu-item > a:hover { color: var(--phe-primary); background: rgba(25,118,210,0.06); }
.phe-header__menu-item--highlight > a {
  background: var(--phe-primary);
  color: #fff !important;
  font-weight: 600;
}
.phe-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.phe-header__login {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: var(--phe-transition);
}
.phe-header__login:hover { color: var(--phe-primary); }
.phe-header__cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--phe-primary);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--phe-transition);
}
.phe-header__cta:hover { background: #1257a8; transform: translateY(-1px); }

/* Burger */
.phe-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.phe-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--phe-dark);
  border-radius: 2px;
  transition: var(--phe-transition);
}

/* Mobile Menu */
.phe-header__mobile-menu {
  background: #fff;
  padding: 20px 30px;
  border-top: 1px solid #eee;
}
.phe-header__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phe-header__mobile-list li a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--phe-dark);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}

/* =================================================
   SITE FOOTER
   ================================================= */
.phe-footer {
  background: var(--phe-dark);
  font-size: 14px;
}
.phe-footer__upper {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 48px;
  padding: 64px 60px 50px;
  max-width: 1300px;
  margin: 0 auto;
}
.phe-footer__brand { display: flex; flex-direction: column; gap: 14px; }
.phe-footer__logo-img { width: 160px; height: auto; }
.phe-footer__logo-text { font-size: 18px; font-weight: 800; color: #fff; }
.phe-footer__logo-link { text-decoration: none; display: inline-block; }
.phe-footer__tagline { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; max-width: 240px; }
.phe-footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 32px;
}
.phe-footer__col-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 16px;
}
.phe-footer__col-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.phe-footer__col-list a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--phe-transition);
}
.phe-footer__col-list a:hover { color: #fff; padding-left: 4px; }
.phe-footer__app { display: flex; flex-direction: column; gap: 12px; }
.phe-footer__badges { display: flex; flex-direction: column; gap: 10px; }
.phe-footer__badge-img { width: 130px; height: auto; border-radius: 8px; display: block; }
.phe-footer__badge-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--phe-transition);
  width: fit-content;
}
.phe-footer__badge-placeholder:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.phe-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 60px;
  background: #0d1a30;
  flex-wrap: wrap;
}
.phe-footer__copy { font-size: 12px; color: rgba(255,255,255,0.50); margin: 0; }
.phe-footer__social { display: flex; align-items: center; gap: 16px; }
.phe-footer__social a {
  font-size: 18px;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: var(--phe-transition);
}
.phe-footer__social a:hover { color: var(--phe-accent); transform: translateY(-2px); }

/* =================================================
   RESPONSIVE
   ================================================= */
@media (max-width: 1024px) {
  .phe-trust      { grid-template-columns: 1fr; }
  .phe-how__grid  { grid-template-columns: repeat(2, 1fr); }
  .phe-treatments__grid { grid-template-columns: repeat(2, 1fr); }
  .phe-benefits__grid   { grid-template-columns: repeat(2, 1fr); }
  .phe-team__grid       { grid-template-columns: repeat(2, 1fr); }
  .phe-news__grid       { grid-template-columns: repeat(3, 1fr); }
  .phe-footer__upper    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .phe-header__nav,
  .phe-header__login    { display: none; }
  .phe-header__burger   { display: flex; }
  .phe-header__inner    { padding: 12px 20px; }
  .phe-hero__inner      { padding: 50px 20px; }
  .phe-how__grid        { grid-template-columns: 1fr; }
  .phe-treatments__grid { grid-template-columns: 1fr; }
  .phe-benefits__grid   { grid-template-columns: 1fr; }
  .phe-team__grid       { grid-template-columns: repeat(2, 1fr); }
  .phe-news__grid       { grid-template-columns: repeat(2, 1fr); }
  .phe-stats-bar        { flex-direction: column; }
  .phe-stats-bar__item  { border-right: none; border-bottom: 1px solid var(--phe-border); width: 100%; }
  .phe-stats-bar__item:last-child { border-bottom: none; }
  .phe-footer__upper { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 30px; }
  .phe-footer__bottom { padding: 16px 24px; }
  .phe-how, .phe-treatments, .phe-benefits, .phe-stories, .phe-team, .phe-faq, .phe-news, .phe-cta { padding-left: 20px; padding-right: 20px; }
  .phe-header__topbar { padding: 6px 20px; }
}
@media (max-width: 480px) {
  .phe-team__grid { grid-template-columns: 1fr; }
  .phe-news__grid { grid-template-columns: 1fr; }
  .phe-hero__buttons { flex-direction: column; }
  .phe-cta__buttons  { flex-direction: column; align-items: center; }
}

/* =================================================
   HEADER — DROPDOWN MENUS
   (covers both custom links & WordPress sub-menus)
   ================================================= */

/* Reset WP menu bullet points & margins */
.phe-header__menu,
.phe-header__menu ul,
.phe-header__menu li,
.phe-header__menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Top-level items always horizontal */
.phe-header__menu {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Every top-level item — position:relative for dropdown anchor */
.phe-header__menu > li {
  position: relative;
}

.phe-header__menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: var(--phe-transition);
}
.phe-header__menu > li > a:hover { color: var(--phe-primary); background: rgba(25,118,210,0.06); }

/* Highlight item (button-style) */
.phe-header__menu > li.phe-header__menu-item--highlight > a,
.phe-header__menu > li.menu-item--highlight > a {
  background: var(--phe-primary);
  color: #fff !important;
  font-weight: 600;
  border-radius: 4px;
}

/* Chevron icon */
.phe-header__chevron {
  font-size: 10px;
  transition: transform var(--phe-transition);
  display: inline-block;
}
.phe-header__menu > li:hover > a .phe-header__chevron,
.phe-header__menu > li:focus-within > a .phe-header__chevron {
  transform: rotate(180deg);
}

/* ── Custom-links dropdown ── */
.phe-header__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 8px 0;
  z-index: 2000;
  list-style: none;
  margin: 0;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
}
.phe-header__menu-item--has-drop:hover .phe-header__dropdown,
.phe-header__menu-item--has-drop:focus-within .phe-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.phe-header__dropdown li { display: block; }
.phe-header__dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: var(--phe-transition);
}
.phe-header__dropdown a:hover {
  color: var(--phe-primary);
  background: rgba(25,118,210,0.06);
  padding-left: 22px;
}

/* ── WordPress sub-menu dropdown ── */
.phe-header__menu li.menu-item-has-children {
  position: relative;
}
.phe-header__menu .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 8px 0;
  z-index: 2000;
  list-style: none;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
}
.phe-header__menu li.menu-item-has-children:hover > .sub-menu,
.phe-header__menu li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.phe-header__menu .sub-menu li { display: block; }
.phe-header__menu .sub-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--phe-transition);
}
.phe-header__menu .sub-menu li a:hover {
  color: var(--phe-primary);
  background: rgba(25,118,210,0.06);
  padding-left: 22px;
}

/* Add chevron indicator to WP menu items with children */
.phe-header__menu li.menu-item-has-children > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  transition: transform var(--phe-transition);
}
.phe-header__menu li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* =================================================
   HEADER — SEARCH BAR
   ================================================= */

.phe-header__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #555;
  border-radius: 50%;
  transition: var(--phe-transition);
  flex-shrink: 0;
}
.phe-header__search-btn:hover {
  color: var(--phe-primary);
  background: rgba(25,118,210,0.08);
}
.phe-header__search-btn[aria-expanded="true"] {
  color: var(--phe-primary);
}

/* ── Shared form styles ── */
.phe-search-form {
  display: flex;
  align-items: center;
  width: 100%;
}
.phe-search-form__icon {
  font-size: 15px;
  color: #999;
  flex-shrink: 0;
  padding: 0 10px;
}
.phe-header__search-input {
  flex: 1;
  border: 2px solid var(--phe-primary);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 9px 14px 9px 0;
  font-size: 15px;
  color: #222;
  background: transparent;
  outline: none;
  transition: var(--phe-transition);
  min-width: 0;
}
.phe-header__search-input:focus { border-color: #1257a8; }
.phe-header__search-input::placeholder { color: #aaa; }
.phe-search-form__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border: 2px solid var(--phe-primary);
  border-left: none;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: var(--phe-transition);
  flex-shrink: 0;
}
.phe-search-form__close:hover { background: var(--phe-primary); color: #fff; }

/* ── INLINE search bar ── */
.phe-header__search-inline {
  position: relative;
  display: flex;
  align-items: center;
}
.phe-header__search-inline.is-open,
.phe-header__search-inline:not([hidden]) {
  display: flex;
  animation: phe-search-in 0.22s ease forwards;
}
.phe-header__search-inline .phe-search-form {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  overflow: hidden;
  width: 300px;
}
.phe-header__search-inline .phe-header__search-input {
  padding-left: 0;
}

/* ── FLOATING search bar ── */
.phe-header__search-floating {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1500;
  background: rgba(10,24,50,0.60);
  backdrop-filter: blur(4px);
  padding: 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.phe-header__search-floating:not([hidden]) {
  display: block;
  animation: phe-search-drop 0.25s ease forwards;
}
.phe-search-bar-inner {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.phe-search-bar-inner .phe-search-form {
  padding: 6px 6px 6px 0;
}
.phe-search-bar-inner .phe-header__search-input {
  border: none;
  border-radius: 0;
  padding: 10px 10px 10px 0;
  font-size: 16px;
}
.phe-search-bar-inner .phe-search-form__close {
  border: none;
  border-radius: 6px;
  background: rgba(0,0,0,0.06);
  margin-right: 4px;
  width: 36px;
  height: 36px;
}
.phe-search-bar-inner .phe-search-form__close:hover { background: var(--phe-primary); color: #fff; }

/* make header relatively positioned so floating can anchor */
.phe-header__main { position: relative; }

/* Animations */
@keyframes phe-search-drop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes phe-search-in {
  from { opacity: 0; transform: scaleX(0.8); }
  to   { opacity: 1; transform: scaleX(1); }
}

/* =================================================
   MOBILE MENU — DROPDOWN SUBS
   ================================================= */
.phe-header__mobile-item.has-drop { }
.phe-header__mobile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phe-header__mobile-row > a {
  flex: 1;
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--phe-dark);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}
.phe-header__mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  font-size: 13px;
  flex-shrink: 0;
  transition: var(--phe-transition);
  border-bottom: 1px solid #f0f0f0;
}
.phe-header__mobile-toggle[aria-expanded="true"] { transform: rotate(180deg); }
.phe-header__mobile-sub {
  list-style: none;
  margin: 0;
  padding: 4px 0 4px 16px;
  background: #f8f9fb;
  border-radius: 0 0 6px 6px;
}
.phe-header__mobile-sub li { display: block; }
.phe-header__mobile-sub li a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: var(--phe-transition);
}
.phe-header__mobile-sub li:last-child a { border-bottom: none; }
.phe-header__mobile-sub li a:hover { color: var(--phe-primary); padding-left: 16px; }

/* WP mobile sub-menu */
.phe-header__mobile-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 4px 0 4px 16px;
  background: #f8f9fb;
}
.phe-header__mobile-list .sub-menu li a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.phe-header__mobile-list .sub-menu li a:hover { color: var(--phe-primary); }

/* Responsive search tweak */
@media (max-width: 768px) {
  .phe-header__search-btn { display: inline-flex; }
  .phe-header__search-floating { padding: 16px 20px; }
  .phe-header__search-inline .phe-search-form { width: 240px; }
  .phe-header__menu .sub-menu,
  .phe-header__dropdown { display: none !important; } /* handled by mobile menu instead */
}

/* =================================================
   ANNOUNCEMENT BAR
   ================================================= */
.phe-ann {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  overflow: hidden;
  background: #1976d2;
  z-index: 1100;
}
.phe-ann__icon { margin-right: 7px; font-size: 14px; display: inline-flex; align-items: center; }
.phe-ann__text { font-size: 14px; font-weight: 500; line-height: 1.4; }
.phe-ann__text a,
.phe-ann__item a { text-decoration: none; color: inherit; }
.phe-ann__text a:hover,
.phe-ann__item a:hover { text-decoration: underline; }

/* Close button */
.phe-ann__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  padding: 4px 6px;
  border-radius: 4px;
  line-height: 1;
  transition: var(--phe-transition);
  flex-shrink: 0;
}
.phe-ann__close:hover { color: #fff; background: rgba(0,0,0,0.15); }

/* ── Scrolling / Marquee ── */
.phe-ann--scrolling { overflow: hidden; cursor: default; }
.phe-ann__track-wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.phe-ann__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: phe-marquee-left 30s linear infinite;
}
.phe-ann__item {
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  flex-shrink: 0;
}
.phe-ann__sep { margin: 0 8px; opacity: 0.5; font-size: 12px; }

@keyframes phe-marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes phe-marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Slider ── */
.phe-ann--slider {
  gap: 12px;
  padding-left: 50px;
  padding-right: 50px;
}
.phe-ann__slides-wrap {
  flex: 1;
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phe-ann__slide {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  animation: phe-ann-fade 0.35s ease;
}
.phe-ann__slide.is-active { display: flex; }
@keyframes phe-ann-fade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Arrow buttons */
.phe-ann__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0,0,0,0.15);
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
  transition: var(--phe-transition);
}
.phe-ann__arrow:hover { background: rgba(0,0,0,0.3); }

/* ── Fixed ── */
.phe-ann--fixed {
  justify-content: center;
}
.phe-ann__fixed {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* =================================================
   HEADER — FULL RESET & CENTERED NAV
   ================================================= */

/* Reset ALL list styles inside header nav */
.phe-header__nav .phe-header__menu,
.phe-header__nav .phe-header__menu *,
.phe-header__nav .phe-header__menu .sub-menu,
.phe-header__nav .phe-header__menu .sub-menu * {
  box-sizing: border-box;
}
.phe-header__nav ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.phe-header__nav li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

/* Top-level menu — horizontal, centered */
.phe-header__menu {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-wrap: nowrap;
}

/* Top-level item */
.phe-header__menu > li {
  position: relative;
  display: flex;
  align-items: center;
}

/* Top-level link */
.phe-header__menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-decoration: none !important;
  white-space: nowrap;
  border-radius: 5px;
  transition: color 0.22s, background 0.22s;
  line-height: 1;
}
.phe-header__menu > li > a:hover {
  color: var(--phe-primary);
  background: rgba(25,118,210,0.06);
}

/* Highlight item */
.phe-header__menu > li.phe-header__menu-item--highlight > a,
.phe-header__menu > li.menu-item--highlight > a {
  background: var(--phe-primary) !important;
  color: #fff !important;
  font-weight: 600;
}

/* Chevron */
.phe-header__chevron {
  font-size: 10px;
  opacity: 0.65;
  transition: transform 0.22s;
  display: inline-block;
  line-height: 1;
}
.phe-header__menu > li:hover > a .phe-header__chevron,
.phe-header__menu > li:focus-within > a .phe-header__chevron {
  transform: rotate(180deg);
  opacity: 1;
}
/* WP menu chevron via ::after */
.phe-header__menu li.menu-item-has-children > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  margin-left: 5px;
  opacity: 0.6;
  display: inline-block;
  transition: transform 0.22s;
}
.phe-header__menu li.menu-item-has-children:hover > a::after { transform: rotate(180deg); opacity: 1; }

/* ── Custom dropdown ── */
.phe-header__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 6px 0;
  z-index: 3000;
  /* Hidden */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
}
/* Show on hover / focus-within */
.phe-header__menu-item--has-drop:hover .phe-header__dropdown,
.phe-header__menu-item--has-drop:focus-within .phe-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* Small triangle notch */
.phe-header__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: 0;
  border-bottom-color: #fff;
  filter: drop-shadow(0 -1px 0 rgba(0,0,0,0.06));
}
.phe-header__dropdown ul { list-style: none; margin: 0; padding: 0; }
.phe-header__dropdown li { display: block; }
.phe-header__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  border-radius: 0;
  white-space: nowrap;
}
.phe-header__dropdown a:hover {
  color: var(--phe-primary);
  background: rgba(25,118,210,0.06);
  padding-left: 26px;
}
/* First and last item rounding */
.phe-header__dropdown li:first-child a { border-radius: 10px 10px 0 0; }
.phe-header__dropdown li:last-child  a { border-radius: 0 0 10px 10px; }

/* ── WP sub-menu dropdown ── */
.phe-header__menu li.menu-item-has-children { position: relative; }
.phe-header__menu .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 6px 0;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
}
.phe-header__menu .sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: 0;
  border-bottom-color: #fff;
}
.phe-header__menu li.menu-item-has-children:hover > .sub-menu,
.phe-header__menu li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.phe-header__menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
}
.phe-header__menu .sub-menu li a:hover {
  color: var(--phe-primary);
  background: rgba(25,118,210,0.06);
  padding-left: 26px;
}
.phe-header__menu .sub-menu li:first-child a { border-radius: 10px 10px 0 0; }
.phe-header__menu .sub-menu li:last-child  a { border-radius: 0 0 10px 10px; }

/* =================================================
   HEADER SEARCH — REBUILT
   ================================================= */
.phe-header__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  color: #555;
  border-radius: 50%;
  flex-shrink: 0;
  transition: color 0.22s, background 0.22s;
}
.phe-header__search-btn:hover,
.phe-header__search-btn[aria-expanded="true"] {
  color: var(--phe-primary);
  background: rgba(25,118,210,0.08);
}

/* shared form */
.phe-search-form {
  display: flex;
  align-items: center;
  width: 100%;
}
.phe-search-form__prefix {
  color: #aaa;
  font-size: 15px;
  padding: 0 12px;
  flex-shrink: 0;
}
.phe-header__search-input {
  flex: 1;
  border: none;
  border-bottom: 2px solid var(--phe-primary);
  outline: none;
  font-size: 16px;
  color: #222;
  padding: 10px 8px 10px 0;
  background: transparent;
  min-width: 0;
  transition: border-color 0.22s;
}
.phe-header__search-input::placeholder { color: #aaa; }
.phe-header__search-input:focus { border-color: #1257a8; }
.phe-search-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 15px;
  color: #666;
  cursor: pointer;
  border-radius: 50%;
  margin-right: 6px;
  transition: color 0.22s, background 0.22s;
}
.phe-search-close-btn:hover { color: #fff; background: var(--phe-primary); }

/* ── Floating search ── */
.phe-header__search-floating {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 2500;
  background: rgba(10,24,50,0.60);
  backdrop-filter: blur(6px);
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.phe-header__search-floating:not([hidden]) {
  display: block;
  animation: phe-search-drop 0.24s ease forwards;
}
/* inline mode — float but compact */
.phe-header__search-floating.phe-inline-mode {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: auto;
  width: 360px;
  border-radius: 10px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.07);
}
.phe-search-bar-inner {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,0,0,0.20);
}
.phe-search-inline-wrap {
  width: 100%;
}
.phe-search-bar-inner .phe-search-form,
.phe-search-inline-wrap .phe-search-form {
  padding: 4px 4px 4px 0;
}
.phe-search-bar-inner .phe-header__search-input,
.phe-search-inline-wrap .phe-header__search-input {
  border: none;
  border-bottom: none;
  padding: 10px 8px;
  font-size: 16px;
  background: transparent;
}

@keyframes phe-search-drop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Header layout: logo | nav (center) | actions ── */
.phe-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin: 0 auto;
  padding: 12px 40px;
  gap: 20px;
}
.phe-header__nav { display: flex; justify-content: center; }

/* ── Width modes ── */
.phe-header__inner--content,
.phe-header__topbar-inner.phe-header__inner--content { max-width: 1200px; }
.phe-header__inner--full,
.phe-header__topbar-inner.phe-header__inner--full { max-width: 100%; }
.phe-header__inner--custom,
.phe-header__topbar-inner.phe-header__inner--custom { /* controlled by Elementor slider */ }

/* ── Topbar ── */
.phe-header__topbar { background: var(--phe-dark); padding: 8px 0; }
.phe-header__topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}
.phe-header__topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.phe-header__topbar-item a {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.phe-header__topbar-item a:hover { color: var(--phe-accent); }

/* Actions row */
.phe-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative; /* anchor for inline search dropdown */
}
.phe-header__login {
  font-size: 14px; font-weight: 500; color: #333;
  text-decoration: none; transition: color 0.2s;
}
.phe-header__login:hover { color: var(--phe-primary); }
.phe-header__cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--phe-primary);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s, transform 0.22s;
}
.phe-header__cta:hover { background: #1257a8; transform: translateY(-1px); }

/* Burger */
.phe-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.phe-header__burger span { display: block; width: 24px; height: 2px; background: var(--phe-dark); border-radius: 2px; transition: var(--phe-transition); }

/* Mobile menu */
.phe-header__mobile-menu {
  background: #fff;
  padding: 16px 24px 24px;
  border-top: 1px solid #eee;
}
.phe-header__mobile-list { list-style: none; margin: 0; padding: 0; }
.phe-header__mobile-item { border-bottom: 1px solid #f0f0f0; }
.phe-header__mobile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phe-header__mobile-row > a {
  flex: 1; display: block; padding: 12px 4px;
  font-size: 15px; font-weight: 500; color: var(--phe-dark);
  text-decoration: none;
}
.phe-header__mobile-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  color: #555; font-size: 12px; flex-shrink: 0;
  transition: transform 0.22s;
}
.phe-header__mobile-toggle[aria-expanded="true"] { transform: rotate(180deg); }
.phe-header__mobile-sub {
  list-style: none; margin: 0; padding: 4px 0 6px 14px;
  background: #f8f9fb; border-radius: 0 0 6px 6px;
}
.phe-header__mobile-sub li a {
  display: block; padding: 9px 12px;
  font-size: 14px; color: #444;
  text-decoration: none; border-bottom: 1px solid #eee;
  transition: color 0.18s, padding-left 0.18s;
}
.phe-header__mobile-sub li:last-child a { border-bottom: none; }
.phe-header__mobile-sub li a:hover { color: var(--phe-primary); padding-left: 18px; }

/* Mobile — WP sub-menu */
.phe-header__mobile-list .sub-menu {
  list-style: none; margin: 0; padding: 4px 0 6px 14px;
  background: #f8f9fb;
}
.phe-header__mobile-list .sub-menu li a {
  display: block; padding: 9px 12px;
  font-size: 14px; color: #444; text-decoration: none;
  border-bottom: 1px solid #eee;
}
.phe-header__mobile-list .sub-menu li a:hover { color: var(--phe-primary); }

/* Sticky shadow */
.phe-header__main { position: relative; background: #fff; border-bottom: 1px solid #eee; transition: box-shadow 0.3s; }
.phe-header--sticky .phe-header__main { position: sticky; top: 0; z-index: 999; }
.phe-header__main--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.10); }

/* Responsive */
@media (max-width: 1024px) {
  .phe-header__inner { grid-template-columns: auto auto; }
  .phe-header__nav { display: none; }
  .phe-header__burger { display: flex; }
  .phe-header__actions .phe-header__search-btn { display: inline-flex; }
}
@media (max-width: 768px) {
  .phe-header__inner { padding: 10px 20px; }
  .phe-header__topbar-inner { padding: 0 20px; }
  .phe-header__search-floating { padding: 14px 20px; }
  .phe-header__search-floating.phe-inline-mode { width: calc(100vw - 40px); right: -10px; }
  .phe-ann--slider { padding-left: 40px; padding-right: 40px; }
  .phe-ann__close { right: 8px; }
}

/* =================================================
   v1.5.0 — TARGETED FIXES
   ================================================= */

/* ── 1. CLOSE BUTTON — centered icon, better design ── */
.phe-search-close-btn,
.phe-ann__close {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  line-height: 1 !important;
  padding: 0 !important; /* remove padding that throws off centering */
}
/* Search bar close btn */
.phe-search-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: none;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  margin: 0 4px;
  transition: background 0.2s, color 0.2s;
}
.phe-search-close-btn:hover { background: var(--phe-primary); color: #fff; }
.phe-search-close-btn i { display: flex; }

/* Announcement bar close btn */
.phe-ann__close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  background: rgba(0,0,0,0.15);
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.phe-ann__close:hover { background: rgba(0,0,0,0.35); }
.phe-ann__close i { display: flex; }

/* ── 2. DROPDOWN WIDTH — 280px (was 230px) ── */
.phe-header__dropdown,
.phe-header__menu .sub-menu {
  min-width: 280px !important;
}

/* ── 3. RESPONSIVE HEADER — mobile layout ── */

/* ≤ 1024px: hide nav, show burger */
@media (max-width: 1024px) {
  /* Grid: logo takes remaining space, actions only burger */
  .phe-header__inner {
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
  }
  .phe-header__nav { display: none !important; }

  /* Hide login, CTA, search btn from header actions row */
  .phe-header__actions .phe-header__login,
  .phe-header__actions .phe-header__cta,
  .phe-header__actions .phe-header__search-btn,
  .phe-header__actions .phe-header__search-floating {
    display: none !important;
  }

  /* Show burger */
  .phe-header__burger { display: flex !important; }
}

/* ≤ 768px: logo ~60% width of bar */
@media (max-width: 768px) {
  .phe-header__inner {
    grid-template-columns: 60% auto !important;
    padding: 10px 16px !important;
    gap: 8px !important;
    align-items: center !important;
  }
  .phe-header__logo {
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
  }
  .phe-header__logo-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .phe-header__logo-text {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .phe-header__actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }
  /* Only burger visible on mobile actions */
  .phe-header__actions > *:not(.phe-header__burger) { display: none !important; }
  .phe-header__burger { display: flex !important; }

  /* Topbar hidden on very small screens */
  .phe-header__topbar { display: none; }
}

/* ── 4. MOBILE MENU — full redesign ── */
.phe-header__mobile-menu {
  background: #fff;
  border-top: 3px solid var(--phe-primary);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow-y: auto;
  max-height: calc(100vh - 80px);
}

/* Nav section */
.phe-header__mobile-nav {
  padding: 0;
}

/* Mobile list reset */
.phe-header__mobile-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.phe-header__mobile-list * { box-sizing: border-box; }
.phe-header__mobile-item {
  border-bottom: 1px solid #f0f0f0;
}

/* Row: link + toggle side by side */
.phe-header__mobile-row {
  display: flex !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  min-height: 50px;
}
.phe-header__mobile-link,
.phe-header__mobile-row > a {
  flex: 1;
  display: flex !important;
  align-items: center;
  padding: 14px 20px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1a2a4a !important;
  text-decoration: none !important;
  background: none;
}
.phe-header__mobile-link:hover,
.phe-header__mobile-row > a:hover { color: var(--phe-primary) !important; background: rgba(25,118,210,0.04); }

/* Toggle button */
.phe-header__mobile-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  min-height: 50px !important;
  flex-shrink: 0;
  background: rgba(25,118,210,0.05) !important;
  border: none !important;
  border-left: 1px solid #eee !important;
  font-size: 12px !important;
  color: var(--phe-primary) !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: background 0.2s, transform 0.22s;
}
.phe-header__mobile-toggle:hover { background: rgba(25,118,210,0.12) !important; }
.phe-header__mobile-toggle[aria-expanded="true"] {
  background: var(--phe-primary) !important;
  color: #fff !important;
  transform: none !important; /* we rotate the icon, not the btn */
}
.phe-header__mobile-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
  transition: transform 0.22s;
}
.phe-header__mobile-toggle i { transition: transform 0.22s; }

/* Sub-menu (slideToggle uses display) */
.phe-header__mobile-sub,
.phe-header__mobile-list .sub-menu {
  display: none; /* JS controls show/hide */
  list-style: none !important;
  margin: 0 !important;
  padding: 4px 0 !important;
  background: #f7f9fc;
  border-top: 1px solid #eee;
}
.phe-header__mobile-sub li,
.phe-header__mobile-list .sub-menu li {
  display: block !important;
  list-style: none !important;
}
.phe-header__mobile-sub li a,
.phe-header__mobile-list .sub-menu li a {
  display: flex !important;
  align-items: center;
  padding: 11px 20px 11px 32px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #444 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: color 0.18s, padding-left 0.18s;
}
.phe-header__mobile-sub li a::before,
.phe-header__mobile-list .sub-menu li a::before {
  content: '–';
  margin-right: 10px;
  color: var(--phe-primary);
  font-weight: 700;
}
.phe-header__mobile-sub li a:hover,
.phe-header__mobile-list .sub-menu li a:hover {
  color: var(--phe-primary) !important;
  padding-left: 38px !important;
}
.phe-header__mobile-sub li:last-child a,
.phe-header__mobile-list .sub-menu li:last-child a { border-bottom: none; }

/* CTA section */
.phe-header__mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid #eee;
  background: #f9fafb;
}
.phe-header__mobile-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid var(--phe-primary);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--phe-primary) !important;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.phe-header__mobile-login:hover { background: var(--phe-primary); color: #fff !important; }
.phe-header__mobile-cta-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px !important;
  font-size: 15px !important;
  border-radius: 6px !important;
  text-align: center;
}

/* Search section in mobile */
.phe-header__mobile-search {
  padding: 14px 20px 20px;
  border-top: 1px solid #eee;
}
.phe-header__mobile-search-form {
  display: flex;
  align-items: center;
  background: #f4f5f8;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 0 12px;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.phe-header__mobile-search-form:focus-within {
  border-color: var(--phe-primary);
  box-shadow: 0 0 0 3px rgba(25,118,210,0.12);
  background: #fff;
}
.phe-header__mobile-search-form .fa-search {
  color: #aaa;
  font-size: 15px;
  flex-shrink: 0;
}
.phe-header__mobile-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 13px 0;
  font-size: 15px;
  color: #222;
  outline: none;
  min-width: 0;
}
.phe-header__mobile-search-input::placeholder { color: #aaa; }
.phe-header__mobile-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--phe-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.phe-header__mobile-search-submit:hover { background: #1257a8; }

/* =================================================
   v1.6.0 — UI FIXES
   ================================================= */

/* ════════════════════════════════════════════════
   1. CLOSE BUTTON — floating search bar
   ════════════════════════════════════════════════ */
/* Nuke all previous conflicting rules and set once */
.phe-search-close-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(100,100,100,0.12) !important;
  color: #555 !important;
  font-size: 13px !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 6px !important;
  line-height: 1 !important;
  transition: background 0.2s, color 0.2s !important;
  /* Kill any box/outline weirdness */
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.phe-search-close-btn:hover {
  background: var(--phe-primary) !important;
  color: #fff !important;
}
/* The <i> tag inside */
.phe-search-close-btn i,
.phe-search-close-btn svg {
  display: block !important;
  line-height: 1 !important;
  pointer-events: none;
}

/* Floating bar: close btn sits flush right */
.phe-search-bar-inner .phe-search-close-btn {
  margin-right: 10px !important;
}

/* Inline mode close btn */
.phe-search-inline-wrap .phe-search-close-btn {
  margin-right: 6px !important;
}

/* ════════════════════════════════════════════════
   2. HAMBURGER → ✕ CLOSE ICON ANIMATION
   ════════════════════════════════════════════════ */
.phe-header__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}
/* Grey bg when active */
.phe-header__burger.is-open {
  background: rgba(0,0,0,0.08) !important;
}
.phe-header__burger:hover { background: rgba(0,0,0,0.05); }

.phe-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              opacity  0.28s cubic-bezier(0.4,0,0.2,1),
              width    0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ☰ → ✕ animation */
.phe-header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.phe-header__burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.phe-header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════════════
   3. MOBILE MENU — ALIGNMENT FIX
   All items (with or without dropdown) left-align identically
   ════════════════════════════════════════════════ */

/* Full reset for any WP or theme interference */
.phe-header__mobile-menu ul,
.phe-header__mobile-menu li,
.phe-header__mobile-menu a {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  float: none !important;
  text-indent: 0 !important;
}

.phe-header__mobile-list > li,
.phe-header__mobile-list > .menu-item {
  display: block !important;
  border-bottom: 1px solid #f0f0f0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Row always flex, link always same padding */
.phe-header__mobile-row {
  display: flex !important;
  align-items: stretch !important;
  min-height: 52px !important;
  padding: 0 !important;
}

.phe-header__mobile-link,
.phe-header__mobile-row > a,
.phe-header__mobile-list > .menu-item > a,
.phe-header__mobile-list > li > a:not(.phe-header__mobile-link) {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  padding: 14px 20px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1a2a4a !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  text-indent: 0 !important;
  letter-spacing: 0 !important;
}

/* WP menu items that DON'T have a toggle button need same row wrapper feel */
.phe-header__mobile-list > .menu-item:not(.menu-item-has-children) > a {
  display: flex !important;
  align-items: center !important;
  padding: 14px 20px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1a2a4a !important;
  text-decoration: none !important;
  min-height: 52px !important;
}

.phe-header__mobile-link:hover,
.phe-header__mobile-row > a:hover,
.phe-header__mobile-list > li > a:hover {
  color: var(--phe-primary) !important;
  background: rgba(25,118,210,0.04) !important;
}

/* Toggle button — same height as row, right side */
.phe-header__mobile-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px !important;
  min-height: 52px !important;
  flex-shrink: 0 !important;
  background: rgba(25,118,210,0.05) !important;
  border: none !important;
  border-left: 1px solid #eee !important;
  font-size: 13px !important;
  color: var(--phe-primary) !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: background 0.2s !important;
}
.phe-header__mobile-toggle:hover {
  background: rgba(25,118,210,0.12) !important;
}
.phe-header__mobile-toggle[aria-expanded="true"] {
  background: var(--phe-primary) !important;
  color: #fff !important;
}
.phe-header__mobile-toggle i {
  display: block !important;
  transition: transform 0.22s !important;
  line-height: 1 !important;
}
.phe-header__mobile-toggle[aria-expanded="true"] i {
  transform: rotate(180deg) !important;
}

/* ════════════════════════════════════════════════
   4. MOBILE SEARCH — submit arrow centered
   ════════════════════════════════════════════════ */
.phe-header__mobile-search-form {
  display: flex !important;
  align-items: center !important;
  background: #f4f5f8 !important;
  border-radius: 8px !important;
  border: 1px solid #e0e0e0 !important;
  padding: 0 12px !important;
  gap: 10px !important;
  overflow: hidden !important;
}
.phe-header__mobile-search-form:focus-within {
  border-color: var(--phe-primary) !important;
  box-shadow: 0 0 0 3px rgba(25,118,210,0.10) !important;
  background: #fff !important;
}
.phe-header__mobile-search-input {
  flex: 1 !important;
  border: none !important;
  background: transparent !important;
  padding: 14px 0 !important;
  font-size: 15px !important;
  color: #222 !important;
  outline: none !important;
  min-width: 0 !important;
  -webkit-appearance: none !important;
}
.phe-header__mobile-search-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  background: var(--phe-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: background 0.2s !important;
}
.phe-header__mobile-search-submit:hover { background: #1257a8 !important; }
.phe-header__mobile-search-submit i,
.phe-header__mobile-search-submit svg {
  display: block !important;
  line-height: 1 !important;
  pointer-events: none;
}

/* =================================================
   v1.7.0 — FOOTER MOBILE + CTA ICONS
   ================================================= */

/* ── Footer: 1 column per row on mobile (default) ── */
@media (max-width: 768px) {

  /* Stack everything vertically */
  .phe-footer__upper {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    padding: 40px 24px 32px !important;
  }

  /* Link grid: 1 col by default */
  .phe-footer--mob-cols-1 .phe-footer__links {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* 2 cols option */
  .phe-footer--mob-cols-2 .phe-footer__links {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }

  /* ── Center alignment mode ── */
  .phe-footer--mob-center .phe-footer__brand,
  .phe-footer--mob-center .phe-footer__col,
  .phe-footer--mob-center .phe-footer__app,
  .phe-footer--mob-center .phe-footer__bottom {
    text-align: center !important;
    align-items: center !important;
  }

  .phe-footer--mob-center .phe-footer__logo-link {
    display: flex !important;
    justify-content: center !important;
  }

  .phe-footer--mob-center .phe-footer__col-list {
    align-items: center !important;
  }

  .phe-footer--mob-center .phe-footer__col-list li {
    text-align: center !important;
  }

  .phe-footer--mob-center .phe-footer__tagline {
    text-align: center !important;
    margin: 0 auto !important;
  }

  .phe-footer--mob-center .phe-footer__badges {
    align-items: center !important;
    justify-content: center !important;
  }

  .phe-footer--mob-center .phe-footer__bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 14px !important;
  }

  .phe-footer--mob-center .phe-footer__social {
    justify-content: center !important;
  }

  /* ── Left alignment (default explicit) ── */
  .phe-footer--mob-left .phe-footer__bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  /* Bottom bar always full-width on mobile */
  .phe-footer__bottom {
    padding: 16px 24px !important;
    flex-wrap: wrap;
    gap: 10px;
  }

  .phe-footer__copy {
    font-size: 12px;
  }

  /* Col list items left or centered based on parent */
  .phe-footer__col-list {
    display: flex !important;
    flex-direction: column !important;
  }

  .phe-footer__col-list li a {
    padding: 4px 0 !important;
  }
}

/* ── CTA Icon spacing ── */
.phe-header__login i,
.phe-header__cta i,
.phe-header__mobile-login i,
.phe-header__mobile-cta-btn i {
  font-size: 0.9em;
  vertical-align: middle;
  line-height: 1;
}

/* ── Mobile CTA: icon gap ── */
.phe-header__mobile-login {
  gap: 8px !important;
}
.phe-header__mobile-cta-btn {
  gap: 8px !important;
}

/* ── Fix click issue: ensure mobile menu items are fully tappable ── */
.phe-header__mobile-menu {
  /* Remove any pointer-events blocking */
  pointer-events: auto !important;
}
.phe-header__mobile-item,
.phe-header__mobile-row,
.phe-header__mobile-link,
.phe-header__mobile-row > a,
.phe-header__mobile-toggle {
  position: relative !important;
  z-index: 1 !important;
  pointer-events: auto !important;
}

/* Prevent any pseudo-element from blocking taps */
.phe-header__mobile-row::after,
.phe-header__mobile-row::before {
  pointer-events: none !important;
}

/* =================================================
   v1.8.0 — SOCIAL PROOF PEEK CAROUSEL (trust-block)
   ================================================= */
.phe-sp {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

/* Description */
.phe-sp__desc-wrap {
  max-width: 800px;
  margin: 0 auto 32px;
  padding: 0 40px;
  text-align: center;
}
.phe-sp__desc {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* Stats row */
.phe-sp__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 40px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.phe-sp__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 160px;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid #e0e0e0;
}
.phe-sp__stat:last-child { border-right: none; }
.phe-sp__stat-icon {
  font-size: 22px;
  color: var(--phe-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.phe-sp__stat-text {
  font-size: 13px;
  font-weight: 700;
  color: #1a2a4a;
  line-height: 1.3;
}
.phe-sp__stat-sub {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}

/* Carousel wrapper: arrows outside viewport */
.phe-sp__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 0;
  margin: 0;
}

/* Viewport clips the track */
.phe-sp__viewport {
  flex: 1;
  overflow: hidden;
  padding: 20px 0;
  /* Allow vertical overflow for hover scale */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Track — flex row, will be translated by JS */
.phe-sp__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

/* Individual card */
.phe-sp__card {
  flex: 0 0 320px;
  min-height: 320px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, opacity 0.35s;
  opacity: 0.60;
  transform: scale(0.92);
  cursor: pointer;
}
.phe-sp__card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.phe-sp__card-img-wrap {
  width: 100%;
  flex-shrink: 0;
}
.phe-sp__card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.phe-sp__card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.phe-sp__card-logo { width: 60px; height: auto; object-fit: contain; }
.phe-sp__card-quote {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
  opacity: 0.9;
}
.phe-sp__card-stat {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.phe-sp__card-text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
}
.phe-sp__card-person { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.phe-sp__card-name { font-size: 14px; font-weight: 700; }
.phe-sp__card-creds { font-size: 12px; }

/* Arrows */
.phe-sp__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 16px;
  color: #1a2a4a;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transition: background 0.22s, color 0.22s, transform 0.2s;
  margin: 0 12px;
}
.phe-sp__arrow:hover {
  background: var(--phe-primary);
  color: #fff;
  transform: scale(1.08);
}

/* Dots */
.phe-sp__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.phe-sp__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.22s, width 0.22s;
}
.phe-sp__dot.is-active {
  background: var(--phe-primary);
  width: 24px;
  border-radius: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .phe-sp__stats { flex-direction: column; padding: 0 20px; }
  .phe-sp__stat  { border-right: none; border-bottom: 1px solid #eee; width: 100%; }
  .phe-sp__stat:last-child { border-bottom: none; }
  .phe-sp__desc-wrap { padding: 0 20px; }
  .phe-sp__card { flex: 0 0 80vw; }
  .phe-sp__arrow { width: 38px; height: 38px; font-size: 14px; margin: 0 6px; }
}

/* =================================================
   v1.8.0 — VIDEO STORIES PEEK SLIDER
   ================================================= */
.phe-vs {
  padding: 70px 0;
  background: #fff;
  overflow: hidden;
}
.phe-vs__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  margin-bottom: 28px;
}
.phe-vs__heading {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #1a2a4a;
  margin: 0;
}
.phe-vs__more {
  font-size: 14px;
  font-weight: 600;
  color: var(--phe-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.phe-vs__more:hover { opacity: 0.75; }

/* Slider wrap: arrows outside viewport */
.phe-vs__slider-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

/* Viewport */
.phe-vs__viewport {
  flex: 1;
  overflow: hidden;
  /* Fade edges to hint at more content */
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* Track */
.phe-vs__track {
  display: flex;
  gap: 16px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 10px 0;
}

/* Card */
.phe-vs__card {
  flex: 0 0 220px;
  height: 360px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
  opacity: 0.70;
}
.phe-vs__card:hover,
.phe-vs__card.is-near-center {
  transform: scale(1.03);
  opacity: 1;
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}
.phe-vs__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.10) 50%, transparent 100%);
}

/* Play button */
.phe-vs__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.22s, transform 0.22s;
  z-index: 2;
}
.phe-vs__card:hover .phe-vs__play {
  background: rgba(255,255,255,0.45);
  transform: translate(-50%, -50%) scale(1.12);
}
.phe-vs__play i { margin-left: 3px; }

/* Caption */
.phe-vs__caption {
  position: absolute;
  bottom: 52px;
  left: 12px;
  right: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  z-index: 2;
  margin: 0;
  line-height: 1.5;
}

/* Footer */
.phe-vs__card-footer {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phe-vs__person { font-size: 13px; font-weight: 700; color: #fff; }
.phe-vs__handle { font-size: 11px; color: rgba(255,255,255,0.70); }

/* Arrows */
.phe-vs__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.90);
  border: none;
  font-size: 15px;
  color: #1a2a4a;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transition: background 0.22s, color 0.22s, transform 0.2s;
  margin: 0 12px;
}
.phe-vs__arrow:hover {
  background: var(--phe-primary);
  color: #fff;
  transform: scale(1.08);
}

/* Dots */
.phe-vs__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0 40px;
}
.phe-vs__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.22s, width 0.22s;
}
.phe-vs__dot.is-active {
  background: var(--phe-primary);
  width: 24px;
  border-radius: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .phe-vs__header { padding: 0 20px; }
  .phe-vs__card { flex: 0 0 75vw; }
  .phe-vs__arrow { width: 38px; height: 38px; margin: 0 6px; }
}
