:root {
  --lp-radius-sm: 8px;
  --lp-radius-md: 14px;
  --lp-radius-lg: 18px;
  --lp-shadow: 0 18px 45px rgba(16, 24, 40, 0.18);
  --lp-gutter: clamp(20px, 4vw, 64px);
  --lp-section-y: clamp(64px, 9vw, 112px);
  --lp-section-y-compact: clamp(48px, 6vw, 80px);
  --lp-header-main-h: 78px;
  --lp-card-radius: 16px;
  --lp-card-border: 1px solid rgba(23, 32, 42, 0.12);
  --lp-card-shadow-soft: 0 18px 36px -20px rgba(23, 32, 42, 0.28);
  --mvhd-service-title-size: 40px;
  --lp-admin-bar-height: 0px;
  --lp-text-strong: #101828;
  --lp-text-muted-accessible: #4a5565;
  --lp-accent-text: #00805B;
}

.landing-page-body {
  font-family: var(--font-sans);
  color: var(--theme-text);
  background: var(--theme-surface-strong);
}

.landing-page-shell {
  background: var(--theme-surface-strong);
  color: var(--theme-text);
  line-height: 1.5;
}

.landing-page-shell,
.landing-page-shell * {
  box-sizing: border-box;
}

.landing-page-shell a {
  color: inherit;
  text-decoration: none;
}

.landing-page-shell button,
.landing-page-shell input,
.landing-page-shell textarea,
.landing-page-shell select {
  font: inherit;
}

.lp-shell {
  width: min(var(--landing-shell-max), calc(100% - (var(--landing-shell-pad) * 2)));
  margin: 0 auto;
}

.lp-section--dark {
  background: var(--color-surface-tint);
  color: var(--theme-text);
}

.lp-section--dark-card {
  background: #fff;
  color: var(--theme-text);
}

.lp-split__lead {
  color: var(--theme-text);
}

.lp-split__accent {
  color: var(--lp-accent-text);
}

.lp-section--dark .lp-split__lead,
.lp-section--dark .lp-section-heading,
.lp-section--dark .lp-section-body,
.lp-section--dark .lp-section-eyebrow span {
  color: var(--theme-text);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  min-height: 52px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lp-btn:hover,
.lp-btn:focus-visible {
  transform: translateY(-1px);
}

.lp-btn--primary {
  background: var(--color-cta-primary);
  color: var(--theme-text);
  box-shadow: 0 10px 24px rgba(255, 182, 193, 0.34);
}

.lp-btn--primary:hover,
.lp-btn--primary:focus-visible {
  box-shadow: 0 14px 28px rgba(255, 182, 193, 0.4);
}

.lp-btn--dark {
  background: transparent;
  border-color: rgba(23, 32, 42, 0.38);
  color: var(--theme-text);
}

.lp-btn--dark:hover,
.lp-btn--dark:focus-visible {
  background: var(--color-surface-tint);
  color: var(--theme-text);
  box-shadow: var(--shadow-medium);
}

.lp-btn--outline {
  background: transparent;
  border-color: rgba(23, 32, 42, 0.24);
  color: var(--theme-text);
}

.lp-btn--outline:hover,
.lp-btn--outline:focus-visible {
  background: var(--color-surface-tint);
  color: var(--theme-text);
}

.lp-btn--outline-light {
  background: transparent;
  border-color: rgba(23, 32, 42, 0.22);
  color: var(--theme-text);
}

.lp-btn--outline-light:hover,
.lp-btn--outline-light:focus-visible {
  background: var(--color-surface-tint);
  color: var(--theme-text);
}

.lp-btn--full {
  width: 100%;
}

.lp-header {
  position: fixed;
  top: var(--lp-admin-bar-height);
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  color: var(--theme-text);
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
  box-shadow: 0 10px 20px rgba(23, 32, 42, 0.06);
}

.lp-header__topbar {
  background: var(--color-surface-tint);
  color: var(--theme-text);
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
  padding: 8px 0 9px;
}

.lp-header__topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.lp-header__topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: var(--font-weight-semibold);
  color: var(--lp-text-muted-accessible);
}

.lp-header__topbar-icon {
  width: 12px;
  height: 12px;
  display: inline-flex;
}

.lp-header__topbar-icon svg {
  width: 100%;
  height: 100%;
}

.lp-header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--lp-header-main-h);
}

.lp-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lp-header__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.lp-header__brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.lp-header__brand-title {
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  color: var(--theme-text);
}

.lp-header__brand-sub {
  font-size: 11px;
  color: var(--lp-text-muted-accessible);
}

.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp-header__nav-link,
.lp-header__mobile-link {
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: var(--font-weight-semibold);
  color: var(--lp-text-muted-accessible);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-header__nav-link:hover,
.lp-header__nav-link:focus-visible,
.lp-header__nav-link[aria-current="page"] {
  color: var(--theme-text);
}

.lp-header__phone {
  text-align: right;
  flex-shrink: 0;
}

.lp-header__phone-label {
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--lp-text-muted-accessible);
}

.lp-header__phone-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--color-cta-link);
  font-size: 23px;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  text-decoration: underline;
}

.lp-header__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 10;
}

.lp-header__toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--theme-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lp-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.lp-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.lp-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.lp-header__mobile-link {
  display: none;
}

.lp-page {
  overflow: hidden;
}

.lp-hero {
  position: relative;
  min-height: 728px;
  overflow: visible;
  display: flex;
  align-items: center;
  z-index: 2;
}

.lp-hero::before,
.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.lp-hero::before {
  background-image: var(--landing-hero-banner-image, var(--landing-hero-image));
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.lp-hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(255, 255, 255, 0.62) 78%);
  z-index: 0;
}

.lp-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(4px, 1.2vw, 14px) 0 clamp(12px, 2.5vw, 28px);
}

.lp-hero h1,
.lp-hero h2,
.lp-hero h3,
.lp-hero h4,
.lp-hero h5,
.lp-hero h6,
.lp-hero label,
.lp-hero .lp-btn,
.lp-hero .lp-btn span {
  color: var(--lp-text-muted-accessible);
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.lp-hero__copy {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lp-hero__eyebrow,
.lp-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-surface-tint);
}

.lp-hero__eyebrow-line,
.lp-section-eyebrow__line {
  width: 48px;
  height: 1px;
  background: var(--color-cta-primary);
}

.lp-hero__eyebrow-text,
.lp-section-eyebrow span {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-text-muted-accessible);
}

.lp-hero__title {
  margin: 0;
  font-weight: var(--font-weight-bold);
  line-height: 1.08;
}

.lp-hero__title .lp-split__lead,
.lp-hero__title .lp-split__accent {
  display: block;
}

.lp-hero__title .lp-split__lead {
  font-size: clamp(38px, 4.6vw, 52px);
  color: var(--lp-text-muted-accessible);
}

.lp-hero__title .lp-split__accent {
  font-size: clamp(40px, 5vw, 58px);
}

.lp-hero__tagline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-hero__tagline p {
  margin: 0;
}

.lp-hero__tagline p:first-child {
  color: var(--lp-accent-text);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: var(--font-weight-semibold);
  line-height: 1.1;
}

.lp-hero__tagline p:last-child {
  color: var(--lp-text-muted-accessible);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.lp-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-rating__stars {
  color: #ffc107;
  line-height: 1;
}

.lp-rating__text {
  font-size: 14px;
  color: var(--lp-text-muted-accessible);
}

.lp-hero__aside {
  position: relative;
  min-height: 680px;
  align-self: stretch;
}

.lp-hero__portrait {
  display: none;
}

.lp-eval-card {
  position: absolute;
  top: auto;
  bottom: 20px;
  right: 0;
  transform: none;
  z-index: 5;
  width: min(90%, 480px);
  min-height: 410px;
  background: #fff;
  border: 1px solid var(--theme-border);
  border-radius: var(--lp-radius-md);
  padding: 36px;
  box-shadow: 0 32px 48px rgba(0, 0, 0, 0.14);
}

.lp-eval-card h3 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 27px;
  line-height: 1.1;
  font-weight: var(--font-weight-semibold);
}

.lp-eval-card h3 strong {
  color: var(--lp-accent-text);
}

.lp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lp-form-grid,
.lp-contact-fallback-form,
.lp-contact__form-wrap .wpcf7-form {
  display: grid;
  gap: 14px;
}

.lp-form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lp-form-input,
.lp-contact__form-wrap input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.lp-contact__form-wrap select,
.lp-form-grid input,
.lp-contact__form-wrap textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--theme-border);
  border-radius: 8px;
  padding: 12px 16px;
  background: #fff;
  color: var(--theme-text);
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-form-textarea,
.lp-contact__form-wrap textarea {
  min-height: 143px;
  padding: 16px;
  background: var(--color-surface-tint);
  resize: vertical;
}

.lp-form-input:focus,
.lp-form-textarea:focus,
.lp-contact__form-wrap input:focus,
.lp-contact__form-wrap textarea:focus,
.lp-contact__form-wrap select:focus {
  outline: none;
  border-color: var(--color-cta-primary);
  box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.2);
}

.lp-services {
  position: relative;
  background: var(--color-surface-tint);
  padding: clamp(28px, 3.2vw, 48px) 0;
  padding-top: calc(clamp(28px, 3.2vw, 48px) + 36px);
  border-top: 1px solid rgba(255, 182, 193, 0.55);
}

.lp-services > .lp-shell,
.lp-trust > .lp-shell,
.lp-process > .lp-shell,
.lp-problems > .lp-shell,
.lp-testimonials > .lp-shell,
.lp-faq > .lp-shell,
.lp-prose--before-form > .lp-shell {
  position: relative;
  z-index: 1;
}

.lp-services::before,
.lp-trust::after,
.lp-process::after,
.lp-problems::before,
.lp-testimonials::before,
.lp-faq::after,
.lp-prose--before-form::after {
  content: "";
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.lp-services::before {
  left: max(8px, calc((var(--vw, 100vw) - 1290px) / 2 - 154px));
  top: 96px;
  width: clamp(280px, 25vw, 420px);
  aspect-ratio: 8 / 5;
  background-image: url('/wp-content/uploads/2026/04/butterfly-1.png');
  transform: rotate(24deg);
  opacity: 0.4;
}

.lp-trust::after {
  right: max(10px, calc((var(--vw, 100vw) - 1290px) / 2 - 108px));
  top: 18px;
  width: clamp(150px, 15vw, 220px);
  aspect-ratio: 1;
  background-image: url('/wp-content/uploads/2026/05/Image-Therapy-Clubhouse-Logo.png');
  opacity: 0.1;
}

.lp-process::after {
  right: max(10px, calc((var(--vw, 100vw) - 1290px) / 2 - 116px));
  top: 36px;
  width: clamp(168px, 17vw, 260px);
  aspect-ratio: 1;
  background-image: url('/wp-content/uploads/2026/05/Image-Therapy-Clubhouse-Logo.png');
  opacity: 0.12;
}

.lp-services h1,
.lp-services h2,
.lp-services h3,
.lp-services h4,
.lp-services h5,
.lp-services h6,
.lp-services label,
.lp-services .lp-services-toggle,
.lp-services .lp-services-toggle__label {
  color: var(--lp-text-muted-accessible);
}

#services .lp-section-heading,
#services .lp-service-card__title {
  color: var(--lp-text-muted-accessible) !important;
}

.lp-section-intro {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.lp-section-heading {
  font-size: clamp(34px, 4vw, 47px);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: 16px;
}

.lp-section-heading--sm {
  font-size: clamp(30px, 3.5vw, 36px);
}

.lp-section-body {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--theme-text);
}

.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.lp-service-card {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-radius: 22px;
  padding: 22px 24px 22px 18px;
  margin-left: -18px;
  padding-right: 24px;
  border-right: 1px solid rgba(23, 32, 42, 0.12);
  min-height: 224px;
  box-shadow: 0 0 0 rgba(23, 32, 42, 0);
  transition: transform 0.78s cubic-bezier(0.19, 1, 0.22, 1), color 0.42s ease, border-color 0.48s ease, background-color 0.48s ease, box-shadow 0.78s cubic-bezier(0.19, 1, 0.22, 1);
}

.lp-service-card::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 182, 193, 0.95) 0%, rgba(255, 209, 220, 0.4) 100%);
  opacity: 0;
  transform: scaleY(0.55);
  transform-origin: center;
  transition: opacity 0.56s ease, transform 0.78s cubic-bezier(0.19, 1, 0.22, 1);
}

.lp-service-card:hover,
.lp-service-card:focus-within {
  transform: translateY(-5px);
  border-right-color: transparent;
  box-shadow: 0 20px 38px rgba(23, 32, 42, 0.1);
}

.lp-service-card:hover::before,
.lp-service-card:focus-within::before {
  opacity: 1;
  transform: scaleY(1);
}

.lp-service-card:hover .lp-service-card__title,
.lp-service-card:focus-within .lp-service-card__title {
  color: var(--lp-accent-text) !important;
}

.lp-service-card:hover .lp-icon-badge,
.lp-service-card:focus-within .lp-icon-badge {
  transform: translateY(-2px) rotate(-4deg);
}

.lp-service-card:nth-child(4n) {
  border-right: 0;
}

.lp-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-icon-badge svg,
.lp-icon-badge img {
  width: 28px;
  height: 28px;
  color: #364153;
}

.lp-service-card__title {
  font-size: var(--mvhd-service-title-size);
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--theme-text);
}

.lp-service-card .lp-icon-badge {
  margin-bottom: 16px;
}

.lp-service-card p {
  margin: 12px 0 0;
  color: var(--theme-text-muted);
  line-height: 1.7;
}

.lp-service-card.is-collapsed {
  display: none;
}

.lp-service-card.is-expanding {
  display: block;
  animation: mvhd-service-in 0.35s var(--ease-spring) both;
}

.lp-service-card.is-collapsing {
  animation: mvhd-service-out 0.25s ease-in both;
}

.lp-services__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-services-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--theme-text);
  border: 1px solid rgba(23, 32, 42, 0.14);
  border-radius: 7px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.08);
}

.lp-services-toggle__arrow {
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-services-toggle[aria-expanded="true"] .lp-services-toggle__arrow {
  transform: rotate(180deg);
}

.lp-trust {
  background: #fff;
  border-top: 1px solid rgba(23, 32, 42, 0.08);
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
}

.lp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 132px;
  gap: 24px;
}

.lp-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-right: 1px solid rgba(23, 32, 42, 0.08);
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.lp-trust__item:hover,
.lp-trust__item:focus-within {
  background: rgba(255, 244, 246, 0.8);
  transform: translateY(-3px);
}

.lp-trust__item:hover .lp-icon-badge,
.lp-trust__item:focus-within .lp-icon-badge {
  transform: scale(1.08) rotate(-4deg);
}

.lp-trust__item:last-child {
  border-right: 0;
}

.lp-trust__item .lp-icon-badge {
  margin-bottom: 4px;
}

.lp-trust__value {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}

.lp-trust__label {
  color: var(--theme-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.lp-problems,
.lp-faq,
.lp-testimonials,
.lp-bio {
  padding: var(--lp-section-y) 0;
}

.lp-trust,
.lp-problems,
.lp-faq,
.lp-testimonials {
  position: relative;
}

.lp-problems {
  background: var(--color-surface);
  padding-bottom: clamp(28px, 3.4vw, 44px);
}

.lp-problems::before {
  left: max(8px, calc((var(--vw, 100vw) - 1290px) / 2 - 148px));
  top: 22px;
  width: clamp(250px, 22vw, 360px);
  aspect-ratio: 8 / 5;
  background-image: url('/wp-content/uploads/2026/04/butterfly-1.png');
  transform: rotate(19deg) scaleX(-1);
  opacity: 0.25;
}

.lp-faq {
  padding-bottom: clamp(28px, 3.6vw, 48px);
}

.lp-faq::after {
  right: max(14px, calc((var(--vw, 100vw) - 1290px) / 2 - 118px));
  top: 8px;
  width: clamp(160px, 16vw, 230px);
  aspect-ratio: 1;
  background-image: url('/wp-content/uploads/2026/05/Image-Therapy-Clubhouse-Logo.png');
  opacity: 0.09;
}

.lp-testimonials::before {
  right: max(12px, calc((var(--vw, 100vw) - 1290px) / 2 - 134px));
  top: 10px;
  width: clamp(260px, 24vw, 380px);
  aspect-ratio: 8 / 5;
  background-image: url('/wp-content/uploads/2026/04/butterfly-1.png');
  transform: rotate(-18deg) scaleX(-1);
  opacity: 0.3;
}

.lp-problems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 598px));
  gap: 34px;
  justify-content: center;
}

.lp-problems__actions {
  margin-top: 28px;
  margin-bottom: clamp(20px, 3vw, 32px);
  display: flex;
  justify-content: center;
}
.lp-feature-card {
  background: #fff;
  opacity: 0.11;
  border-left: 5px solid var(--color-cta-primary);
  border-radius: var(--lp-card-radius);
  padding: 41px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--lp-card-shadow-soft);
}

.lp-feature-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-feature-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 182, 193, 0.16);
  border: 1px solid var(--color-cta-primary);
}

.lp-feature-card h3 {
  margin: 0;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: var(--font-weight-semibold);
  color: var(--theme-text);
}

.lp-feature-card__intro,
.lp-feature-card__body,
.lp-feature-card__body p,
.lp-feature-card__body li {
  color: var(--theme-text-muted);
  line-height: 1.7;
}

.lp-feature-card__body ul,
.lp-feature-card__body ol {
  margin: 0;
  padding-left: 1.25rem;
}

.lp-cta-band {
  color: var(--theme-text);
}

.lp-cta-band--standalone {
  background: linear-gradient(135deg, rgba(255, 244, 246, 0.72) 0%, rgba(255, 250, 232, 0.64) 48%, rgba(234, 249, 243, 0.72) 100%);
  padding: clamp(32px, 3.6vw, 48px) 0 clamp(26px, 3vw, 40px);
  border-bottom: 1px solid rgba(255, 182, 193, 0.35);
}

.lp-cta-band .lp-shell {
  background: #fff;
  border: var(--lp-card-border);
  border-radius: var(--lp-card-radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--lp-card-shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-cta-band .lp-shell:hover,
.lp-cta-band .lp-shell:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 182, 193, 0.75);
  box-shadow: 0 26px 48px -22px rgba(23, 32, 42, 0.34);
}

.lp-cta-band--standalone .lp-shell {
  width: min(980px, calc(100% - (var(--landing-shell-pad) * 2)));
}

.lp-cta-band__inner {
  max-width: 810px;
  margin: 0 auto;
}

.lp-cta-band__inner h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.5vw, 36px);
  line-height: 1.2;
}

.lp-cta-band__inner p {
  margin: 0 auto 30px;
  max-width: 672px;
  line-height: 1.7;
}

.lp-cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.lp-cta-band__or {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
}

.lp-cta-band--services-clone {
  background: #eef7f8;
  padding: 56px 0;
  text-align: left;
}

.lp-cta-band--services-clone.services-page__section--cta {
  margin: 0;
}

.lp-cta-band--services-clone .services-page__section-inner {
  width: min(var(--container, 1290px), calc(100vw - 96px));
  margin: 0 auto;
  padding: 0;
}

.lp-cta-band--services-clone .services-page__cta-layout {
  display: grid;
  grid-template-columns: 740px 520px;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.lp-cta-band--services-clone .services-page__cta-copy h2 {
  margin: 0 0 24px;
  font-size: 39px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--text-medium, #4a5565);
}

.lp-cta-band--services-clone .services-page__section-intro {
  color: var(--text-dark, #101828);
  font-size: 19px;
  line-height: 1.7;
}

.lp-cta-band--services-clone .services-page__section-intro span {
  display: inline;
}

.lp-cta-band--services-clone .services-page__show-more {
  margin-top: 10px;
}

.lp-cta-band--services-clone .services-page__show-more-content {
  max-height: 64px;
  overflow: hidden;
  transition: max-height 0.58s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.32s ease;
  will-change: max-height;
}

.lp-cta-band--services-clone .services-page__show-more:not(.is-expanded) .services-page__show-more-content {
  max-height: 64px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent);
  mask-image: linear-gradient(to bottom, #000 70%, transparent);
}

.lp-cta-band--services-clone .services-page__show-more.is-expanded .services-page__show-more-content {
  max-height: 3000px;
  -webkit-mask-image: none;
  mask-image: none;
}

.lp-cta-band--services-clone .services-page__show-more-toggle {
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: #007893;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.25s ease;
}

.lp-cta-band--services-clone .services-page__show-more-toggle:hover,
.lp-cta-band--services-clone .services-page__show-more-toggle:focus-visible {
  opacity: 0.75;
}

.lp-cta-band--services-clone .services-page__show-more-toggle::after {
  content: "⌄";
  font-size: 20px;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: inline-block;
}

.lp-cta-band--services-clone .services-page__show-more.is-expanded .services-page__show-more-toggle::after {
  transform: rotate(180deg);
}

.lp-cta-band--services-clone .services-page__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-cta-band--services-clone .services-page__button {
  width: 520px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  color: #0f0f0f;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease;
}

.lp-cta-band--services-clone .services-page__button:hover,
.lp-cta-band--services-clone .services-page__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.14);
  filter: brightness(1.04);
}

.lp-cta-band--services-clone .services-page__button--primary {
  background: var(--pink, #ffb6c1);
}

.lp-cta-band--services-clone .services-page__button--secondary {
  background: rgba(255, 255, 255, 0.4);
  border-color: #0f0f0f;
  box-shadow: none;
}

.lp-process,
.lp-contact {
  padding: var(--lp-section-y) 0;
}

.lp-process {
  background: var(--color-surface-tint);
  padding-top: clamp(26px, 3vw, 40px);
  padding-bottom: clamp(28px, 3.4vw, 44px);
}

.lp-process-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin-top: 64px;
  align-items: stretch;
}

.lp-process-grid > * {
  flex: 0 0 386px;
  max-width: 386px;
}

.lp-process-card {
  background: #fff;
  color: var(--theme-text);
  border: var(--lp-card-border);
  border-radius: var(--lp-card-radius);
  padding: 33px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  min-height: 100%;
  box-shadow: var(--lp-card-shadow-soft);
}

.lp-process-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta-primary);
  color: var(--theme-text);
  border: 1px solid rgba(23, 32, 42, 0.14);
  font-weight: var(--font-weight-bold);
  font-size: 24px;
}

.lp-process-card h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 1.6vw, 24px);
}

.lp-process-card p {
  margin: 0;
  line-height: 1.7;
}

.lp-process__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* Interactive process cards (open detail modals) */
.lp-process-card--interactive {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-process-card--interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px -22px rgba(23, 32, 42, 0.4);
}

.lp-process-card--interactive:focus-visible {
  outline: none;
  transform: translateY(-4px);
  box-shadow: 0 0 0 3px var(--lp-accent-text), var(--lp-card-shadow-soft);
}

.lp-process-card__more {
  display: inline-block;
  margin-top: 14px;
  font-weight: var(--font-weight-bold);
  color: var(--lp-accent-text);
}

/* Process detail modals */
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  overscroll-behavior: contain;
}

.lp-modal[hidden] {
  display: none;
}

.lp-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lp-modal.is-closing {
  opacity: 0;
}

.lp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 32, 42, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.lp-modal.is-open .lp-modal__overlay {
  opacity: 1;
}

.lp-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(86vh, 880px);
  overflow-y: auto;
  background: #fff;
  color: var(--theme-text);
  text-align: left;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow);
  padding: clamp(28px, 4vw, 48px);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.24s var(--ease-spring), opacity 0.2s ease;
}

.lp-modal.is-open .lp-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lp-modal.is-closing .lp-modal__dialog {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
}

.lp-modal__dialog--media {
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.lp-modal__media {
  border-radius: var(--lp-radius-md);
  overflow: hidden;
}

.lp-modal__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.lp-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(23, 32, 42, 0.12);
  background: var(--color-surface-tint);
  color: var(--theme-text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lp-modal__close:hover {
  background: var(--color-cta-primary);
}

.lp-modal__title {
  margin: 0 0 18px;
  padding-right: 36px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
}

.lp-modal__body {
  line-height: 1.7;
}

.lp-modal__body > *:first-child {
  margin-top: 0;
}

.lp-modal__body h3 {
  margin: 22px 0 8px;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--lp-accent-text);
}

.lp-modal__body p {
  margin: 0 0 14px;
}

.lp-modal__body ul,
.lp-modal__body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.lp-modal__body li {
  margin-bottom: 6px;
}

body.lp-modal-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 760px) {
  .lp-modal__dialog--media {
    grid-template-columns: 1fr;
  }
}

.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  margin-top: 64px;
}

.lp-testimonial-card {
  background: #fff;
  border: var(--lp-card-border);
  border-radius: var(--lp-card-radius);
  padding: 32px;
  box-shadow: var(--lp-card-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 340px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-testimonial-card:hover,
.lp-testimonial-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(255, 182, 193, 0.75);
  box-shadow: 0 28px 52px -24px rgba(23, 32, 42, 0.38);
}

.lp-testimonial-card__stars {
  color: #ffc107;
  line-height: 1;
}

.lp-testimonial-card__quote {
  flex: 1;
  line-height: 1.7;
}

.lp-testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.lp-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-tint);
  color: var(--theme-text);
  border: 1px solid rgba(255, 182, 193, 0.55);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.lp-testimonial-card:hover .lp-testimonial-card__avatar,
.lp-testimonial-card:focus-within .lp-testimonial-card__avatar {
  background: var(--color-cta-primary);
  border-color: rgba(23, 32, 42, 0.14);
  transform: scale(1.04);
}

.lp-testimonial-card__name {
  font-weight: var(--font-weight-bold);
}

.lp-testimonial-card__detail {
  font-size: 14px;
  color: var(--theme-text-muted);
}

.lp-bio {
  background: var(--color-surface-tint);
}

.lp-bio-card {
  display: flex;
  overflow: hidden;
  background: #fff;
  border: var(--lp-card-border);
  border-radius: var(--lp-card-radius);
  box-shadow: var(--lp-card-shadow-soft);
}

.lp-bio-card__photo {
  width: 42%;
  flex-shrink: 0;
  aspect-ratio: 4 / 5;
  min-height: 520px;
  background-image: var(--landing-bio-image);
  background-size: cover;
  background-position: center;
}

.lp-bio-card__copy {
  padding: 48px 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.lp-bio-card__name {
  font-size: clamp(30px, 3vw, 33px);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.lp-bio-card__body,
.lp-bio-card__body p {
  line-height: 1.7;
}

.lp-bio-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lp-bio-card__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.7;
}

.lp-bio-card__stat .check {
  color: var(--color-cta-primary);
}

.lp-faq-list {
  max-width: 80.625rem;
  margin: 0 auto;
}

.lp-faq-list .accordion__item + .accordion__item {
  margin-top: 0.5rem;
}

.lp-faq-list .accordion__item {
  border-bottom: 0 !important;
  border: 2px solid #d0d5dd !important;
  border-radius: 1.5rem !important;
  padding: 0 2rem !important;
  background: #fff !important;
  overflow: hidden !important;
}

.lp-faq-list .accordion__question {
  padding: 2rem 0 !important;
  gap: 1rem !important;
}

.lp-faq-list .accordion__question-text {
  font-size: 1.4375rem !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  color: var(--lp-text-muted-accessible) !important;
}

.lp-faq-list .accordion__icon {
  transform: none;
}

.lp-faq-list .accordion__icon::before,
.lp-faq-list .accordion__icon::after {
  background: var(--lp-text-muted-accessible) !important;
}

.landing-page-shell #faq .lp-faq-list .accordion__question-text,
.landing-page-shell #faq .lp-faq-list .accordion__question-text * {
  color: var(--lp-text-muted-accessible) !important;
}

.lp-faq-list .accordion__answer-text {
  padding: 0 0 2rem !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: #667085 !important;
  max-width: 70ch !important;
  opacity: 1 !important;
}

.lp-faq-item {
  border-bottom: 1px solid #b7b7b7;
}

.lp-faq-item__heading {
  margin: 0;
}

.lp-faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 29px 16px;
  cursor: pointer;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 20px;
  line-height: 1.7;
  transition: color 0.2s ease;
  color: var(--theme-text);
}

.lp-faq-item__trigger:hover {
  color: var(--lp-accent-text);
}

.lp-faq-item__arrow {
  transition: transform 0.3s ease;
  line-height: 1;
}

.lp-faq-item.is-open .lp-faq-item__arrow {
  transform: rotate(45deg);
}

.lp-faq-item.is-open .lp-faq-item__trigger {
  color: var(--color-cta-link);
}

.lp-faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-spring), padding 0.35s var(--ease-spring);
  padding: 0 16px;
  color: var(--theme-text-muted);
  line-height: 1.7;
}

.lp-faq-item.is-open .lp-faq-item__body {
  max-height: 600px;
  padding: 0 16px 24px;
}

.lp-header__nav-link:focus-visible,
.lp-header__mobile-link:focus-visible,
.lp-services-toggle:focus-visible,
.lp-faq-list .accordion__question:focus-visible,
.lp-faq-item__trigger:focus-visible,
.lp-btn:focus-visible {
  outline: 3px solid #1a73e8;
  outline-offset: 3px;
}

.lp-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
}

.lp-contact__layout.is-copy-hidden {
  grid-template-columns: 1fr;
}

.lp-contact__copy {
  position: relative;
}

.lp-contact__disclaimer {
  margin-top: 18px;
  color: var(--theme-text-muted);
}

.lp-contact__card {
  background: #fff;
  border: 1px solid rgba(29, 41, 61, 0.2);
  border-radius: 16px;
  padding: 48px 49px;
  box-shadow: 0 24px 36px -16px rgba(23, 32, 42, 0.22);
  color: var(--theme-text);
}

.lp-contact__form-intro {
  text-align: center;
  margin-bottom: 32px;
}

.lp-contact__form-intro .lp-section-heading,
.lp-contact__form-intro .lp-section-body,
.lp-contact__form-intro .lp-contact__disclaimer {
  color: var(--theme-text);
}

.lp-contact__form-wrap .wpcf7 form,
.lp-contact-fallback-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lp-contact__form-wrap .lp-field--half {
  grid-column: span 1;
}

.lp-contact__form-wrap .lp-field--full,
.lp-contact__form-wrap textarea,
.lp-contact__form-wrap select,
.lp-contact__form-wrap .wpcf7-response-output,
.lp-contact__form-wrap .wpcf7-spinner,
.lp-contact__form-wrap .wpcf7-not-valid-tip,
.lp-contact__form-wrap input[type="submit"],
.lp-contact__form-wrap button[type="submit"] {
  grid-column: 1 / -1;
}

.lp-mobile-sticky-cta {
  display: none;
  position: fixed;
  inset: auto 0 0;
  z-index: 9999;
  background: var(--color-cta-primary);
  padding: 12px 16px;
  border-top: 1px solid rgba(23, 32, 42, 0.16);
}

.lp-mobile-sticky-cta a {
  display: block;
  width: 100%;
  border-radius: 7px;
  padding: 14px;
  background: var(--color-cta-primary);
  color: var(--theme-text);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-bold);
}

.lp-final-cta-repeat {
  padding: 0 0 var(--lp-section-y-compact);
}

.lp-final-cta-repeat__inner {
  display: flex;
  justify-content: center;
}

.mvhd-reveal {
  opacity: 1;
  transform: none;
}

.mvhd-reveal-stagger > * {
  opacity: 1;
  transform: none;
}

.js-motion .mvhd-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring);
}

.js-motion .mvhd-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js-motion .mvhd-reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-spring), transform 0.55s var(--ease-spring);
}


.js-motion .mvhd-reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.js-motion .mvhd-reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.js-motion .mvhd-reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.js-motion .mvhd-reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.js-motion .mvhd-reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
.js-motion .mvhd-reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }
.js-motion .mvhd-reveal-stagger.is-visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.48s; }
.js-motion .mvhd-reveal-stagger.is-visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.56s; }

.js-motion .lp-hero--setup .lp-hero__eyebrow,
.js-motion .lp-hero--setup .lp-hero__title,
.js-motion .lp-hero--setup .lp-hero__tagline,
.js-motion .lp-hero--setup .lp-hero__actions,
.js-motion .lp-hero--setup .lp-hero__portrait,
.js-motion .lp-hero--setup .lp-eval-card {
  opacity: 0;
  transform: translateY(24px);
}

.js-motion .lp-hero--setup .lp-hero__portrait {
  transform: translateX(40px);
}

.js-motion .lp-hero--setup .lp-eval-card {
  transform: translateY(32px);
}

.js-motion .lp-hero--setup.lp-hero--ready .lp-hero__eyebrow {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s var(--ease-spring) 0.1s, transform 0.65s var(--ease-spring) 0.1s;
}

.js-motion .lp-hero--setup.lp-hero--ready .lp-hero__title {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s var(--ease-spring) 0.25s, transform 0.65s var(--ease-spring) 0.25s;
}

.js-motion .lp-hero--setup.lp-hero--ready .lp-hero__tagline {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s var(--ease-spring) 0.4s, transform 0.65s var(--ease-spring) 0.4s;
}

.js-motion .lp-hero--setup.lp-hero--ready .lp-hero__actions {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s var(--ease-spring) 0.55s, transform 0.65s var(--ease-spring) 0.55s;
}

.js-motion .lp-hero--setup.lp-hero--ready .lp-hero__portrait {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-spring) 0.45s, transform 0.8s var(--ease-spring) 0.45s;
}

.js-motion .lp-hero--setup.lp-hero--ready .lp-eval-card {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s var(--ease-spring) 0.7s, transform 0.75s var(--ease-spring) 0.7s;
}

@keyframes mvhd-service-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes mvhd-service-out {
  from { opacity: 1; transform: none; }
  to { opacity: 0; transform: translateY(8px); }
}

@media (max-width: 1199px) {
  .lp-services::before,
  .lp-trust::after,
  .lp-process::after,
  .lp-problems::before,
  .lp-testimonials::before,
  .lp-faq::after,
  .lp-prose--before-form::after {
    display: none;
  }

  .lp-process-grid > * {
    flex: 1 1 280px;
    max-width: 386px;
  }

  /* Ease overlap pressure as viewport narrows before mobile stacking kicks in. */
  .lp-eval-card {
    width: min(84%, 440px);
    bottom: -20px;
    padding: 32px;
  }
}

@media (max-width: 1100px) {
  /* Hero text scales down so copy fits the narrower left column */
  .lp-hero__title .lp-split__lead {
    font-size: clamp(32px, 3.8vw, 44px);
  }

  .lp-hero__title .lp-split__accent {
    font-size: clamp(34px, 4.2vw, 50px);
  }

  .lp-hero__tagline p:first-child {
    font-size: clamp(16px, 1.7vw, 20px);
  }

  .lp-hero__tagline p:last-child {
    font-size: clamp(17px, 1.9vw, 24px);
  }

  .lp-hero__grid {
    grid-template-columns: 1.1fr 0.65fr;
    gap: 32px;
  }

  .lp-hero__aside {
    min-height: 560px;
  }

  .lp-eval-card {
    width: min(75%, 380px);
    bottom: -24px;
    padding: 30px;
  }
}

@media (max-width: 999px) {
  .lp-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-service-card:nth-child(4n) {
    border-right: 1px solid rgba(23, 32, 42, 0.12);
  }

  .lp-service-card:nth-child(2n) {
    border-right: 0;
  }

  .lp-cta-band__actions {
    flex-direction: column;
    gap: 16px;
  }

  .lp-cta-band__or {
    display: none;
  }

  .lp-header__phone-link {
    font-size: 18px;
  }
}

@media (max-width: 1120px) {
  .lp-cta-band--services-clone .services-page__cta-layout {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 980px) {
  .lp-problems-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 1024px: hamburger nav + hero stacks ─────────────────── */
@media (max-width: 1024px) {
  /* Topbar hidden */
  .lp-header__topbar {
    display: none;
  }

  /* Show hamburger */
  .lp-header__toggle {
    display: inline-flex;
  }

  /* Nav becomes dropdown panel */
  .lp-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px var(--landing-shell-pad);
    background: #fff;
    border-top: 1px solid rgba(23, 32, 42, 0.08);
    box-shadow: 0 18px 32px rgba(23, 32, 42, 0.12);
  }

  .lp-header__nav.is-open {
    display: flex;
  }

  .lp-header__nav-link,
  .lp-header__mobile-link {
    font-size: clamp(15px, 4vw, 17px);
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(23, 32, 42, 0.08);
  }

  .lp-header__mobile-link {
    color: var(--theme-text);
  }

  .lp-header__mobile-link--cta {
    margin-top: 8px;
    border-radius: 7px;
    border-bottom: 0;
    background: var(--color-cta-primary);
    color: var(--theme-text);
    padding: 14px 18px;
  }

  .lp-header__main-inner {
    position: relative;
    min-height: 72px;
    gap: 12px;
  }

  /* Hide desktop phone block; mobile phone link in nav panel replaces it */
  .lp-header__phone {
    display: none;
  }

  /* Hero: single column, card in-flow below copy */
  .lp-hero {
    min-height: auto;
    overflow: hidden;
  }

  .lp-hero__grid {
    grid-template-columns: 1fr;
  }

  .lp-hero__aside {
    display: none;
  }

  .lp-eval-card {
    position: static;
    transform: none !important;
    width: 100%;
    margin-top: 8px;
    bottom: auto;
  }

  .lp-hero__content {
    padding: 8px 0 28px;
  }

  /* Services: remove extra padding-top added for the overflowing card */
  .lp-services {
    padding-top: var(--lp-section-y-compact);
  }

  .lp-contact__layout,
  .lp-bio-card {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

/* ── 767px: remaining mobile layout rules ───────────────── */
@media (max-width: 767px) {
  .lp-hero__portrait {
    display: none;
  }

  .lp-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
    padding: 24px 0;
  }

  .lp-services-grid,
  .lp-process-grid,
  .lp-testimonials-grid,
  .lp-bio-card__stats,
  .lp-form-row--half,
  .lp-contact__form-wrap .wpcf7 form,
  .lp-contact-fallback-form {
    grid-template-columns: 1fr;
  }

  .lp-process-grid > * {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .lp-service-card,
  .lp-service-card:nth-child(4n),
  .lp-service-card:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 32, 42, 0.12);
    padding-right: 0;
    margin-left: 0;
    padding-bottom: 20px;
  }

  .lp-section-heading {
    font-size: 30px;
  }

  .lp-process,
  .lp-testimonials,
  .landing-page-shell .book-a-visit {
    padding-top: clamp(36px, 9vw, 56px);
    padding-bottom: clamp(36px, 9vw, 56px);
  }

  .lp-process-grid,
  .lp-testimonials-grid {
    gap: 20px;
    margin-top: 34px;
  }

  .lp-process-card,
  .lp-testimonial-card {
    padding: 28px 24px;
    min-height: auto;
  }

  .lp-process-card__icon-wrap {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .lp-bio-card__photo {
    width: 100%;
    min-height: 320px;
  }

  .lp-bio-card__copy,
  .lp-contact__card {
    padding: 32px 24px;
  }

  .lp-faq-list .accordion__item {
    padding: 0 1rem !important;
  }

  .lp-faq-list .accordion__question {
    padding: 1.125rem 0 !important;
  }

  .lp-faq-list .accordion__answer-text {
    padding-bottom: 1.125rem !important;
  }

  .lp-mobile-sticky-cta {
    display: block;
  }

  .lp-footer__inner {
    grid-template-columns: 1fr;
  }

  .lp-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-footer__legal {
    grid-auto-flow: row;
    justify-content: start;
  }
}

@media (max-width: 599px) {
  .lp-section-heading {
    font-size: 28px;
  }

  .lp-header__brand-copy {
    max-width: 190px;
  }

  .lp-cta-band .lp-shell {
    padding: 28px 20px;
  }

  .lp-cta-band__inner h2 {
    font-size: 26px;
  }

  .lp-cta-band__actions .lp-btn,
  .lp-process__actions .lp-btn {
    width: 100%;
    justify-content: center;
  }

  .lp-cta-band--services-clone {
    padding: 48px 0;
  }

  .lp-cta-band--services-clone .services-page__section-inner {
    width: calc(100% - 32px);
  }

  .lp-cta-band--services-clone .services-page__cta-copy h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.125rem);
  }

  .lp-cta-band--services-clone .services-page__section-intro {
    font-size: 15px;
  }

  .lp-cta-band--services-clone .services-page__cta-actions {
    width: min(360px, 100%);
  }

  .lp-cta-band--services-clone .services-page__button {
    width: 100%;
    min-width: 0;
    padding: 12px 28px;
  }

  .lp-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .lp-modal__dialog {
    max-height: 88vh;
    padding: 28px 22px;
    border-radius: 16px;
  }

  .lp-modal__title {
    font-size: 24px;
  }
}

@media (max-width: 479px) {
  .lp-faq-item__trigger {
    font-size: 16px;
    padding: 20px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-motion .mvhd-reveal,
  .js-motion .mvhd-reveal-stagger > *,
  .js-motion .lp-hero--setup .lp-hero__eyebrow,
  .js-motion .lp-hero--setup .lp-hero__title,
  .js-motion .lp-hero--setup .lp-hero__tagline,
  .js-motion .lp-hero--setup .lp-hero__actions,
  .js-motion .lp-hero--setup .lp-hero__portrait,
  .js-motion .lp-hero--setup .lp-eval-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ── Book-a-visit: hide chat pane on landing page, let form go full-width ── */
.landing-page-shell .book-a-visit__chat-wrap {
  display: none;
}

.landing-page-shell .book-a-visit__body {
  grid-template-columns: 1fr;
}

.landing-page-shell .book-a-visit {
  padding-top: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
}

.landing-page-shell .book-a-visit__inner {
  transition: none;
}

.landing-page-shell .book-a-visit h1,
.landing-page-shell .book-a-visit h2,
.landing-page-shell .book-a-visit h3,
.landing-page-shell .book-a-visit h4,
.landing-page-shell .book-a-visit h5,
.landing-page-shell .book-a-visit h6 {
  color: var(--lp-text-muted-accessible);
}

.lp-footer {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 244, 246, 0.78) 100%);
  border-top: 1px solid rgba(23, 32, 42, 0.08);
  color: var(--theme-text);
}

.lp-footer__inner {
  padding: clamp(42px, 6vw, 72px) 0 clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.8fr) minmax(220px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
}

.lp-footer__brand-link {
  display: inline-block;
  color: var(--theme-text);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
  font-weight: var(--font-weight-bold);
  margin-bottom: 14px;
}

.lp-footer__brand p,
.lp-footer__bottom p {
  margin: 0;
  color: var(--theme-text-muted);
  line-height: 1.7;
}

.lp-footer__brand p {
  max-width: 390px;
}

.lp-footer__nav,
.lp-footer__contact,
.lp-footer__legal {
  display: grid;
  gap: 10px;
}

.lp-footer__nav a,
.lp-footer__contact a,
.lp-footer__legal a {
  color: var(--theme-text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.lp-footer__nav a:hover,
.lp-footer__nav a:focus-visible,
.lp-footer__contact a:hover,
.lp-footer__contact a:focus-visible,
.lp-footer__legal a:hover,
.lp-footer__legal a:focus-visible {
  color: var(--lp-accent-text);
  transform: translateX(2px);
}

.lp-footer__contact span {
  color: var(--theme-text);
  font-weight: var(--font-weight-bold);
}

.lp-footer__social {
  display: flex;
  flex-flow: row wrap;
  gap: 12px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.lp-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(23, 32, 42, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-footer__social a:hover,
.lp-footer__social a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--lp-accent-text);
  box-shadow: 0 6px 16px rgba(23, 32, 42, 0.12);
}

.lp-footer__social img {
  width: 20px;
  height: 20px;
}

.lp-footer__bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(23, 32, 42, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.lp-footer__legal {
  grid-auto-flow: column;
  justify-content: end;
  gap: 18px;
}

/* Graceful prose passthrough — flat-content landing pages */
.lp-prose {
  padding: var(--lp-section-y) 0;
}

.lp-prose--intro {
  padding-top: clamp(24px, 3.2vw, 40px);
  padding-bottom: 0;
}

.lp-prose--intro + .lp-prose {
  padding-top: clamp(28px, 3vw, 44px);
}

.lp-prose--before-form {
  position: relative;
  padding-bottom: 0;
}

.lp-prose--before-form::after {
  left: max(10px, calc((var(--vw, 100vw) - 860px) / 2 - 146px));
  top: -6px;
  width: clamp(158px, 16vw, 240px);
  aspect-ratio: 1;
  background-image: url('/wp-content/uploads/2026/05/Image-Therapy-Clubhouse-Logo.png');
  opacity: 0.11;
}

.lp-prose--before-form + .book-a-visit {
  padding-top: clamp(28px, 3vw, 44px);
}

.lp-prose .lp-shell {
  max-width: 860px;
}

.lp-prose__block + .lp-prose__block {
  margin-top: clamp(28px, 3vw, 44px);
}

.lp-prose__title {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: var(--font-weight-bold);
  line-height: 1.18;
  color: var(--theme-heading, var(--theme-text));
  margin: 0 0 18px;
}

.lp-prose--intro .lp-prose__title {
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.lp-prose__subtitle {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: var(--font-weight-semibold, 600);
  line-height: 1.25;
  color: var(--theme-heading, var(--theme-text));
  margin: 28px 0 12px;
}

.lp-prose__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--theme-text);
  margin: 0 0 16px;
}

.lp-prose__text:last-child {
  margin-bottom: 0;
}

.lp-prose__actions {
  margin-top: clamp(22px, 2.8vw, 32px);
  display: flex;
  justify-content: center;
}

.lp-prose--intro .lp-prose__actions {
  width: 100%;
  justify-content: center;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.lp-prose--intro .lp-prose__actions .lp-btn {
  margin-inline: auto;
}

.lp-prose__content p,
.lp-prose__content ul,
.lp-prose__content ol,
.lp-prose__content blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--theme-text);
  margin: 0 0 16px;
}

.lp-prose__content ul,
.lp-prose__content ol {
  padding-left: 1.25rem;
}

.lp-prose__content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  margin: 0 0 20px;
}

.lp-prose__content p:has(img) {
  margin-bottom: 20px;
}

.lp-prose__content > :last-child {
  margin-bottom: 0;
}
