:root {
  --color-primary: #FEBE54;
  --color-secondary: #163740;
  --color-bg-light: #F6F9F9;
  --color-text-dark: #163740;
  --color-text-muted: #5A767D;
  --color-border: #E2EAEB;
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --shadow-subtle: 0 4px 12px rgba(22, 55, 64, 0.04);
  --fr-dark: #163740;
  --fr-gold: #FEBE54;
  --fr-white: #ffffff;
  --fr-gray: #b0c4c9;
}

body.fnd-pmpro-page {
  margin: 0;
  background: #f6f8f8;
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

.fnd-pmpro-shell,
.fnd-pmpro-shell *,
.fnd-pmpro-shell *::before,
.fnd-pmpro-shell *::after {
  box-sizing: border-box;
}

.fnd-pmpro-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--color-text-dark);
  font-family: var(--font-sans);
}

.fnd-pmpro-shell :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.fnd-pmpro-shell p {
  margin-top: 0;
}

.fnd-pmpro-shell a {
  color: inherit;
}

.fnd-pmpro-shell .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.fnd-pmpro-shell .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fnd-pmpro-shell .screen-reader-text:focus {
  clip: auto !important;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 18px;
  top: 8px;
  left: 8px;
  z-index: 10000;
  background: #fff;
  color: var(--color-secondary);
  border-radius: 6px;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  font-family: var(--font-sans);
}

.site-header a {
  text-decoration: none;
}

.site-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-topbar {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #0f262c;
  color: #fff;
  font-size: 0.8rem;
}

.site-switch {
  color: rgba(255, 255, 255, 0.85);
}

.site-switch a {
  margin-left: 0.25rem;
  color: var(--color-primary, #febe54);
  font-weight: 700;
}

.site-topbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-topbar-links a,
.site-language {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
}

.site-topbar i {
  color: var(--color-primary, #febe54);
}

.site-navbar {
  padding: 1rem 0;
  background: var(--color-secondary, #163740);
  box-shadow: var(--shadow-subtle, 0 3px 10px rgba(0, 0, 0, 0.08));
}

.site-logo {
  display: flex;
  flex: 1;
  align-items: center;
}

.site-logo img {
  display: block;
  width: auto;
  height: 40px;
}

.site-desktop-nav {
  display: flex;
  flex: 2;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.site-nav-link {
  position: relative;
  padding: 0.25rem 0;
  border: 0;
  background: none;
  color: var(--color-bg-light, #f5f7f7);
  font: 600 0.85rem/1.2 var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--color-primary, #febe54);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav-link:hover,
.site-nav-link.active,
.site-nav-dropdown.active > .site-nav-link {
  color: var(--color-primary, #febe54);
}

.site-nav-link:hover::after,
.site-nav-link.active::after,
.site-nav-dropdown.active > .site-nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav-link i {
  margin-left: 0.3rem;
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.site-nav-dropdown {
  position: relative;
}

.site-nav-dropdown:hover .site-nav-link i {
  transform: rotate(180deg);
}

.site-nav-submenu {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1.25rem;
  min-width: 230px;
  padding: 0.65rem 0;
  border-top: 3px solid var(--color-primary, #febe54);
  border-radius: 0 0 8px 8px;
  background: var(--color-secondary, #163740);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
}

.site-nav-submenu::before {
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
  height: 1rem;
  content: '';
}

.site-nav-dropdown:hover .site-nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav-submenu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.site-nav-submenu a i {
  margin-left: 0.4rem;
  color: var(--color-primary, #febe54);
  font-size: 0.65rem;
}

.site-nav-submenu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-primary, #febe54);
}

.site-desktop-cta {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

.site-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0.85rem 1.35rem;
  border-radius: 4px;
  background: var(--color-primary, #febe54);
  color: var(--color-secondary, #163740);
  font: 700 0.8rem/1 var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.25s ease;
}

.site-header-cta > i {
  flex: 0 0 auto;
  line-height: 1;
}

.site-header-cta:hover {
  background: #fff;
  color: var(--color-secondary, #163740);
}

.site-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.site-menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.site-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1005;
  background: rgba(22, 55, 64, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.site-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.site-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: min(100%, 430px);
  height: 100%;
  padding: 2rem;
  overflow-y: auto;
  background: #fff;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-menu-overlay.open .site-menu-drawer {
  transform: translateX(0);
}

.site-menu-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-secondary, #163740);
  font: 700 1.75rem/1 var(--font-heading);
}

.site-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-secondary, #163740);
  border-radius: 10px;
  background: var(--color-primary, #febe54);
  color: var(--color-secondary, #163740);
  cursor: pointer;
}

.site-mobile-nav {
  display: flex;
  flex-direction: column;
}

.site-mobile-nav a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border, #dfe7e8);
  color: var(--color-secondary, #163740);
  font: 700 1rem/1.2 var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-mobile-nav a:hover,
.site-mobile-nav a.active {
  color: #b87918;
}

.site-mobile-accordion {
  border-bottom: 1px solid var(--color-border, #dfe7e8);
}

.site-mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--color-secondary, #163740);
  font: 700 1rem/1.2 var(--font-heading);
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.site-mobile-accordion.active > .site-mobile-accordion-toggle,
.site-mobile-accordion-toggle:hover {
  color: #b87918;
}

.site-mobile-accordion-toggle i {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
}

.site-mobile-accordion.open > .site-mobile-accordion-toggle i {
  transform: rotate(180deg);
}

.site-mobile-submenu {
  padding: 0 0 0.8rem;
}

.site-mobile-submenu[hidden] {
  display: none;
}

.site-mobile-submenu ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-mobile-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 0;
  border-radius: 8px;
  background: #f4f7f7;
  color: var(--color-text-muted, #60777d);
  font-size: 0.86rem;
}

.site-mobile-submenu a::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--color-primary, #febe54);
  content: '';
}

.site-mobile-submenu a:hover,
.site-mobile-submenu a.active {
  background: #fff1d9;
}

.site-mobile-submenu a span {
  flex: 1;
  min-width: 0;
}

.site-mobile-submenu a > i {
  color: #b87918;
  font-size: 0.7rem;
}

.site-mobile-cta {
  width: 100%;
  min-height: 54px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 8px;
}

.site-mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-mobile-contacts strong {
  color: var(--color-secondary, #163740);
  font-size: 1.2rem;
}

.site-mobile-contacts a {
  color: var(--color-text-muted, #60777d);
  font-size: 0.95rem;
}

.site-mobile-contacts i {
  width: 1.25rem;
  color: var(--color-secondary, #163740);
}

.site-area-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem 1rem;
  width: 100%;
  min-height: 170px;
  align-content: end;
  margin-top: auto;
  padding: 1.4rem;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(15, 38, 44, 0.15) 10%, rgba(15, 38, 44, 0.92) 100%),
    url('https://finderoom.it/wp-content/uploads/2026/01/Finderoom-Agency-scaled.jpg') center / cover no-repeat;
  color: #fff;
}

.site-header-host .site-area-card {
  background:
    linear-gradient(180deg, rgba(15, 38, 44, 0.12) 10%, rgba(15, 38, 44, 0.94) 100%),
    url('https://finderoom.it/wp-content/uploads/2025/08/DSC00083-HDR-scaled-1.jpg') center / cover no-repeat;
}

.site-area-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  content: '';
  pointer-events: none;
}

.site-area-card span {
  position: relative;
  z-index: 1;
  grid-column: 1;
  color: var(--color-primary, #febe54);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-area-card strong {
  position: relative;
  z-index: 1;
  grid-column: 1;
  font-size: 0.95rem;
}

.site-area-card i {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  margin-bottom: 0.2rem;
  color: var(--color-primary, #febe54);
}

@media (max-width: 991px) {
  .site-topbar,
  .site-desktop-nav,
  .site-desktop-cta {
    display: none;
  }

  .site-navbar {
    padding: 1rem 0;
  }

  .site-logo img {
    height: 30px;
  }

  .site-menu-toggle {
    display: flex;
  }
}


.fnd-pmpro-main {
  flex: 1;
  width: 100%;
  padding: clamp(42px, 7vw, 90px) 16px;
  background: linear-gradient(145deg, #f6f8f8 0%, #eaf0f1 100%);
}

.fnd-pmpro-main__inner {
  width: min(100%, 620px);
  min-width: 0;
  margin-inline: auto;
}

.fnd-pmpro-login,
.fnd-pmpro-login .pmpro_login_wrap {
  width: 100%;
  max-width: 540px;
  min-width: 0;
  margin: 0 auto;
}

.fnd-pmpro-login .pmpro_card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-color: #d9e2e4;
  box-shadow: 0 18px 55px rgba(22, 55, 64, .12);
}

.fnd-pmpro-login :is(input[type='text'], input[type='email'], input[type='password']) {
  max-width: 100%;
}

.fnd-pmpro-login :is(a, button, input):focus-visible,
.site-header :is(a, button):focus-visible,
.fr-footer a:focus-visible,
.host-valuation-cta a:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.host-valuation-cta {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: var(--fr-dark);
}

.host-valuation-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.host-valuation-inner > div { max-width: 820px; }
.host-valuation-inner span {
  display: block;
  margin-bottom: .6rem;
  color: var(--fr-gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.host-valuation-inner h2 {
  margin: 0 0 .5rem;
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
}
.host-valuation-inner p { margin: 0; color: rgba(255, 255, 255, .68); }
.host-valuation-button {
  display: inline-flex;
  flex: 0 0 auto;
  gap: .75rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.4rem;
  border-radius: 8px;
  background: var(--fr-gold);
  color: var(--fr-dark);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .3s ease;
}
.host-valuation-button:hover { background: white; color: var(--fr-dark); transform: translateY(-2px); }

@media (max-width: 820px) {
  .host-valuation-inner { align-items: stretch; flex-direction: column; gap: 1.75rem; }
  .host-valuation-button { width: 100%; }
}

@media (max-width: 720px) {
  .fnd-pmpro-main { padding: 36px 12px 50px; }
  .fnd-pmpro-login .pmpro_card { padding: 26px 20px; border-radius: 14px; }
  .fnd-pmpro-login .login-actions { flex-wrap: wrap; gap: 12px 18px; }
  .fnd-pmpro-login .login-actions a { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  .fnd-pmpro-shell *, .fnd-pmpro-shell *::before, .fnd-pmpro-shell *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* --- B2B FOOTER --- */
.fr-footer {
  background-color: var(--fr-dark);
  color: var(--fr-gray);
  font-family: var(--font-sans);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.fr-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--fr-dark) 0%, var(--fr-gold) 50%, var(--fr-dark) 100%);
}

.fr-footer-cta {
  margin-bottom: 4rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.fr-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 0;
}

.fr-footer-cta span {
  color: var(--fr-gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fr-footer-cta h2 {
  max-width: 760px;
  margin-top: 0.45rem;
  color: var(--fr-white);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.fr-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px 50px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.fr-footer a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

.fr-footer .fr-btn-yellow {
  color: var(--fr-dark);
}

.fr-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fr-footer-title {
  color: var(--fr-white) !important;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
  text-align: left;
}

.fr-footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.fr-footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 320px;
  text-align: left;
}

.fr-footer-socials {
  display: flex;
  gap: 10px;
}

.fr-footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--fr-white);
  font-size: 16px;
  border: 1px solid transparent;
}

.fr-footer-socials a:hover {
  background-color: transparent;
  color: var(--fr-gold);
  border-color: var(--fr-gold);
  transform: translateY(-3px);
}

.fr-footer-links {
  text-align: left;
}

.fr-footer-links li {
  margin-bottom: 12px;
}

.fr-footer-links a {
  font-size: 15px;
  display: inline-block;
}

.fr-footer-links a:hover {
  color: var(--fr-gold);
  transform: translateX(5px);
}

.fr-footer-contact-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fr-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 15px;
}

.fr-footer-contact-list i {
  color: var(--fr-gold);
  margin-right: 15px;
  margin-top: 5px;
  font-size: 16px;
  min-width: 18px;
}

.fr-footer-contact-list a:hover {
  color: var(--fr-gold);
  text-decoration: underline;
}

.fr-btn-gold-outline {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 25px;
  border: 1px solid var(--fr-gold);
  color: var(--fr-gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.fr-btn-gold-outline:hover {
  background-color: var(--fr-gold);
  color: var(--fr-dark);
  transform: translateY(-2px);
}

.fr-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(0, 0, 0, 0.15);
  padding: 20px 0;
  font-size: 13px;
}

.fr-bottom-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.fr-legal-links a {
  opacity: 0.8;
  font-size: 13px;
}

.fr-legal-links a:hover {
  opacity: 1;
  color: var(--fr-gold);
}

.fr-sep {
  margin: 0 8px;
  opacity: 0.3;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .fr-top-bar {
    display: none;
  }
  
  .fr-desktop-nav, .fr-desktop-actions {
    display: none;
  }
  
  .fr-mobile-toggle.fr-hamburger-btn {
    display: flex;
  }
  
  .fr-logo img {
    height: 30px;
  }
  
  .fr-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .fr-faq-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .fr-footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 30px;
  }
  
  .fr-footer-col {
    text-align: left;
  }
  
  .fr-bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .fr-footer-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .fr-footer-cta .fr-btn-yellow {
    justify-content: center;
  }
}

/* WordPress/Elementor isolation for the Astro-derived B2B shell. */
.fnd-pmpro-shell .site-header {
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
}

.fnd-pmpro-shell .site-header button.site-nav-link,
.fnd-pmpro-shell .site-header button.site-menu-toggle,
.fnd-pmpro-shell .site-header button.site-menu-close,
.fnd-pmpro-shell .site-header button.site-mobile-accordion-toggle {
  min-width: 0;
  min-height: 0;
  border: 0;
  box-shadow: none;
  appearance: none;
}

.fnd-pmpro-shell .site-header button.site-nav-link,
.fnd-pmpro-shell .site-header button.site-mobile-accordion-toggle {
  border-radius: 0;
  background: transparent;
}

.fnd-pmpro-shell .site-header button.site-nav-link:hover,
.fnd-pmpro-shell .site-header button.site-nav-link:focus,
.fnd-pmpro-shell .site-header button.site-mobile-accordion-toggle:hover,
.fnd-pmpro-shell .site-header button.site-mobile-accordion-toggle:focus {
  background: transparent;
}

.fnd-pmpro-shell .site-header button.site-menu-toggle {
  display: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.fnd-pmpro-shell .site-header button.site-menu-close {
  padding: 0;
  border: 2px solid var(--color-secondary);
  border-radius: 10px;
  background: var(--color-primary);
}

.fnd-pmpro-shell .site-menu-overlay {
  pointer-events: none;
}

.fnd-pmpro-shell .site-menu-overlay.open {
  pointer-events: auto;
}

.fnd-pmpro-shell .host-valuation-inner h2,
.fnd-pmpro-shell .fr-footer-title {
  color: #fff !important;
}

@media (max-width: 991px) {
  .fnd-pmpro-shell .site-header button.site-menu-toggle {
    display: flex;
  }
}
.fnd-pmpro-shell .site-header .site-nav-link {
  color: var(--color-bg-light) !important;
}

.fnd-pmpro-shell .site-header .site-nav-link:hover,
.fnd-pmpro-shell .site-header .site-nav-link:focus,
.fnd-pmpro-shell .site-header .site-nav-dropdown:hover > .site-nav-link {
  color: var(--color-primary) !important;
}

.fnd-pmpro-shell .site-header .site-nav-submenu a {
  color: rgba(255, 255, 255, .86) !important;
}

.fnd-pmpro-shell .site-header .site-nav-submenu a:hover,
.fnd-pmpro-shell .site-header .site-nav-submenu a:focus {
  color: var(--color-primary) !important;
}
.fnd-pmpro-shell .site-menu-overlay {
  opacity: 0 !important;
  visibility: hidden !important;
}

.fnd-pmpro-shell .site-menu-overlay.open {
  opacity: 1 !important;
  visibility: visible !important;
}

.fnd-pmpro-shell .site-menu-overlay .site-menu-drawer {
  transform: translateX(100%) !important;
}

.fnd-pmpro-shell .site-menu-overlay.open .site-menu-drawer {
  transform: translateX(0) !important;
}

/* PMPro core and public WordPress pages using the shared Host shell. */
.fnd-pmpro-core-main,
.fnd-public-host-main {
  padding: clamp(40px, 5vw, 72px) 0;
}

.fnd-pmpro-core-main__inner,
.fnd-public-host-main__inner,
.fnd-pmpro-core-content,
.fnd-public-host-content {
  min-width: 0;
}

.fnd-pmpro-core-content {
  width: 100%;
}

.fnd-pmpro-core-content > :is(.pmpro, .pmpro_section, .pmpro_card),
.fnd-pmpro-core-content > form,
.fnd-pmpro-core-content > .pmpro_content_message {
  max-width: 1120px;
  margin-inline: auto;
}

.fnd-pmpro-core-content :is(input, select, textarea) {
  max-width: 100%;
}

.fnd-pmpro-core-content :is(table, .pmpro_table) {
  width: 100%;
  max-width: 100%;
}

.fnd-public-host-content {
  width: min(100%, 1040px);
  margin-inline: auto;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(22, 55, 64, .09);
}

.fnd-public-host-content > :first-child {
  margin-top: 0;
}

.fnd-public-host-content h1 {
  color: var(--color-secondary);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.fnd-public-host-content :is(h2, h3, h4) {
  color: var(--color-secondary);
}

.fnd-public-host-content a {
  color: #9b630d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fnd-public-host-content .cmplz-document {
  max-width: none;
}

@media (max-width: 720px) {
  .fnd-pmpro-core-main,
  .fnd-public-host-main {
    padding: 30px 0 48px;
  }

  .fnd-public-host-content {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .fnd-pmpro-core-content {
    overflow-wrap: anywhere;
  }

  .fnd-pmpro-core-content :is(table, .pmpro_table) {
    display: block;
    overflow-x: auto;
  }
}
/* Custom PMPro-protected Host Suite pages. */
.fnd-pmpro-protected-main {
  padding: clamp(40px, 5vw, 72px) 0;
}

.fnd-pmpro-protected-main__inner {
  min-width: 0;
}

.fnd-protected-host-content {
  width: 100%;
  min-width: 0;
}

.fnd-protected-host-content > section:first-child {
  max-width: 1040px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(22, 55, 64, .09);
}

.fnd-protected-host-content > section:first-child h1 {
  margin-top: 0;
  color: var(--color-secondary);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.fnd-protected-host-content > section:first-child h3,
.fnd-protected-host-content > h3 {
  color: var(--color-secondary);
}

.fnd-protected-host-content > iframe {
  display: block;
  width: 100%;
  min-height: 780px;
  margin: 2rem 0;
  border: 0 !important;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(22, 55, 64, .09);
}

.fnd-protected-host-content .pmpro_content_message,
.fnd-protected-host-content .pmpro_message {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(22, 55, 64, .09);
}

@media (max-width: 720px) {
  .fnd-pmpro-protected-main {
    padding: 30px 0 48px;
  }

  .fnd-protected-host-content > section:first-child {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .fnd-protected-host-content > iframe {
    min-height: 680px;
    border-radius: 12px;
  }
}

/* Google Calendar appointment embed on the protected consultation page. */
body.page-id-41908 .fnd-protected-host-content iframe {
  display: block;
  width: 100%;
  height: 700px;
  min-height: 700px;
}

@media (max-width: 720px) {
  body.page-id-41908 .fnd-protected-host-content iframe {
    height: 500px;
    min-height: 500px;
  }
}

/* Elementor-independent WordPress 404. */
.fnd-error-404-main {
  display: grid;
  min-height: clamp(620px, 72vh, 860px);
  place-items: center;
  padding: clamp(72px, 10vw, 140px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(254, 190, 84, .2), transparent 34%),
    linear-gradient(145deg, #163740 0%, #0d262d 100%);
}

.fnd-error-404-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.fnd-error-404-code {
  margin: 0 0 -28px;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(7rem, 22vw, 13rem);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.08em;
  -webkit-text-stroke: 2px rgba(254, 190, 84, .34);
}

.fnd-error-404-eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.fnd-error-404-inner h1 {
  max-width: 760px;
  margin: 0 auto 20px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.fnd-error-404-lead {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
}

.fnd-error-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.fnd-error-404-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.fnd-error-404-button:hover,
.fnd-error-404-button:focus-visible {
  transform: translateY(-2px);
}

.fnd-error-404-button--primary {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.fnd-error-404-button--primary:hover,
.fnd-error-404-button--primary:focus-visible {
  background: #fff;
  color: var(--color-secondary);
}

.fnd-error-404-button--secondary {
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.fnd-error-404-button--secondary:hover,
.fnd-error-404-button--secondary:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.fnd-error-404-host-link {
  display: grid;
  width: min(100%, 560px);
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: center;
  margin: 44px auto 0;
  padding: 20px 22px;
  border: 1px solid rgba(254, 190, 84, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  text-align: left;
  text-decoration: none;
}

.fnd-error-404-host-link span {
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
}

.fnd-error-404-host-link strong {
  grid-column: 1;
  font-size: 1rem;
}

.fnd-error-404-host-link i {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--color-primary);
}

.fnd-error-404-host-link:hover,
.fnd-error-404-host-link:focus-visible {
  border-color: var(--color-primary);
  color: #fff;
}

@media (max-width: 600px) {
  .fnd-error-404-main {
    min-height: 580px;
    padding: 64px 0 80px;
  }

  .fnd-error-404-code {
    margin-bottom: -14px;
  }

  .fnd-error-404-actions {
    display: grid;
  }

  .fnd-error-404-button {
    width: 100%;
  }

  .fnd-error-404-host-link {
    margin-top: 30px;
    padding: 18px;
  }
}
