@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;700&family=Nunito+Sans:wght@400;700&family=Poppins:wght@400;600&display=swap");

/* Forest Finance Website v0.47.1 — controlled brand component application */
.ffw-site {
  /* Brand Guide v1: canonical colour system. */
  --ff-forest: #364b39;
  --ff-earth: #66513b;
  --ff-stone: #d3cbbf;
  --ff-ivory: #f7f3ea;
  --ff-charcoal: #2d2e2e;
  --ff-white: #ffffff;

  /* Compatibility aliases keep existing components stable until Slice 3. */
  --ff-green: var(--ff-forest);
  --ff-mist: var(--ff-ivory);
  --ff-sage: var(--ff-stone);
  --ff-line: var(--ff-stone);
  --ff-cream: var(--ff-ivory);
  --ff-muted: var(--ff-earth);
  --ff-success: #2f6b47;
  --ff-warning-soft: var(--ff-ivory);

  /* Existing geometry and elevation remain intentionally unchanged in Slice 2. */
  --ff-radius-sm: 14px;
  --ff-radius-md: 22px;
  --ff-radius-lg: 34px;
  --ff-shadow-soft: 0 22px 70px rgba(45, 46, 46, 0.08);
  --ff-shadow-subtle: 0 14px 40px rgba(45, 46, 46, 0.06);

  /* Brand Guide v1: disciplined typography roles. */
  --ff-font-heading: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-font-label: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ff-charcoal);
  background: var(--ff-ivory);
  font-family: var(--ff-font-body);
  line-height: 1.6;
}

.ffw-site *,
.ffw-site *::before,
.ffw-site *::after {
  box-sizing: border-box;
}

.ffw-site a {
  color: inherit;
}

.ffw-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.ffw-section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--ff-white);
}

.ffw-section--mist {
  background: var(--ff-mist);
}

.ffw-section--split {
  background: linear-gradient(180deg, var(--ff-white) 0%, var(--ff-mist) 100%);
}

.ffw-eyebrow {
  margin: 0 0 14px;
  color: var(--ff-green);
  font-family: var(--ff-font-label);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.ffw-site h1,
.ffw-site h2,
.ffw-site h3 {
  margin: 0;
  color: var(--ff-charcoal);
  font-family: var(--ff-font-heading);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.ffw-site h1 {
  max-width: 900px;
  font-size: clamp(2.75rem, 7vw, 5.7rem);
}

.ffw-site h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.ffw-site h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.1;
}

.ffw-site label,
.ffw-site small,
.ffw-site .ffw-card__tag,
.ffw-site .ffw-route-card__tag,
.ffw-site .ffw-price,
.ffw-site .ffw-home-price-card__price,
.ffw-site .ffw-price-card__flag,
.ffw-site .ffw-crm-stepper {
  font-family: var(--ff-font-label);
}

.ffw-site p {
  color: rgba(45, 46, 46, 0.78);
  margin: 0;
}

.ffw-lead {
  max-width: 690px;
  margin-top: 24px !important;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.ffw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ffw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.ffw-btn:hover,
.ffw-btn:focus-visible {
  transform: translateY(-1px);
}

.ffw-btn--primary {
  background: var(--ff-green);
  color: var(--ff-white) !important;
  box-shadow: 0 16px 36px rgba(54, 75, 57, 0.22);
}

.ffw-btn--ghost {
  background: var(--ff-white);
  border-color: var(--ff-line);
  color: var(--ff-charcoal) !important;
}

.ffw-btn--light {
  background: var(--ff-white);
  color: var(--ff-green) !important;
}

.ffw-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 150px) 0 clamp(56px, 8vw, 110px);
  background:
    radial-gradient(circle at 85% 20%, rgba(54, 75, 57, 0.09), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9f5 100%);
}

.ffw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(54, 75, 57, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(54, 75, 57, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 74%, transparent 100%);
}

.ffw-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.ffw-hero__copy {
  min-width: 0;
}

.ffw-hero__visual {
  position: relative;
  display: flex;
  min-height: 440px;
  align-items: center;
  justify-content: center;
}

.ffw-tree-mark {
  width: min(72%, 360px);
  height: auto;
  opacity: 0.12;
  filter: saturate(0.9);
}

.ffw-stack-card {
  position: absolute;
  width: min(86%, 320px);
  padding: 18px 20px;
  border: 1px solid rgba(54, 75, 57, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--ff-shadow-soft);
  color: var(--ff-charcoal);
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.ffw-stack-card--one { top: 88px; left: 0; }
.ffw-stack-card--two { right: 0; top: 190px; }
.ffw-stack-card--three { bottom: 72px; left: 22px; }

.ffw-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.ffw-badges span,
.ffw-pricing-tabs span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(54, 75, 57, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ff-green);
  font-size: 0.88rem;
  font-weight: 800;
}

.ffw-badges span::before,
.ffw-trust-strip span::before,
.ffw-list-panel li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ff-green);
}

.ffw-hero--dark,
.ffw-hero--referral {
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.12), transparent 35%),
    var(--ff-green);
}

.ffw-hero--dark .ffw-eyebrow,
.ffw-hero--referral .ffw-eyebrow,
.ffw-hero--dark h1,
.ffw-hero--referral h1,
.ffw-hero--dark p,
.ffw-hero--referral p {
  color: var(--ff-white);
}

.ffw-hero--dark .ffw-stack-card,
.ffw-hero--referral .ffw-stack-card {
  background: rgba(255,255,255,0.12);
  color: var(--ff-white);
  border-color: rgba(255,255,255,0.18);
}

.ffw-trust-strip {
  border-top: 1px solid var(--ff-line);
  border-bottom: 1px solid var(--ff-line);
  background: var(--ff-white);
}

.ffw-trust-strip .ffw-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  padding: 16px 0;
}

.ffw-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ff-green);
  font-size: 0.92rem;
  font-weight: 850;
}

.ffw-section-head {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.ffw-section-head p:last-child {
  max-width: 720px;
  font-size: 1.08rem;
}

.ffw-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ffw-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 240px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-md);
  background: var(--ff-white);
  box-shadow: 0 16px 44px rgba(45, 46, 46, 0.045);
}

.ffw-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 48px;
  background: var(--ff-mist);
  transform: rotate(18deg);
}

.ffw-card > * {
  position: relative;
  z-index: 1;
}

.ffw-card__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--ff-green);
  mask: url('../img/logo-white.jpeg') center / contain no-repeat;
}

.ffw-card p {
  flex: 1;
}

.ffw-card a {
  color: var(--ff-green) !important;
  font-weight: 850;
  text-decoration: none !important;
}

.ffw-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.ffw-list-panel,
.ffw-copy-card,
.ffw-form-shell,
.ffw-placeholder-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-lg);
  background: var(--ff-white);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-list-panel ul,
.ffw-steps-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ffw-list-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(45, 46, 46, 0.82);
  font-weight: 700;
}

.ffw-list-panel li::before {
  flex: 0 0 7px;
  margin-top: 10px;
}

.ffw-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ffw-process article {
  padding: 30px;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-md);
  background: var(--ff-white);
}

.ffw-process span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--ff-green);
  color: var(--ff-white);
  font-weight: 900;
}

.ffw-process h3,
.ffw-process p {
  margin-top: 14px;
}

.ffw-split-card,
.ffw-cta-band .ffw-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--ff-radius-lg);
}

.ffw-split-card {
  border: 1px solid var(--ff-line);
  background: var(--ff-white);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-split-card p:not(.ffw-eyebrow),
.ffw-cta-band p:not(.ffw-eyebrow) {
  max-width: 700px;
  margin-top: 18px;
}

.ffw-cta-band {
  padding: clamp(56px, 8vw, 92px) 0;
  background: var(--ff-white);
}

.ffw-cta-band .ffw-container {
  background:
    radial-gradient(circle at 92% 16%, rgba(255,255,255,0.16), transparent 30%),
    var(--ff-green);
}

.ffw-cta-band .ffw-eyebrow,
.ffw-cta-band h2,
.ffw-cta-band p {
  color: var(--ff-white) !important;
}

.ffw-placeholder-panel {
  display: grid;
  gap: 18px;
  background: var(--ff-cream);
}

.ffw-pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.ffw-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ffw-price-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-md);
  background: var(--ff-white);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-price {
  color: var(--ff-green) !important;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.ffw-note {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(54,75,57,0.15);
  border-radius: 16px;
  background: var(--ff-warning-soft);
  color: var(--ff-charcoal);
  font-weight: 750;
}

.ffw-faq-wrap {
  max-width: 860px;
}

.ffw-faq {
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid var(--ff-line);
  border-radius: 18px;
  background: var(--ff-white);
}

.ffw-faq summary {
  cursor: pointer;
  color: var(--ff-charcoal);
  font-weight: 850;
}

.ffw-faq p {
  margin-top: 12px;
}

.ffw-form-shell {
  display: grid;
  gap: 16px;
}

.ffw-form-shell label {
  display: grid;
  gap: 8px;
  color: var(--ff-charcoal);
  font-weight: 800;
}

.ffw-form-shell input,
.ffw-form-shell select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--ff-line);
  border-radius: 14px;
  background: var(--ff-mist);
  color: var(--ff-charcoal);
  font: inherit;
}


/* FF-S2 — controlled header, dropdown navigation and footer */
.ffw-skip-link {
  position: fixed;
  left: 20px;
  top: 14px;
  z-index: 100000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ff-charcoal);
  color: var(--ff-white) !important;
  font-weight: 850;
  text-decoration: none !important;
  transition: transform 160ms ease;
}

.ffw-skip-link:focus {
  transform: translateY(0);
}

.ffw-header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(54, 75, 57, 0.12);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.ffw-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.ffw-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none !important;
}

.ffw-brand img {
  display: block;
  width: min(210px, 44vw);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.ffw-primary-nav {
  flex: 1 1 auto;
}

.ffw-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ffw-nav-item {
  position: relative;
}

.ffw-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 12px;
  border-radius: 999px;
  color: rgba(45, 46, 46, 0.82) !important;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none !important;
  transition: background 160ms ease, color 160ms ease;
}

.ffw-nav-link:hover,
.ffw-nav-link:focus-visible,
.ffw-nav-item.is-active > .ffw-nav-link {
  background: var(--ff-mist);
  color: var(--ff-green) !important;
}

.ffw-nav-caret {
  color: var(--ff-green);
  font-size: 0.9rem;
  line-height: 1;
}

.ffw-subnav {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  display: grid;
  width: min(420px, calc(100vw - 32px));
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--ff-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--ff-shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.ffw-nav-item--has-children:hover .ffw-subnav,
.ffw-nav-item--has-children:focus-within .ffw-subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ffw-subnav::before {
  content: "";
  position: absolute;
  inset: -16px 0 auto;
  height: 16px;
}

.ffw-subnav__link {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 16px;
  color: var(--ff-charcoal) !important;
  text-decoration: none !important;
  transition: background 160ms ease, transform 160ms ease;
}

.ffw-subnav__link:hover,
.ffw-subnav__link:focus-visible,
.ffw-subnav__link.is-active {
  background: var(--ff-mist);
  transform: translateY(-1px);
}

.ffw-subnav__link span {
  font-weight: 900;
}

.ffw-subnav__link small {
  color: rgba(45, 46, 46, 0.68);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}

.ffw-header-cta {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ff-green);
  color: var(--ff-white) !important;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(54, 75, 57, 0.18);
}

.ffw-mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--ff-line);
  border-radius: 999px;
  background: var(--ff-white);
  cursor: pointer;
}

.ffw-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ff-green);
  transition: transform 160ms ease, opacity 160ms ease;
}

.ffw-header.is-open .ffw-mobile-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ffw-header.is-open .ffw-mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.ffw-header.is-open .ffw-mobile-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.ffw-footer {
  padding: clamp(58px, 8vw, 96px) 0 28px;
  background: var(--ff-green);
  color: var(--ff-white);
}

.ffw-footer p,
.ffw-footer a,
.ffw-footer h3,
.ffw-footer span {
  color: var(--ff-white) !important;
}

.ffw-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) repeat(4, minmax(145px, 0.65fr));
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.ffw-footer__brand {
  display: grid;
  gap: 20px;
  max-width: 420px;
}

.ffw-footer__brand img {
  display: block;
  width: min(260px, 70vw);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.ffw-footer__brand p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.05rem;
}

.ffw-footer__column h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.ffw-footer__column ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ffw-footer__column a {
  color: rgba(255, 255, 255, 0.76) !important;
  font-weight: 750;
  text-decoration: none !important;
}

.ffw-footer__column a:hover,
.ffw-footer__column a:focus-visible {
  color: var(--ff-white) !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.ffw-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(34px, 6vw, 64px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ffw-footer__trust span {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.86rem;
  font-weight: 850;
}

.ffw-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ffw-footer__bottom p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem;
}

.ffw-footer__placeholder {
  max-width: 560px;
  text-align: right;
}



/* FF-S3 — homepage final layout */
.ffw-home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(54, 75, 57, 0.11), transparent 32%),
    linear-gradient(135deg, var(--ff-white) 0%, var(--ff-mist) 62%, var(--ff-sage) 100%);
}

.ffw-home-hero::before {
  content: "";
  position: absolute;
  inset: auto -80px -160px auto;
  width: min(420px, 54vw);
  height: min(420px, 54vw);
  border: 1px solid rgba(54, 75, 57, 0.09);
  border-radius: 46% 54% 48% 52%;
  background: rgba(255,255,255,0.34);
  transform: rotate(16deg);
}

.ffw-home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.ffw-home-hero__copy {
  max-width: 760px;
}

.ffw-home-dashboard {
  position: relative;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(54, 75, 57, 0.13);
  border-radius: 38px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 30px 80px rgba(45, 46, 46, 0.10);
  backdrop-filter: blur(14px);
}

.ffw-home-dashboard::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(54,75,57,0.08);
  border-radius: 30px;
  pointer-events: none;
}

.ffw-home-dashboard__top,
.ffw-home-dashboard__row,
.ffw-home-dashboard__stats {
  position: relative;
  z-index: 1;
}

.ffw-home-dashboard__top {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
}

.ffw-home-dashboard__top img {
  width: 68px;
  height: 68px;
  padding: 12px;
  border-radius: 22px;
  background: var(--ff-mist);
  object-fit: contain;
}

.ffw-home-dashboard__top h2 {
  max-width: 420px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.02;
}

.ffw-home-dashboard__rows {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.ffw-home-dashboard__row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(54,75,57,0.10);
  border-radius: 18px;
  background: var(--ff-white);
}

.ffw-home-dashboard__row > span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--ff-green);
}

.ffw-home-dashboard__row strong,
.ffw-home-dashboard__row small {
  display: block;
}

.ffw-home-dashboard__row strong {
  color: var(--ff-charcoal);
  font-size: 1rem;
  line-height: 1.2;
}

.ffw-home-dashboard__row small {
  margin-top: 3px;
  color: rgba(45, 46, 46, 0.66);
  font-weight: 650;
  line-height: 1.35;
}

.ffw-home-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ffw-home-dashboard__stats div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: var(--ff-green);
}

.ffw-home-dashboard__stats small,
.ffw-home-dashboard__stats strong {
  color: var(--ff-white) !important;
}

.ffw-home-dashboard__stats small {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}

.ffw-home-dashboard__stats strong {
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.15;
}

.ffw-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.75fr);
  gap: clamp(22px, 5vw, 64px);
  max-width: none;
  align-items: end;
}

.ffw-section-head--split > p {
  margin: 0;
  color: rgba(45, 46, 46, 0.74);
  font-size: 1.05rem;
  font-weight: 650;
}

.ffw-route-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.ffw-route-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 300px;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--ff-line);
  border-radius: 28px;
  background: var(--ff-white);
  color: var(--ff-charcoal) !important;
  text-decoration: none !important;
  box-shadow: 0 18px 44px rgba(45, 46, 46, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ffw-route-card:hover,
.ffw-route-card:focus-visible {
  border-color: rgba(54,75,57,0.3);
  box-shadow: var(--ff-shadow-soft);
  transform: translateY(-3px);
}

.ffw-route-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 128px;
  height: 128px;
  border-radius: 42px;
  background: var(--ff-mist);
  transform: rotate(18deg);
}

.ffw-route-card--featured {
  background: var(--ff-green);
}

.ffw-route-card--featured::after {
  background: rgba(255,255,255,0.10);
}

.ffw-route-card--featured,
.ffw-route-card--featured h3,
.ffw-route-card--featured p,
.ffw-route-card--featured strong,
.ffw-route-card--featured span {
  color: var(--ff-white) !important;
}

.ffw-route-card > * {
  position: relative;
  z-index: 1;
}

.ffw-route-card__number {
  color: var(--ff-green);
  font-size: 0.84rem;
  font-weight: 900;
  opacity: 0.72;
}

.ffw-route-card__tag,
.ffw-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ff-mist);
  color: var(--ff-green) !important;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ffw-route-card--featured .ffw-route-card__tag {
  background: rgba(255,255,255,0.14);
}

.ffw-route-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.04;
}

.ffw-route-card p {
  margin: 0;
  color: rgba(45, 46, 46, 0.72);
  font-size: 0.98rem;
}

.ffw-route-card strong {
  margin-top: auto;
  color: var(--ff-green);
  font-size: 0.95rem;
}

.ffw-card__tag {
  margin: 0;
}

.ffw-proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--ff-radius-lg);
  background: var(--ff-green);
}

.ffw-proof-panel h2,
.ffw-proof-panel h3,
.ffw-proof-panel p,
.ffw-proof-panel .ffw-eyebrow {
  color: var(--ff-white) !important;
}

.ffw-proof-panel__copy p:not(.ffw-eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255,255,255,0.78) !important;
}

.ffw-proof-panel__items {
  display: grid;
  gap: 12px;
}

.ffw-proof-panel__items article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
}

.ffw-proof-panel__items h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.ffw-proof-panel__items p {
  margin: 9px 0 0;
  color: rgba(255,255,255,0.76) !important;
}

.ffw-home-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ffw-home-price-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-md);
  background: var(--ff-white);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-home-price-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.ffw-home-price-card__price {
  margin: 0;
  color: var(--ff-green) !important;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.ffw-home-price-card a {
  color: var(--ff-green) !important;
  font-weight: 900;
  text-decoration: none !important;
}

@media (max-width: 980px) {
  .ffw-home-hero__grid,
  .ffw-section-head--split,
  .ffw-proof-panel {
    grid-template-columns: 1fr;
  }

  .ffw-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ffw-route-card {
    min-height: 250px;
  }

  .ffw-home-price-grid {
    grid-template-columns: 1fr;
  }

  .ffw-header__inner {
    min-height: 74px;
  }

  .ffw-mobile-toggle {
    display: grid;
  }

  .ffw-primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    padding: 14px;
    border: 1px solid var(--ff-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--ff-shadow-soft);
  }

  .ffw-header.is-open .ffw-primary-nav {
    display: block;
  }

  .ffw-nav-list {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .ffw-nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px;
  }

  .ffw-subnav {
    position: static;
    display: grid;
    width: 100%;
    margin: 4px 0 10px;
    padding: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .ffw-subnav::before {
    display: none;
  }

  .ffw-header-cta {
    display: none;
  }

  .ffw-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .ffw-footer__brand {
    grid-column: 1 / -1;
  }

  .ffw-footer__bottom {
    flex-direction: column;
  }

  .ffw-footer__placeholder {
    text-align: left;
  }

  .ffw-hero__grid,
  .ffw-two-col {
    grid-template-columns: 1fr;
  }

  .ffw-hero__visual {
    min-height: 320px;
  }

  .ffw-card-grid,
  .ffw-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ffw-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ffw-home-hero__grid {
    grid-template-columns: 1fr;
  }

  .ffw-home-dashboard__top,
  .ffw-home-dashboard__stats,
  .ffw-route-grid {
    grid-template-columns: 1fr;
  }

  .ffw-route-card {
    min-height: auto;
  }

  .ffw-section-head--split {
    gap: 18px;
  }

  .ffw-header__inner {
    gap: 12px;
  }

  .ffw-brand img {
    width: min(185px, 58vw);
  }

  .ffw-primary-nav {
    left: 14px;
    right: 14px;
  }

  .ffw-footer__top {
    grid-template-columns: 1fr;
  }

  .ffw-footer__trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .ffw-container {
    width: min(100% - 28px, 1180px);
  }

  .ffw-site h1 {
    font-size: clamp(2.35rem, 14vw, 3.8rem);
  }

  .ffw-card-grid,
  .ffw-pricing-grid {
    grid-template-columns: 1fr;
  }

  .ffw-split-card,
  .ffw-cta-band .ffw-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .ffw-actions,
  .ffw-actions .ffw-btn,
  .ffw-split-card .ffw-btn,
  .ffw-cta-band .ffw-btn {
    width: 100%;
  }
}


/* FF-S4 — audience page template polish */
.ffw-hero--audience {
  background:
    radial-gradient(circle at 88% 16%, rgba(54, 75, 57, 0.12), transparent 34%),
    linear-gradient(140deg, var(--ff-white) 0%, var(--ff-mist) 58%, #eef4ea 100%);
}

.ffw-hero--audience .ffw-tree-mark {
  opacity: 0.16;
}

.ffw-section--audience-intro {
  padding-top: clamp(54px, 7vw, 92px);
}

.ffw-audience-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.ffw-audience-intro__copy {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.ffw-audience-intro__copy p:not(.ffw-eyebrow) {
  max-width: 620px;
  font-size: 1.08rem;
  font-weight: 650;
}

.ffw-audience-snapshot {
  display: grid;
  gap: 14px;
}

.ffw-audience-snapshot__item {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--ff-line);
  border-radius: 26px;
  background: var(--ff-white);
  box-shadow: 0 18px 50px rgba(45, 46, 46, 0.055);
}

.ffw-audience-snapshot__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--ff-green);
}

.ffw-audience-snapshot__item span {
  color: var(--ff-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.ffw-audience-snapshot__item strong {
  color: var(--ff-charcoal);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.ffw-audience-snapshot__item p {
  color: rgba(45, 46, 46, 0.72);
  font-weight: 650;
}

.ffw-section--audience-fit .ffw-list-panel {
  box-shadow: none;
}

.ffw-outcome-grid {
  counter-reset: ffw-outcome;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ffw-outcome-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 30px;
  border: 1px solid rgba(54, 75, 57, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.98)),
    var(--ff-mist);
  box-shadow: 0 18px 48px rgba(45, 46, 46, 0.05);
}

.ffw-outcome-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -58px;
  width: 160px;
  height: 160px;
  border-radius: 48px;
  background: var(--ff-mist);
  transform: rotate(17deg);
}

.ffw-outcome-card > * {
  position: relative;
  z-index: 1;
}

.ffw-outcome-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--ff-green);
  color: var(--ff-white);
  font-weight: 900;
}

.ffw-outcome-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.ffw-outcome-card p {
  margin-top: 14px;
  font-weight: 650;
}

.ffw-section--audience-services .ffw-card-grid--service {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ffw-audience-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(54,75,57,0.16);
  border-radius: var(--ff-radius-lg);
  background: var(--ff-green);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-audience-highlight h2,
.ffw-audience-highlight p,
.ffw-audience-highlight .ffw-eyebrow,
.ffw-audience-highlight li {
  color: var(--ff-white) !important;
}

.ffw-audience-highlight p:not(.ffw-eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255,255,255,0.78) !important;
  font-size: 1.08rem;
  font-weight: 650;
}

.ffw-audience-highlight__list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ffw-audience-highlight__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  font-weight: 850;
}

.ffw-audience-highlight__list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--ff-white);
}

.ffw-card-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ffw-card-grid--related .ffw-card {
  min-height: 220px;
}

@media (max-width: 980px) {
  .ffw-audience-intro,
  .ffw-audience-highlight,
  .ffw-outcome-grid,
  .ffw-section--audience-services .ffw-card-grid--service,
  .ffw-card-grid--related {
    grid-template-columns: 1fr;
  }

  .ffw-audience-intro__copy {
    position: static;
  }

  .ffw-outcome-card {
    min-height: auto;
  }
}

/* FF-S5 — service page template polish */
.ffw-hero--service {
  background:
    radial-gradient(circle at 86% 14%, rgba(54, 75, 57, 0.13), transparent 34%),
    linear-gradient(135deg, var(--ff-white) 0%, var(--ff-mist) 54%, #edf4e9 100%);
}

.ffw-hero--service .ffw-tree-mark {
  opacity: 0.18;
}

.ffw-section--service-intro {
  padding-top: clamp(54px, 7vw, 92px);
}

.ffw-service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.ffw-service-intro__copy {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.ffw-service-intro__copy p:not(.ffw-eyebrow) {
  max-width: 650px;
  font-size: 1.08rem;
  font-weight: 650;
}

.ffw-service-snapshot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.ffw-service-snapshot__item {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 24px;
  border: 1px solid rgba(54, 75, 57, 0.14);
  border-radius: 26px;
  background: var(--ff-white);
  box-shadow: 0 18px 50px rgba(45, 46, 46, 0.055);
}

.ffw-service-snapshot__item::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 120px;
  height: 120px;
  border-radius: 38px;
  background: var(--ff-mist);
  transform: rotate(18deg);
}

.ffw-service-snapshot__item > * {
  position: relative;
  z-index: 1;
}

.ffw-service-snapshot__item span {
  color: var(--ff-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.ffw-service-snapshot__item strong {
  color: var(--ff-charcoal);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.ffw-service-snapshot__item p {
  color: rgba(45, 46, 46, 0.72);
  font-weight: 650;
}

.ffw-section--service-fit .ffw-list-panel {
  box-shadow: none;
}

.ffw-section--service-inclusions .ffw-card-grid--service-inclusion,
.ffw-section--services-hub .ffw-card-grid--service-hub {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ffw-card-grid--service-inclusion .ffw-card,
.ffw-card-grid--service-hub .ffw-card {
  min-height: 270px;
}

.ffw-service-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ffw-service-process article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(54, 75, 57, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.98)),
    var(--ff-mist);
  box-shadow: 0 18px 48px rgba(45, 46, 46, 0.05);
}

.ffw-service-process article::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -58px;
  width: 160px;
  height: 160px;
  border-radius: 48px;
  background: var(--ff-mist);
  transform: rotate(17deg);
}

.ffw-service-process article > * {
  position: relative;
  z-index: 1;
}

.ffw-service-process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--ff-green);
  color: var(--ff-white);
  font-weight: 900;
}

.ffw-service-process h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.ffw-service-process p {
  margin-top: 14px;
  font-weight: 650;
}

.ffw-service-software {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(54,75,57,0.16);
  border-radius: var(--ff-radius-lg);
  background:
    radial-gradient(circle at 92% 12%, rgba(255,255,255,0.18), transparent 30%),
    var(--ff-green);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-service-software h2,
.ffw-service-software p,
.ffw-service-software .ffw-eyebrow,
.ffw-service-software li {
  color: var(--ff-white) !important;
}

.ffw-service-software p:not(.ffw-eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255,255,255,0.78) !important;
  font-size: 1.08rem;
  font-weight: 650;
}

.ffw-btn--ghost-on-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
  color: var(--ff-white) !important;
}

.ffw-service-software__list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ffw-service-software__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  font-weight: 850;
}

.ffw-service-software__list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--ff-white);
}

.ffw-section--services-chooser .ffw-card-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .ffw-service-intro,
  .ffw-section--service-inclusions .ffw-card-grid--service-inclusion,
  .ffw-section--services-hub .ffw-card-grid--service-hub,
  .ffw-service-process,
  .ffw-service-software,
  .ffw-section--services-chooser .ffw-card-grid--related {
    grid-template-columns: 1fr;
  }

  .ffw-service-intro__copy {
    position: static;
  }

  .ffw-service-process article,
  .ffw-card-grid--service-inclusion .ffw-card,
  .ffw-card-grid--service-hub .ffw-card {
    min-height: auto;
  }
}

/* FF-S6 — Pricing and packages system */
.ffw-section--pricing-summary {
  padding-top: clamp(44px, 6vw, 78px);
}

.ffw-pricing-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ffw-pricing-summary-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(54, 75, 57, 0.14);
  border-radius: 30px;
  background: var(--ff-white);
  box-shadow: 0 18px 50px rgba(45, 46, 46, 0.055);
}

.ffw-pricing-summary-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -66px;
  width: 170px;
  height: 170px;
  border-radius: 48px;
  background: var(--ff-mist);
  transform: rotate(16deg);
}

.ffw-pricing-summary-card > * {
  position: relative;
  z-index: 1;
}

.ffw-pricing-summary-card span {
  color: var(--ff-green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ffw-pricing-summary-card strong {
  color: var(--ff-charcoal);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.ffw-pricing-summary-card p {
  font-weight: 650;
}

.ffw-section--pricing-routes {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(42px, 6vw, 74px);
}

.ffw-pricing-tabs a,
.ffw-pricing-tabs span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(54, 75, 57, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ff-green) !important;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none !important;
  box-shadow: 0 10px 26px rgba(45, 46, 46, 0.035);
}

.ffw-pricing-tabs a::before,
.ffw-pricing-tabs span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ff-green);
}

.ffw-section--pricing-group {
  scroll-margin-top: 110px;
}

.ffw-section--pricing-group:nth-of-type(even) {
  background: var(--ff-mist);
}

.ffw-section--pricing-group .ffw-section-head p:not(.ffw-eyebrow) {
  max-width: 560px;
  font-weight: 700;
}

.ffw-price-card {
  position: relative;
  overflow: hidden;
  align-content: start;
  min-height: 100%;
  border-color: rgba(54, 75, 57, 0.14);
  border-radius: 30px;
}

.ffw-price-card::after {
  content: "";
  position: absolute;
  right: -64px;
  top: -72px;
  width: 180px;
  height: 180px;
  border-radius: 56px;
  background: var(--ff-mist);
  transform: rotate(16deg);
}

.ffw-price-card > * {
  position: relative;
  z-index: 1;
}

.ffw-price-card--featured {
  border-color: rgba(54, 75, 57, 0.36);
  box-shadow: 0 26px 80px rgba(54, 75, 57, 0.14);
}

.ffw-price-card__flag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ff-green);
  color: var(--ff-white) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ffw-price-card__head {
  display: grid;
  gap: 10px;
}

.ffw-price-card h3 {
  max-width: 300px;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.ffw-price-note {
  margin-top: -8px !important;
  color: rgba(45, 46, 46, 0.62) !important;
  font-size: 0.92rem;
  font-weight: 800;
}

.ffw-price-card__best {
  padding: 16px;
  border: 1px solid rgba(54,75,57,0.12);
  border-radius: 18px;
  background: var(--ff-cream);
  font-weight: 650;
}

.ffw-price-card__best strong {
  color: var(--ff-green);
}

.ffw-price-card__features {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ffw-price-card__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(45,46,46,0.78);
  font-weight: 750;
}

.ffw-price-card__features li::before,
.ffw-pricing-missing li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--ff-green);
}

.ffw-price-card .ffw-btn {
  align-self: end;
  margin-top: 8px;
}

.ffw-table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(54,75,57,0.14);
  border-radius: 28px;
  background: var(--ff-white);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-pricing-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.ffw-pricing-table th,
.ffw-pricing-table td {
  padding: 20px;
  border-bottom: 1px solid var(--ff-line);
  text-align: left;
  vertical-align: top;
}

.ffw-pricing-table thead th {
  background: var(--ff-green);
  color: var(--ff-white);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ffw-pricing-table tbody th {
  color: var(--ff-green);
  font-weight: 900;
}

.ffw-pricing-table tbody td {
  color: rgba(45, 46, 46, 0.76);
  font-weight: 650;
}

.ffw-pricing-table tr:last-child th,
.ffw-pricing-table tr:last-child td {
  border-bottom: 0;
}

.ffw-section--pricing-addons .ffw-card-grid--pricing-addon {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ffw-card-grid--pricing-addon .ffw-card {
  min-height: 250px;
}

.ffw-pricing-missing {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(54,75,57,0.16);
  border-radius: var(--ff-radius-lg);
  background: var(--ff-white);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-pricing-missing p:not(.ffw-eyebrow) {
  margin-top: 18px;
  font-weight: 650;
}

.ffw-pricing-missing ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ffw-pricing-missing li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 15px;
  border: 1px solid rgba(54,75,57,0.12);
  border-radius: 18px;
  background: var(--ff-mist);
  font-weight: 800;
}

@media (max-width: 980px) {
  .ffw-pricing-summary-grid,
  .ffw-section--pricing-addons .ffw-card-grid--pricing-addon,
  .ffw-pricing-missing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ffw-pricing-table {
    min-width: 720px;
  }

  .ffw-price-card,
  .ffw-pricing-summary-card,
  .ffw-pricing-missing {
    border-radius: 24px;
  }
}

/* FF-S7 — contact, consultation and form engine */
.ffw-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-lg);
  background: var(--ff-white);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-form > p:not(.ffw-eyebrow) {
  max-width: 620px;
  color: rgba(45,46,46,0.72);
  font-weight: 650;
}

.ffw-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ffw-form label,
.ffw-form-full,
.ffw-consent {
  display: grid;
  gap: 8px;
  color: var(--ff-charcoal);
  font-weight: 850;
}

.ffw-form input,
.ffw-form select,
.ffw-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(54,75,57,0.18);
  border-radius: 16px;
  background: var(--ff-mist);
  color: var(--ff-charcoal);
  font: inherit;
  font-weight: 650;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ffw-form textarea {
  min-height: 132px;
  resize: vertical;
}

.ffw-form input:focus,
.ffw-form select:focus,
.ffw-form textarea:focus {
  border-color: var(--ff-green);
  background: var(--ff-white);
  box-shadow: 0 0 0 4px rgba(54,75,57,0.1);
}

.ffw-consent {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(54,75,57,0.14);
  border-radius: 18px;
  background: var(--ff-cream);
  font-weight: 700;
}

.ffw-consent input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: var(--ff-green);
}

.ffw-form-smallprint {
  margin: 0;
  color: rgba(45,46,46,0.58) !important;
  font-size: 0.84rem;
  font-weight: 700 !important;
}

.ffw-form-status {
  padding: 14px 16px;
  border: 1px solid rgba(54,75,57,0.18);
  border-radius: 16px;
  background: var(--ff-mist);
  color: var(--ff-green);
  font-weight: 900;
}

.ffw-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ffw-form button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

@media (max-width: 720px) {
  .ffw-form-grid {
    grid-template-columns: 1fr;
  }

  .ffw-form {
    border-radius: 24px;
  }
}

.ffw-consent input[type="checkbox"] {
  padding: 0;
  border-radius: 6px;
  background: var(--ff-white);
}

/* FF-S8 — tracking and thank-you pages */
.ffw-thank-you-hero,
.ffw-referral-hero {
  padding: clamp(72px, 9vw, 128px) 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,0.14), transparent 30%),
    linear-gradient(135deg, var(--ff-green), #1f2f22);
  color: var(--ff-white);
  overflow: hidden;
}

.ffw-thank-you-hero .ffw-eyebrow,
.ffw-referral-hero .ffw-eyebrow {
  color: rgba(255,255,255,0.78);
}

.ffw-thank-you-hero h1,
.ffw-referral-hero h1,
.ffw-thank-you-hero .ffw-lead,
.ffw-referral-hero .ffw-lead,
.ffw-referral-card h2,
.ffw-referral-card p,
.ffw-referral-card li,
.ffw-conversion-panel h2,
.ffw-conversion-panel p,
.ffw-conversion-panel dt,
.ffw-conversion-panel dd {
  color: var(--ff-white);
}

.ffw-thank-you-hero__grid,
.ffw-referral-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.ffw-conversion-panel,
.ffw-referral-card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--ff-radius-lg);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 32px 90px rgba(0,0,0,0.24);
  backdrop-filter: blur(16px);
}

.ffw-conversion-panel__mark {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--ff-white);
  color: var(--ff-green);
  font-size: 1.45rem;
  font-weight: 950;
}

.ffw-conversion-panel dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.ffw-conversion-panel dl div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.ffw-conversion-panel dt {
  color: rgba(255,255,255,0.7);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ffw-conversion-panel dd {
  margin: 0;
  font-weight: 850;
}

.ffw-conversion-panel code {
  display: inline-block;
  max-width: 100%;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: var(--ff-white);
  overflow-wrap: anywhere;
}

.ffw-next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ffw-next-step-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--ff-line);
  border-radius: 26px;
  background: var(--ff-white);
  box-shadow: var(--ff-shadow-subtle);
}

.ffw-next-step-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--ff-green);
  color: var(--ff-white);
  font-weight: 950;
}

.ffw-next-step-card p {
  color: rgba(45,46,46,0.72);
  font-weight: 650;
}

.ffw-download-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(54,75,57,0.16);
  border-radius: var(--ff-radius-lg);
  background: var(--ff-white);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-download-box p {
  max-width: 760px;
  color: rgba(45,46,46,0.72);
  font-weight: 650;
}

.ffw-download-box code {
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--ff-mist);
  color: var(--ff-green);
}

.ffw-source-pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 22px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--ff-white);
  font-weight: 800;
}

.ffw-source-pill span {
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ffw-source-pill strong {
  color: var(--ff-white);
}

.ffw-referral-card ul,
.ffw-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.ffw-referral-card li,
.ffw-check-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 800;
}

.ffw-referral-card li::before,
.ffw-check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
}

.ffw-check-list li {
  color: rgba(45,46,46,0.78);
}

.ffw-card-grid--referral-route {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ffw-card-grid--thank-you-related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ffw-btn--dark-ghost {
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.08);
  color: var(--ff-white) !important;
}

.ffw-btn--dark-ghost:hover {
  background: rgba(255,255,255,0.16);
}

@media (max-width: 980px) {
  .ffw-thank-you-hero__grid,
  .ffw-referral-hero__grid,
  .ffw-next-steps-grid,
  .ffw-card-grid--referral-route,
  .ffw-card-grid--thank-you-related,
  .ffw-download-box {
    grid-template-columns: 1fr;
  }

  .ffw-download-box .ffw-btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .ffw-conversion-panel,
  .ffw-referral-card,
  .ffw-download-box,
  .ffw-next-step-card {
    border-radius: 24px;
  }

  .ffw-conversion-panel dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* FF-S9 — resources/blog styling and migration support */
.ffw-section--resource-featured {
  background: linear-gradient(180deg, var(--ff-white) 0%, var(--ff-mist) 100%);
}

.ffw-resource-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(54, 75, 57, 0.15);
  border-radius: var(--ff-radius-lg);
  background:
    radial-gradient(circle at 92% 10%, rgba(54,75,57,0.08), transparent 28%),
    var(--ff-white);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-resource-featured p {
  max-width: 760px;
  font-weight: 650;
}

.ffw-resource-featured__panel {
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 28px;
  background: var(--ff-green);
  color: var(--ff-white);
  box-shadow: 0 24px 60px rgba(54,75,57,0.24);
}

.ffw-resource-featured__panel span {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ffw-resource-featured__panel strong {
  max-width: 280px;
  color: var(--ff-white);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.ffw-resource-featured__panel p {
  margin-top: 18px;
  color: rgba(255,255,255,0.82);
}

.ffw-section-head--inline {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
}

.ffw-card-grid--resource-topic,
.ffw-card-grid--resource-posts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ffw-card-grid--resource-topic .ffw-card,
.ffw-card-grid--resource-posts .ffw-card {
  min-height: 100%;
}

.ffw-resource-empty {
  padding: clamp(26px, 4vw, 42px);
  border: 1px dashed rgba(54,75,57,0.28);
  border-radius: 28px;
  background: var(--ff-mist);
}

.ffw-resource-empty h3 {
  margin-bottom: 12px;
}

.ffw-resource-migration-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.ffw-migration-list {
  display: grid;
  gap: 14px;
}

.ffw-migration-list article {
  padding: 20px;
  border: 1px solid var(--ff-line);
  border-radius: 22px;
  background: var(--ff-white);
  box-shadow: var(--ff-shadow-subtle);
}

.ffw-migration-list span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ff-mist);
  color: var(--ff-green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ffw-migration-list h3 {
  margin-bottom: 8px;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

.ffw-migration-list p {
  color: rgba(45,46,46,0.74);
  font-weight: 650;
}

@media (max-width: 980px) {
  .ffw-resource-featured,
  .ffw-resource-migration-grid,
  .ffw-card-grid--resource-topic,
  .ffw-card-grid--resource-posts,
  .ffw-section-head--inline {
    grid-template-columns: 1fr;
  }

  .ffw-section-head--inline {
    display: grid;
    align-items: start;
  }
}


/* FF-S10 — referral, QR and partner landing hardening */
.ffw-referral-tracking-grid,
.ffw-partner-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.ffw-referral-url-panel,
.ffw-partner-flow__steps,
.ffw-partner-disclosure {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(54, 75, 57, 0.14);
  border-radius: var(--ff-radius-lg);
  background: var(--ff-white);
  box-shadow: var(--ff-shadow-subtle);
}

.ffw-referral-url-list {
  display: grid;
  gap: 12px;
}

.ffw-referral-url-list--wide {
  max-width: 100%;
}

.ffw-referral-url-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(54, 75, 57, 0.12);
  border-radius: 18px;
  background: rgba(246, 248, 244, 0.8);
}

.ffw-referral-url-row span {
  color: var(--ff-green);
  font-weight: 900;
}

.ffw-referral-url-row code {
  display: block;
  max-width: 100%;
  color: rgba(45, 46, 46, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.ffw-mini-copy {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(54, 75, 57, 0.24);
  border-radius: 999px;
  background: var(--ff-white);
  color: var(--ff-green);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.ffw-mini-copy:hover,
.ffw-mini-copy.is-copied {
  background: var(--ff-green);
  color: var(--ff-white);
}

.ffw-source-summary {
  display: inline-grid;
  gap: 4px;
  margin: 18px 0 4px;
  padding: 12px 14px;
  border: 1px solid rgba(54, 75, 57, 0.14);
  border-radius: 16px;
  background: var(--ff-mist);
}

.ffw-source-summary span {
  color: rgba(45, 46, 46, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ffw-source-summary strong {
  color: var(--ff-green);
  font-weight: 950;
}

.ffw-partner-disclosure {
  margin-top: 22px;
  background: var(--ff-mist);
  color: rgba(45, 46, 46, 0.74);
  font-weight: 700;
}

.ffw-partner-disclosure strong {
  color: var(--ff-green);
}

.ffw-partner-flow__steps {
  display: grid;
  gap: 16px;
}

.ffw-partner-flow__steps article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(54, 75, 57, 0.12);
}

.ffw-partner-flow__steps article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ffw-partner-flow__steps span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--ff-green);
  color: var(--ff-white);
  font-weight: 950;
}

.ffw-partner-flow__steps h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.ffw-partner-flow__steps p {
  grid-column: 2;
  margin: -6px 0 0;
  color: rgba(45, 46, 46, 0.72);
  font-weight: 650;
}

.ffw-card-grid--partner .ffw-card__tag {
  background: rgba(54, 75, 57, 0.08);
  color: var(--ff-green);
}

@media (max-width: 980px) {
  .ffw-referral-tracking-grid,
  .ffw-partner-flow,
  .ffw-referral-url-row {
    grid-template-columns: 1fr;
  }

  .ffw-mini-copy {
    justify-self: start;
  }

  .ffw-partner-flow__steps p {
    grid-column: auto;
  }
}

/* FF-S14 final content controls */
.ffw-final-content-panel {
  margin-top: 18px;
  padding: 24px;
  border-radius: var(--ff-radius-lg);
  background: var(--ff-mist);
  border: 1px solid rgba(54, 75, 57, 0.14);
  box-shadow: var(--ff-shadow-soft);
}

.ffw-final-content-panel h2 {
  margin: 0 0 10px;
  color: var(--ff-charcoal);
}

.ffw-final-content-panel p {
  color: rgba(45, 46, 46, 0.76);
  font-weight: 650;
}

.ffw-final-content-panel a:not(.ffw-btn) {
  color: var(--ff-green);
  font-weight: 850;
}

.ffw-final-content-panel .ffw-btn {
  margin-top: 12px;
}

/* FF-S16A — premium homepage visual reset based on client mockup */
.ffw-site {
  --ff-green: #364b39;
  --ff-charcoal: #2d2e2e;
  --ff-white: #ffffff;
  --ff-soft-cream: #f7f3ec;
  --ff-warm-cream: #fbf8f1;
  --ff-pale-green: #eef3ec;
  --ff-coral: #df725f;
  --ff-coral-dark: #ca5e4b;
  --ff-line: #dedbd2;
  --ff-muted: #656c63;
  --ff-shadow-soft: 0 28px 80px rgba(45, 46, 46, 0.09);
  --ff-shadow-subtle: 0 12px 36px rgba(45, 46, 46, 0.055);
  --ff-font-heading: Georgia, "Times New Roman", ui-serif, serif;
  --ff-font-body: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ff-warm-cream);
}

.ffw-site h1,
.ffw-site h2,
.ffw-site h3 {
  text-transform: none;
}

.ffw-site h1,
.ffw-site h2 {
  font-family: var(--ff-font-heading);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.ffw-site h3 {
  font-family: var(--ff-font-heading);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.ffw-eyebrow {
  color: var(--ff-coral);
  font-family: var(--ff-font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ffw-section {
  background: var(--ff-warm-cream);
}

.ffw-section--mist {
  background: #f3f1ea;
}

.ffw-btn {
  border-radius: 8px;
  font-family: var(--ff-font-body);
  font-weight: 800;
}

.ffw-btn--primary,
.ffw-btn--accent,
.ffw-header-cta {
  background: linear-gradient(180deg, #e98472 0%, var(--ff-coral) 100%);
  color: var(--ff-white) !important;
  box-shadow: 0 16px 34px rgba(223, 114, 95, 0.23);
}

.ffw-btn--primary:hover,
.ffw-btn--accent:hover,
.ffw-header-cta:hover,
.ffw-header-cta:focus-visible {
  background: linear-gradient(180deg, #e17765 0%, var(--ff-coral-dark) 100%);
}

.ffw-btn--ghost {
  background: rgba(255,255,255,0.66);
  border-color: rgba(54,75,57,0.22);
  color: var(--ff-green) !important;
}

.ffw-header {
  border-bottom-color: rgba(54, 75, 57, 0.10);
  background: rgba(247, 243, 236, 0.86);
  backdrop-filter: blur(18px);
}

.ffw-header__inner {
  min-height: 86px;
}

.ffw-brand img {
  width: min(196px, 42vw);
  max-height: 52px;
}

.ffw-nav-link {
  color: rgba(45, 46, 46, 0.76) !important;
  font-weight: 750;
}

.ffw-nav-link:hover,
.ffw-nav-link:focus-visible,
.ffw-nav-item.is-active > .ffw-nav-link {
  background: rgba(54, 75, 57, 0.08);
  color: var(--ff-green) !important;
}

.ffw-home-hero--premium {
  overflow: hidden;
  padding: clamp(70px, 9vw, 126px) 0 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(223, 114, 95, 0.16), transparent 29%),
    linear-gradient(180deg, var(--ff-soft-cream) 0%, #fbf8f1 100%);
}

.ffw-home-hero--premium::before {
  inset: auto -12vw -26vw auto;
  width: min(650px, 72vw);
  height: min(650px, 72vw);
  border: 1px solid rgba(54,75,57,0.06);
  border-radius: 999px;
  background: rgba(54,75,57,0.04);
  transform: none;
}

.ffw-home-hero--premium::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 76px;
  border-top: 1px solid rgba(54,75,57,0.10);
  background: rgba(255,255,255,0.52);
}

.ffw-home-hero--premium .ffw-home-hero__grid {
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  gap: clamp(34px, 6.5vw, 92px);
  align-items: end;
}

.ffw-home-hero--premium .ffw-home-hero__copy {
  max-width: 650px;
  padding-bottom: clamp(58px, 8vw, 118px);
}

.ffw-home-hero--premium h1 {
  max-width: 700px;
  color: var(--ff-green);
  font-size: clamp(3.6rem, 7.2vw, 6.9rem);
  line-height: 0.98;
}

.ffw-home-hero--premium .ffw-lead {
  max-width: 560px;
  margin-top: 24px !important;
  color: rgba(45,46,46,0.78);
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.58;
}

.ffw-badges--premium {
  max-width: 650px;
  margin-top: 34px;
}

.ffw-badges--premium span {
  border-color: rgba(54,75,57,0.13);
  background: rgba(255,255,255,0.54);
  color: rgba(45,46,46,0.78) !important;
  font-weight: 750;
}

.ffw-badges--premium span::before {
  background: var(--ff-green);
}

.ffw-home-scene {
  position: relative;
  min-height: clamp(520px, 52vw, 660px);
  border: 1px solid rgba(54,75,57,0.11);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.38) 100%);
  box-shadow: 0 30px 90px rgba(45,46,46,0.10);
}

.ffw-home-scene__browser {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 28px 28px 0 0;
  background: var(--ff-green);
}

.ffw-home-scene__browser span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.35);
}

.ffw-home-scene__art {
  position: absolute;
  inset: 44px 0 0;
  overflow: hidden;
}

.ffw-home-scene__arch,
.ffw-home-scene__coral {
  position: absolute;
  bottom: -1px;
  border-radius: 220px 220px 0 0;
}

.ffw-home-scene__arch {
  right: 14%;
  width: min(340px, 48%);
  height: 78%;
  background: rgba(54,75,57,0.08);
}

.ffw-home-scene__coral {
  right: -4%;
  width: min(360px, 52%);
  height: 65%;
  background: linear-gradient(180deg, rgba(223,114,95,0.86) 0%, rgba(223,114,95,0.72) 100%);
  mix-blend-mode: multiply;
}

.ffw-home-scene__tree {
  position: absolute;
  right: 22%;
  bottom: 0;
  width: min(300px, 44%);
  height: auto;
  filter: drop-shadow(0 18px 38px rgba(45,46,46,0.16));
}

.ffw-home-consult-card {
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(28px, 5vw, 70px);
  z-index: 2;
  display: grid;
  width: min(340px, calc(100% - 36px));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(54,75,57,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 24px 60px rgba(45,46,46,0.12);
  backdrop-filter: blur(14px);
}

.ffw-home-consult-card .ffw-eyebrow {
  margin-bottom: 0;
}

.ffw-home-consult-card h2 {
  max-width: 280px;
  color: var(--ff-green);
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
}

.ffw-home-consult-card__fields {
  display: grid;
  gap: 8px;
}

.ffw-home-consult-card__fields span {
  display: block;
  min-height: 38px;
  padding: 11px 12px;
  border: 1px solid rgba(54,75,57,0.10);
  border-radius: 8px;
  background: #fbfaf7;
  color: rgba(45,46,46,0.48);
  font-size: 0.82rem;
  font-weight: 700;
}

.ffw-trust-strip {
  border-color: rgba(54,75,57,0.10);
  background: rgba(255,255,255,0.72);
}

.ffw-trust-strip .ffw-container {
  padding: 20px 0;
  gap: 18px clamp(26px, 5vw, 58px);
}

.ffw-trust-strip span {
  color: rgba(45,46,46,0.72);
  font-weight: 750;
}

.ffw-section-head--split h2,
.ffw-section-head h2 {
  color: var(--ff-green);
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
}

.ffw-section-head--split > p,
.ffw-section-head p:last-child {
  color: rgba(45,46,46,0.68);
  font-size: 1rem;
  line-height: 1.65;
}

.ffw-route-grid {
  gap: 18px;
}

.ffw-route-card {
  min-height: 290px;
  border-color: rgba(54,75,57,0.10);
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 16px 38px rgba(45,46,46,0.045);
}

.ffw-route-card::after,
.ffw-card::after {
  background: rgba(54,75,57,0.05);
}

.ffw-route-card--featured {
  background: var(--ff-green);
}

.ffw-route-card__tag,
.ffw-card__tag {
  background: rgba(54,75,57,0.08);
  color: var(--ff-green) !important;
  font-family: var(--ff-font-body);
  font-weight: 800;
}

.ffw-route-card h3,
.ffw-card h3,
.ffw-home-price-card h3,
.ffw-process h3 {
  color: var(--ff-green);
}

.ffw-route-card--featured h3,
.ffw-route-card--featured .ffw-route-card__tag {
  color: var(--ff-white) !important;
}

.ffw-card {
  min-height: 245px;
  border-color: rgba(54,75,57,0.10);
  border-radius: 16px;
  background: rgba(255,255,255,0.74);
  box-shadow: 0 14px 34px rgba(45,46,46,0.04);
}

.ffw-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 99px;
  background: var(--ff-coral);
  mask: none;
}

.ffw-card__icon::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 14px;
  border-radius: 99px;
  background: rgba(255,255,255,0.86);
}

.ffw-card a,
.ffw-route-card strong,
.ffw-home-price-card a {
  color: var(--ff-coral-dark) !important;
}

.ffw-proof-panel {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,255,255,0.10), transparent 36%),
    linear-gradient(135deg, #2d4432 0%, var(--ff-green) 100%);
  box-shadow: 0 22px 70px rgba(54,75,57,0.16);
}

.ffw-proof-panel h2 {
  color: #fff9ef !important;
}

.ffw-proof-panel__items article {
  border-color: rgba(255,255,255,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
}

.ffw-home-price-card,
.ffw-process article,
.ffw-split-card {
  border-color: rgba(54,75,57,0.10);
  border-radius: 16px;
  background: rgba(255,255,255,0.80);
  box-shadow: var(--ff-shadow-subtle);
}

.ffw-home-price-card__price,
.ffw-price {
  color: var(--ff-green) !important;
  font-family: var(--ff-font-body);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.ffw-process span {
  background: var(--ff-green);
}

.ffw-split-card {
  background: #fffefa;
}

.ffw-cta-band {
  background: var(--ff-warm-cream);
}

.ffw-cta-band .ffw-container {
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 18%, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(135deg, #2f4634 0%, var(--ff-green) 100%);
}

.ffw-cta-band .ffw-btn--light {
  background: #fffaf2;
  color: var(--ff-green) !important;
}

.ffw-footer {
  background: #2f4634;
}

@media (max-width: 980px) {
  .ffw-home-hero--premium .ffw-home-hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ffw-home-hero--premium .ffw-home-hero__copy {
    padding-bottom: 22px;
  }

  .ffw-home-scene {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .ffw-home-hero--premium {
    padding-top: 54px;
  }

  .ffw-home-hero--premium h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .ffw-home-scene {
    min-height: 600px;
  }

  .ffw-home-scene__art {
    inset: 44px 0 170px;
  }

  .ffw-home-scene__arch {
    right: 18%;
    width: 62%;
    height: 76%;
  }

  .ffw-home-scene__coral {
    right: -18%;
    width: 70%;
    height: 62%;
  }

  .ffw-home-scene__tree {
    right: 30%;
    width: 42%;
  }

  .ffw-home-consult-card {
    left: 16px;
    right: 16px;
    bottom: 20px;
    width: auto;
  }

  .ffw-section-head--split h2,
  .ffw-section-head h2 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }
}

/* FF-S16B — premium visual system applied across remaining templates */
.ffw-site {
  background:
    radial-gradient(circle at top left, rgba(54, 75, 57, 0.035), transparent 30vw),
    var(--ff-warm-cream);
}

.ffw-page-body {
  background: var(--ff-warm-cream);
}

/* Premium interior heroes */
.ffw-hero:not(.ffw-home-hero) {
  padding: clamp(72px, 9vw, 132px) 0 clamp(58px, 7vw, 104px);
  background:
    radial-gradient(circle at 78% 24%, rgba(223, 114, 95, 0.13), transparent 28%),
    linear-gradient(180deg, var(--ff-soft-cream) 0%, var(--ff-warm-cream) 100%);
}

.ffw-hero:not(.ffw-home-hero)::before {
  opacity: 0;
}

.ffw-hero:not(.ffw-home-hero) .ffw-hero__grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 6vw, 86px);
}

.ffw-hero:not(.ffw-home-hero) h1 {
  max-width: 780px;
  color: var(--ff-green);
  font-size: clamp(3.05rem, 6vw, 6rem);
  line-height: 0.99;
}

.ffw-hero:not(.ffw-home-hero) .ffw-lead {
  max-width: 620px;
  color: rgba(45, 46, 46, 0.74);
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
  line-height: 1.64;
}

.ffw-hero:not(.ffw-home-hero) .ffw-hero__visual {
  min-height: clamp(360px, 40vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(54, 75, 57, 0.105);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 26px 72px rgba(45, 46, 46, 0.08);
}

.ffw-hero:not(.ffw-home-hero) .ffw-hero__visual::before,
.ffw-hero:not(.ffw-home-hero) .ffw-hero__visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  pointer-events: none;
}

.ffw-hero:not(.ffw-home-hero) .ffw-hero__visual::before {
  right: 22%;
  width: min(290px, 48%);
  height: 74%;
  border-radius: 190px 190px 0 0;
  background: rgba(54, 75, 57, 0.08);
}

.ffw-hero:not(.ffw-home-hero) .ffw-hero__visual::after {
  right: -10%;
  width: min(310px, 54%);
  height: 60%;
  border-radius: 190px 190px 0 0;
  background: rgba(223, 114, 95, 0.72);
  mix-blend-mode: multiply;
}

.ffw-hero:not(.ffw-home-hero) .ffw-tree-mark {
  position: relative;
  z-index: 2;
  width: min(250px, 42%);
  opacity: 1;
  filter: drop-shadow(0 18px 38px rgba(45, 46, 46, 0.14));
}

.ffw-hero:not(.ffw-home-hero) .ffw-stack-card {
  z-index: 3;
  width: min(240px, 62%);
  padding: 14px 16px;
  border-color: rgba(54, 75, 57, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ff-green);
  font-family: var(--ff-font-body);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(45, 46, 46, 0.08);
}

.ffw-hero:not(.ffw-home-hero) .ffw-stack-card--one { top: 19%; left: 7%; }
.ffw-hero:not(.ffw-home-hero) .ffw-stack-card--two { top: 46%; right: 6%; }
.ffw-hero:not(.ffw-home-hero) .ffw-stack-card--three { bottom: 14%; left: 10%; }

.ffw-hero:not(.ffw-home-hero) .ffw-badges span {
  border-color: rgba(54, 75, 57, 0.12);
  background: rgba(255, 255, 255, 0.56);
  color: rgba(45, 46, 46, 0.72) !important;
  font-weight: 750;
}

.ffw-hero:not(.ffw-home-hero) .ffw-badges span::before {
  background: var(--ff-green);
}

/* Dark/conversion heroes keep the same premium language without the old heavy dashboard feel. */
.ffw-thank-you-hero,
.ffw-referral-hero,
.ffw-hero--dark,
.ffw-hero--referral {
  background:
    radial-gradient(circle at 86% 18%, rgba(223, 114, 95, 0.28), transparent 30%),
    linear-gradient(135deg, #2f4634 0%, var(--ff-green) 100%);
}

.ffw-thank-you-hero h1,
.ffw-referral-hero h1,
.ffw-hero--dark h1,
.ffw-hero--referral h1 {
  font-family: var(--ff-font-heading);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.ffw-thank-you-hero .ffw-eyebrow,
.ffw-referral-hero .ffw-eyebrow,
.ffw-hero--dark .ffw-eyebrow,
.ffw-hero--referral .ffw-eyebrow {
  color: #f1b1a4 !important;
}

/* Premium shared card system */
.ffw-list-panel,
.ffw-copy-card,
.ffw-form,
.ffw-final-content-panel,
.ffw-placeholder-panel,
.ffw-resource-empty,
.ffw-referral-url-panel,
.ffw-partner-flow__steps,
.ffw-partner-disclosure,
.ffw-table-scroll,
.ffw-download-box,
.ffw-conversion-panel,
.ffw-referral-card,
.ffw-next-step-card {
  border-color: rgba(54, 75, 57, 0.105);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(45, 46, 46, 0.055);
}

.ffw-copy-card h2,
.ffw-list-panel h2,
.ffw-placeholder-panel h2,
.ffw-final-content-panel h2,
.ffw-resource-empty h3 {
  color: var(--ff-green);
}

.ffw-list-panel li::before,
.ffw-price-card__features li::before,
.ffw-pricing-missing li::before,
.ffw-check-list li::before {
  background: var(--ff-coral);
}

.ffw-card:hover,
.ffw-route-card:hover,
.ffw-home-price-card:hover,
.ffw-price-card:hover,
.ffw-outcome-card:hover,
.ffw-service-process article:hover,
.ffw-pricing-summary-card:hover,
.ffw-next-step-card:hover {
  border-color: rgba(223, 114, 95, 0.24);
  box-shadow: 0 24px 70px rgba(45, 46, 46, 0.075);
}

/* Audience pages */
.ffw-section--audience-intro,
.ffw-section--service-intro,
.ffw-section--pricing-summary,
.ffw-section--resource-featured {
  background: linear-gradient(180deg, var(--ff-warm-cream) 0%, #fffefa 100%);
}

.ffw-audience-intro__copy h2,
.ffw-service-intro__copy h2,
.ffw-section--pricing-routes h2,
.ffw-section--services-hub h2,
.ffw-section--resource-featured h2 {
  color: var(--ff-green);
}

.ffw-audience-snapshot__item,
.ffw-service-snapshot__item,
.ffw-outcome-card,
.ffw-service-process article,
.ffw-pricing-summary-card {
  border-color: rgba(54, 75, 57, 0.105);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(45, 46, 46, 0.045);
}

.ffw-audience-snapshot__item::before {
  width: 4px;
  background: var(--ff-coral);
}

.ffw-audience-snapshot__item span,
.ffw-service-snapshot__item span,
.ffw-pricing-summary-card span {
  color: var(--ff-coral-dark);
}

.ffw-audience-snapshot__item strong,
.ffw-service-snapshot__item strong,
.ffw-pricing-summary-card strong,
.ffw-outcome-card h3,
.ffw-service-process h3 {
  color: var(--ff-green);
  font-family: var(--ff-font-heading);
  font-weight: 600;
}

.ffw-outcome-card span,
.ffw-service-process span,
.ffw-next-step-card span {
  background: var(--ff-green);
}

.ffw-audience-highlight,
.ffw-service-software,
.ffw-pricing-missing {
  border-color: rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 20%, rgba(223, 114, 95, 0.18), transparent 32%),
    linear-gradient(135deg, #2f4634 0%, var(--ff-green) 100%);
  box-shadow: 0 24px 72px rgba(54, 75, 57, 0.15);
}

.ffw-pricing-missing h2,
.ffw-pricing-missing p,
.ffw-pricing-missing .ffw-eyebrow,
.ffw-pricing-missing li {
  color: var(--ff-white) !important;
}

.ffw-pricing-missing li {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.ffw-pricing-missing li::before {
  background: var(--ff-coral);
}

/* Service and services hub pages */
.ffw-section--service-fit,
.ffw-section--audience-fit,
.ffw-section--services-chooser,
.ffw-section--pricing-routes,
.ffw-section--pricing-comparison,
.ffw-section--mist {
  background: #f3f1ea;
}

.ffw-service-snapshot__item::after,
.ffw-pricing-summary-card::after,
.ffw-price-card::after,
.ffw-outcome-card::after,
.ffw-service-process article::after,
.ffw-card::after,
.ffw-route-card::after {
  background: rgba(54, 75, 57, 0.045);
}

.ffw-section--service-inclusions .ffw-card,
.ffw-section--services-hub .ffw-card,
.ffw-section--audience-services .ffw-card,
.ffw-section--pricing-addons .ffw-card,
.ffw-card-grid--resource-topic .ffw-card,
.ffw-card-grid--resource-posts .ffw-card,
.ffw-card-grid--partner .ffw-card {
  background: rgba(255, 255, 255, 0.80);
}

/* Pricing */
.ffw-price-card {
  border-color: rgba(54, 75, 57, 0.105);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(45, 46, 46, 0.055);
}

.ffw-price-card--featured {
  border-color: rgba(223, 114, 95, 0.34);
  box-shadow: 0 28px 80px rgba(223, 114, 95, 0.14);
}

.ffw-price-card__flag {
  background: var(--ff-coral);
}

.ffw-price-card__best {
  border-color: rgba(54, 75, 57, 0.10);
  background: #fffaf2;
}

.ffw-pricing-tabs a,
.ffw-pricing-tabs span {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(54, 75, 57, 0.13);
  color: var(--ff-green) !important;
}

.ffw-pricing-tabs a::before,
.ffw-pricing-tabs span::before {
  background: var(--ff-coral);
}

.ffw-pricing-table thead th {
  background: var(--ff-green);
}

.ffw-pricing-table tbody th {
  color: var(--ff-green);
}

/* Contact and consultation */
.ffw-form {
  gap: 16px;
}

.ffw-form h2 {
  color: var(--ff-green);
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.ffw-form input,
.ffw-form select,
.ffw-form textarea,
.ffw-form-shell input,
.ffw-form-shell select {
  border-color: rgba(54, 75, 57, 0.13);
  border-radius: 8px;
  background: #fffdf8;
}

.ffw-form input:focus,
.ffw-form select:focus,
.ffw-form textarea:focus {
  border-color: var(--ff-coral);
  box-shadow: 0 0 0 4px rgba(223, 114, 95, 0.13);
}

.ffw-consent {
  border-color: rgba(54, 75, 57, 0.10);
  border-radius: 10px;
  background: #fffaf2;
}

.ffw-form-status {
  border-color: rgba(223, 114, 95, 0.22);
  background: rgba(223, 114, 95, 0.08);
  color: var(--ff-coral-dark);
}

/* Resources */
.ffw-resource-featured {
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 16%, rgba(223,114,95,0.11), transparent 30%),
    rgba(255, 255, 255, 0.78);
}

.ffw-resource-featured__panel {
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(223,114,95,0.24), transparent 30%),
    linear-gradient(135deg, #2f4634 0%, var(--ff-green) 100%);
}

.ffw-migration-list article {
  border-color: rgba(54, 75, 57, 0.105);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.ffw-migration-list span {
  background: rgba(223, 114, 95, 0.10);
  color: var(--ff-coral-dark);
}

/* Referral / QR / partner pages */
.ffw-referral-card,
.ffw-conversion-panel {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.ffw-referral-url-row,
.ffw-source-summary {
  border-color: rgba(54, 75, 57, 0.105);
  border-radius: 10px;
  background: #fffdf8;
}

.ffw-referral-url-row span,
.ffw-source-summary strong,
.ffw-partner-disclosure strong {
  color: var(--ff-coral-dark);
}

.ffw-mini-copy {
  border-color: rgba(223, 114, 95, 0.26);
  color: var(--ff-coral-dark);
}

.ffw-mini-copy:hover,
.ffw-mini-copy.is-copied {
  background: var(--ff-coral);
  color: var(--ff-white);
}

.ffw-partner-flow__steps span {
  background: var(--ff-coral);
}

/* Trust strip and CTA consistency */
.ffw-trust-strip span::before,
.ffw-badges span::before {
  background: var(--ff-coral);
}

.ffw-cta-band .ffw-eyebrow {
  color: #f1b1a4 !important;
}

.ffw-cta-band .ffw-container,
.ffw-split-card,
.ffw-proof-panel,
.ffw-audience-highlight,
.ffw-service-software {
  overflow: hidden;
}

/* Mobile polish for the premium template families */
@media (max-width: 980px) {
  .ffw-hero:not(.ffw-home-hero) .ffw-hero__grid {
    grid-template-columns: 1fr;
  }

  .ffw-hero:not(.ffw-home-hero) .ffw-hero__visual {
    min-height: 380px;
  }

  .ffw-pricing-missing,
  .ffw-audience-highlight,
  .ffw-service-software {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ffw-hero:not(.ffw-home-hero) {
    padding-top: 54px;
  }

  .ffw-hero:not(.ffw-home-hero) h1 {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .ffw-hero:not(.ffw-home-hero) .ffw-hero__visual {
    min-height: 350px;
    border-radius: 20px;
  }

  .ffw-hero:not(.ffw-home-hero) .ffw-stack-card {
    width: min(220px, 70%);
    font-size: 0.82rem;
  }

  .ffw-list-panel,
  .ffw-copy-card,
  .ffw-form,
  .ffw-final-content-panel,
  .ffw-placeholder-panel,
  .ffw-resource-featured,
  .ffw-resource-featured__panel,
  .ffw-price-card,
  .ffw-pricing-summary-card,
  .ffw-outcome-card,
  .ffw-service-process article,
  .ffw-audience-snapshot__item,
  .ffw-service-snapshot__item {
    border-radius: 14px;
  }
}


/* FF-S17 — mockup-accurate homepage rebuild using approved client direction */
.ffw-site {
  --ff-soft-cream: #f7f3ec;
  --ff-warm-cream: #fbf8f1;
  --ff-coral: #df725f;
  --ff-coral-dark: #ca5e4b;
  --ff-font-heading: "Fraunces", Georgia, "Times New Roman", ui-serif, serif;
  --ff-font-body: "Inter", Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ff-warm-cream) !important;
}

.ffw-site .ffw-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(251, 248, 241, 0.92) !important;
  border-bottom: 1px solid rgba(54, 75, 57, 0.10) !important;
  backdrop-filter: blur(18px);
}

.ffw-site .ffw-header__inner {
  min-height: 82px;
}

.ffw-site .ffw-brand img {
  width: min(188px, 42vw) !important;
  max-height: 48px;
}

.ffw-site .ffw-primary-nav {
  max-width: 520px;
}

.ffw-site .ffw-nav-list {
  gap: 14px;
}

.ffw-site .ffw-nav-link {
  padding: 10px 8px;
  background: transparent !important;
  color: rgba(45, 46, 46, 0.78) !important;
  font-size: 0.98rem;
  font-weight: 600;
}

.ffw-site .ffw-nav-link:hover,
.ffw-site .ffw-nav-link:focus-visible,
.ffw-site .ffw-nav-item.is-active > .ffw-nav-link {
  color: var(--ff-green) !important;
}

.ffw-site .ffw-header-cta,
.ffw-site .ffw-btn--primary,
.ffw-site .ffw-btn--accent {
  border: 0 !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #e7816e 0%, var(--ff-coral) 100%) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(223, 114, 95, 0.24) !important;
}

.ffw-site .ffw-header-cta {
  min-height: 48px;
  padding: 14px 22px;
}

.ffw-site .ffw-btn--ghost {
  border-radius: 8px !important;
  border-color: rgba(54, 75, 57, 0.30) !important;
  background: rgba(255, 255, 255, 0.60) !important;
  color: var(--ff-green) !important;
  box-shadow: none !important;
}

.ffw-site .ffw-home-hero--mockup {
  position: relative;
  padding: clamp(68px, 8vw, 118px) 0 0 !important;
  min-height: clamp(640px, 74vw, 820px);
  background:
    radial-gradient(circle at 76% 30%, rgba(223, 114, 95, 0.13), transparent 28%),
    linear-gradient(180deg, var(--ff-soft-cream) 0%, #fbf8f1 100%) !important;
}

.ffw-site .ffw-home-hero--mockup::before {
  content: none !important;
}

.ffw-site .ffw-home-hero--mockup::after {
  height: 96px !important;
  border-top: 1px solid rgba(54, 75, 57, 0.11) !important;
  background: rgba(255, 255, 255, 0.62) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.96fr) minmax(450px, 1.04fr) !important;
  align-items: end !important;
  gap: clamp(36px, 5.8vw, 86px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
  max-width: 650px !important;
  padding-bottom: clamp(128px, 14vw, 210px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-eyebrow,
.ffw-site .ffw-section--mockup-services .ffw-eyebrow,
.ffw-site .ffw-section--mockup-growth .ffw-eyebrow {
  color: var(--ff-coral) !important;
  font-family: var(--ff-font-body) !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.ffw-site .ffw-home-hero--mockup h1 {
  max-width: 720px !important;
  color: var(--ff-green) !important;
  font-family: var(--ff-font-heading) !important;
  font-size: clamp(4.1rem, 6.1vw, 6.9rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.065em !important;
  line-height: 0.98 !important;
  text-transform: none !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-lead {
  max-width: 550px !important;
  margin-top: 30px !important;
  color: rgba(45, 46, 46, 0.74) !important;
  font-family: var(--ff-font-body) !important;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem) !important;
  font-weight: 400 !important;
  line-height: 1.66 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-actions {
  margin-top: 34px !important;
  gap: 14px;
}

.ffw-site .ffw-home-hero--mockup .ffw-badges--premium {
  display: none !important;
}

.ffw-site .ffw-home-scene {
  min-height: clamp(545px, 52vw, 710px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ffw-site .ffw-home-scene__browser {
  display: none !important;
}

.ffw-site .ffw-home-scene__art {
  position: absolute !important;
  inset: 0 !important;
  overflow: visible !important;
}

.ffw-site .ffw-home-scene__arch {
  right: 28% !important;
  bottom: 0 !important;
  width: min(455px, 58%) !important;
  height: 86% !important;
  border-radius: 280px 280px 0 0 !important;
  background: rgba(54, 75, 57, 0.075) !important;
}

.ffw-site .ffw-home-scene__coral {
  right: -4% !important;
  bottom: 0 !important;
  width: min(450px, 59%) !important;
  height: 73% !important;
  border-radius: 290px 290px 0 0 !important;
  background: linear-gradient(180deg, rgba(231, 130, 111, 0.92) 0%, rgba(223, 114, 95, 0.78) 100%) !important;
  mix-blend-mode: multiply !important;
}

.ffw-site .ffw-home-scene__tree {
  right: 24% !important;
  bottom: 0 !important;
  z-index: 2 !important;
  width: min(355px, 45%) !important;
  max-height: 86% !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  filter: drop-shadow(0 22px 42px rgba(45, 46, 46, 0.20)) !important;
}

.ffw-site .ffw-trust-strip {
  margin: 0 !important;
  border-top: 1px solid rgba(54, 75, 57, 0.11) !important;
  border-bottom: 1px solid rgba(54, 75, 57, 0.10) !important;
  background: rgba(255, 255, 255, 0.68) !important;
}

.ffw-site .ffw-trust-strip .ffw-container {
  min-height: 90px;
  padding: 22px 0 !important;
  justify-content: space-around !important;
  gap: 22px 46px !important;
}

.ffw-site .ffw-trust-strip span {
  max-width: 180px;
  color: rgba(45, 46, 46, 0.70) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.ffw-site .ffw-trust-strip span::before {
  width: 12px !important;
  height: 12px !important;
  background: transparent !important;
  border: 2px solid var(--ff-green) !important;
}

.ffw-site .ffw-section--mockup-services {
  padding: clamp(72px, 8vw, 112px) 0 42px !important;
  background: #fffefa !important;
}

.ffw-site .ffw-home-services-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.ffw-site .ffw-home-services-intro h2 {
  color: var(--ff-green) !important;
  font-family: var(--ff-font-heading) !important;
  font-size: clamp(2.7rem, 4.4vw, 4.4rem) !important;
  font-weight: 500 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.055em !important;
  text-transform: none !important;
}

.ffw-site .ffw-card-grid--home-feature-service {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card {
  min-height: 315px !important;
  padding: 34px 30px !important;
  border: 1px solid rgba(54, 75, 57, 0.14) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: none !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card::after {
  content: none !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card__icon {
  width: 56px !important;
  height: 56px !important;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ee927f 0%, var(--ff-coral) 100%) !important;
  box-shadow: 0 14px 26px rgba(223,114,95,0.22);
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card:nth-child(3) .ffw-card__icon {
  background: var(--ff-green) !important;
  box-shadow: 0 14px 26px rgba(54,75,57,0.18);
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card h3 {
  color: var(--ff-green) !important;
  font-family: var(--ff-font-heading) !important;
  font-size: 1.72rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;
  text-transform: none !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card p:not(.ffw-card__tag) {
  color: rgba(45,46,46,0.74) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card__tag {
  display: none !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card a {
  margin-top: auto;
  color: var(--ff-coral-dark) !important;
  font-weight: 800 !important;
}

.ffw-site .ffw-section--mockup-growth {
  padding: 44px 0 clamp(72px, 8vw, 112px) !important;
  background: #fffefa !important;
}

.ffw-site .ffw-growth-band {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(240px, 0.9fr) auto;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(34px, 4vw, 54px) !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #2f4634 0%, var(--ff-green) 100%) !important;
  box-shadow: 0 26px 70px rgba(54,75,57,0.16);
}

.ffw-site .ffw-growth-band h2 {
  max-width: 450px !important;
  color: #fff9ef !important;
  font-family: var(--ff-font-heading) !important;
  font-size: clamp(2.25rem, 3.4vw, 3.7rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.055em !important;
  line-height: 1.04 !important;
  text-transform: none !important;
}

.ffw-site .ffw-growth-band h2 em,
.ffw-site .ffw-growth-band h2 span {
  color: #f2a092 !important;
}

.ffw-site .ffw-growth-band p {
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.7;
}

.ffw-site .ffw-section--mockup-routes {
  background: var(--ff-warm-cream) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card {
  min-height: 270px !important;
  padding: 26px 22px !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.ffw-site .ffw-section-head--split h2,
.ffw-site .ffw-section-head h2,
.ffw-site .ffw-home-price-card h3,
.ffw-site .ffw-process h3 {
  text-transform: none !important;
}

.ffw-site .ffw-footer {
  background: #2f4634 !important;
}

@media (max-width: 1080px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid,
  .ffw-site .ffw-home-services-layout,
  .ffw-site .ffw-growth-band {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    padding-bottom: 28px !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: 540px !important;
  }

  .ffw-site .ffw-card-grid--home-feature-service,
  .ffw-site .ffw-section--mockup-routes .ffw-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-home-hero--mockup {
    min-height: 0 !important;
    padding-top: 54px !important;
  }

  .ffw-site .ffw-home-hero--mockup::after {
    height: 60px !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem) !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: 390px !important;
  }

  .ffw-site .ffw-home-scene__arch {
    right: 26% !important;
    width: 54% !important;
    height: 84% !important;
  }

  .ffw-site .ffw-home-scene__coral {
    right: -18% !important;
    width: 66% !important;
    height: 68% !important;
  }

  .ffw-site .ffw-home-scene__tree {
    right: 29% !important;
    width: 44% !important;
    max-height: 88% !important;
  }

  .ffw-site .ffw-trust-strip .ffw-container {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .ffw-site .ffw-card-grid--home-feature-service,
  .ffw-site .ffw-section--mockup-routes .ffw-route-grid {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-growth-band {
    padding: 30px 24px !important;
  }
}


/* FF-S18 — screenshot-led mockup calibration pass */
.ffw-site {
  --ff-page-max: 1360px;
  --ff-soft-paper: #fffdf8;
  --ff-cream-deep: #f4efe5;
  --ff-section-cream: #faf7ef;
}

.ffw-container {
  width: min(var(--ff-page-max), calc(100% - 56px));
}

.ffw-site .ffw-header__inner {
  min-height: 76px;
}

.ffw-site .ffw-header-cta,
.ffw-site .ffw-btn {
  font-family: var(--ff-font-body) !important;
  font-size: 0.95rem !important;
  letter-spacing: -0.01em !important;
}

.ffw-site .ffw-home-hero--mockup {
  min-height: clamp(610px, 65vw, 760px) !important;
  padding-top: clamp(56px, 6.4vw, 92px) !important;
  background:
    radial-gradient(circle at 74% 31%, rgba(223, 114, 95, 0.10), transparent 30%),
    linear-gradient(180deg, #fbf8f1 0%, #f9f4eb 100%) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
  grid-template-columns: minmax(410px, 0.88fr) minmax(520px, 1.12fr) !important;
  gap: clamp(44px, 6.8vw, 112px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
  padding-bottom: clamp(112px, 12vw, 180px) !important;
}

.ffw-site .ffw-home-hero--mockup h1 {
  max-width: 620px !important;
  font-size: clamp(4.6rem, 6.15vw, 7.35rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.075em !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-lead {
  max-width: 500px !important;
  margin-top: 28px !important;
  font-size: clamp(1.05rem, 1.22vw, 1.22rem) !important;
  line-height: 1.72 !important;
}

.ffw-site .ffw-home-scene {
  min-height: clamp(500px, 47vw, 660px) !important;
}

.ffw-site .ffw-home-scene__arch {
  right: 29% !important;
  width: min(500px, 60%) !important;
  height: 88% !important;
  background: rgba(54, 75, 57, 0.065) !important;
}

.ffw-site .ffw-home-scene__coral {
  right: -4% !important;
  width: min(510px, 60%) !important;
  height: 77% !important;
  background: linear-gradient(180deg, rgba(231, 130, 111, 0.90) 0%, rgba(223, 114, 95, 0.74) 100%) !important;
}

.ffw-site .ffw-home-scene__tree {
  right: 28% !important;
  width: min(405px, 47%) !important;
  max-height: 91% !important;
  filter: drop-shadow(0 26px 42px rgba(45,46,46,0.18)) !important;
}

.ffw-home-hero__mobile-form {
  display: none;
}

.ffw-site .ffw-trust-strip {
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 18px 50px rgba(45, 46, 46, 0.035);
}

.ffw-site .ffw-trust-strip .ffw-container {
  width: min(1180px, calc(100% - 56px));
  min-height: 88px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.ffw-site .ffw-trust-item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: none !important;
  color: var(--ff-green) !important;
  font-family: var(--ff-font-body) !important;
  text-align: left !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.ffw-site .ffw-trust-item::before {
  content: none !important;
}

.ffw-site .ffw-trust-item strong {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(54,75,57,0.18);
  border-radius: 999px;
  background: rgba(54,75,57,0.055);
  color: var(--ff-green);
  font-family: var(--ff-font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.ffw-site .ffw-trust-item em {
  max-width: 145px;
  color: rgba(45,46,46,0.66);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.ffw-site .ffw-section--mockup-services {
  padding-top: clamp(74px, 7.2vw, 104px) !important;
  padding-bottom: 36px !important;
}

.ffw-site .ffw-home-services-layout {
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.36fr) !important;
  gap: clamp(48px, 6vw, 92px) !important;
}

.ffw-site .ffw-home-services-intro h2 {
  max-width: 390px !important;
  font-size: clamp(3rem, 4.4vw, 4.9rem) !important;
  line-height: 1.01 !important;
}

.ffw-site .ffw-card-grid--home-feature-service {
  gap: 26px !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card {
  min-height: 330px !important;
  padding: 38px 32px 34px !important;
  border-radius: 14px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.74) 100%) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223,114,95,0.35) !important;
  box-shadow: 0 24px 60px rgba(54,75,57,0.08) !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card h3 {
  margin-top: 16px !important;
  font-size: clamp(1.65rem, 2.3vw, 2.05rem) !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card a {
  color: var(--ff-coral) !important;
  font-size: 0.95rem !important;
}

.ffw-site .ffw-growth-band {
  width: min(1180px, 100%);
  min-height: 150px;
  border-radius: 14px !important;
  padding: clamp(36px, 4.8vw, 60px) clamp(38px, 5vw, 64px) !important;
}

.ffw-site .ffw-growth-band h2 {
  max-width: 430px !important;
}

.ffw-site .ffw-section--mockup-routes,
.ffw-site .ffw-section--home-proof,
.ffw-site .ffw-section--home-pricing,
.ffw-site .ffw-section--home-resources,
.ffw-site .ffw-section--split {
  background: var(--ff-section-cream) !important;
}

.ffw-site .ffw-section-head--split {
  align-items: end !important;
}

.ffw-site .ffw-section-head--split h2,
.ffw-site .ffw-section-head h2,
.ffw-site .ffw-proof-panel h2,
.ffw-site .ffw-home-price-card h3,
.ffw-site .ffw-split-card h2,
.ffw-site .ffw-cta-band h2 {
  color: var(--ff-green) !important;
  font-family: var(--ff-font-heading) !important;
  font-weight: 500 !important;
  letter-spacing: -0.065em !important;
  text-transform: none !important;
}

.ffw-site .ffw-route-card,
.ffw-site .ffw-home-price-card,
.ffw-site .ffw-process article,
.ffw-site .ffw-card-grid--resource .ffw-card,
.ffw-site .ffw-split-card {
  border: 1px solid rgba(54,75,57,0.12) !important;
  background: rgba(255,255,255,0.74) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

.ffw-site .ffw-route-card--featured {
  background: var(--ff-green) !important;
}

.ffw-site .ffw-route-card--featured h3,
.ffw-site .ffw-route-card--featured p,
.ffw-site .ffw-route-card--featured strong,
.ffw-site .ffw-route-card--featured .ffw-route-card__number,
.ffw-site .ffw-route-card--featured .ffw-route-card__tag {
  color: #fff9ef !important;
}

.ffw-site .ffw-proof-panel {
  border-radius: 14px !important;
  background: linear-gradient(135deg, #2f4634 0%, var(--ff-green) 100%) !important;
  box-shadow: 0 26px 70px rgba(54,75,57,0.13) !important;
}

.ffw-site .ffw-proof-panel h2 {
  color: #fff9ef !important;
}

.ffw-site .ffw-proof-panel__copy p:not(.ffw-eyebrow),
.ffw-site .ffw-proof-panel__items article p {
  color: rgba(255,255,255,0.74) !important;
}

.ffw-site .ffw-proof-panel__items article {
  border-color: rgba(255,255,255,0.28) !important;
  background: rgba(255,255,255,0.04) !important;
}

.ffw-site .ffw-proof-panel__items article h3 {
  color: #fff9ef !important;
  font-family: var(--ff-font-body) !important;
  letter-spacing: -0.02em !important;
}

.ffw-site .ffw-home-price-card__price {
  color: var(--ff-green) !important;
}

.ffw-site .ffw-note {
  border: 0 !important;
  border-radius: 8px !important;
  background: #efe4cf !important;
  color: rgba(45,46,46,0.78) !important;
}

.ffw-site .ffw-cta-band {
  padding: 54px 0 82px !important;
  background: var(--ff-section-cream) !important;
}

.ffw-site .ffw-cta-band .ffw-container {
  border-radius: 14px !important;
  background: linear-gradient(135deg, #2f4634 0%, var(--ff-green) 100%) !important;
}

.ffw-site .ffw-cta-band h2,
.ffw-site .ffw-cta-band p:not(.ffw-eyebrow) {
  color: #fff9ef !important;
}

.ffw-site .ffw-footer {
  margin-top: 0 !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr) !important;
    gap: 48px !important;
  }
}

@media (max-width: 980px) {
  .ffw-container,
  .ffw-site .ffw-trust-strip .ffw-container {
    width: min(100% - 36px, 720px);
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    padding-bottom: 8px !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: 460px !important;
  }

  .ffw-site .ffw-trust-strip .ffw-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ffw-site .ffw-home-services-layout,
  .ffw-site .ffw-growth-band,
  .ffw-site .ffw-section-head--split {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-home-hero--mockup h1 {
    max-width: 94vw !important;
    font-size: clamp(3.55rem, 15.8vw, 5.25rem) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-lead {
    font-size: 1.06rem !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: 345px !important;
  }

  .ffw-site .ffw-home-scene__coral {
    right: -20% !important;
  }

  .ffw-site .ffw-home-scene__tree {
    right: 30% !important;
    width: 48% !important;
  }

  .ffw-home-hero__mobile-form {
    display: block !important;
    margin: 0 0 34px !important;
  }

  .ffw-home-hero__mobile-form .ffw-form {
    padding: 26px 20px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.88) !important;
    box-shadow: 0 20px 55px rgba(45,46,46,0.10) !important;
  }

  .ffw-home-hero__mobile-form .ffw-form h2 {
    color: var(--ff-green) !important;
    font-family: var(--ff-font-heading) !important;
    font-size: 2.05rem !important;
    font-weight: 500 !important;
    letter-spacing: -0.055em !important;
    text-transform: none !important;
  }

  .ffw-home-hero__mobile-form .ffw-form > p:not(.ffw-eyebrow),
  .ffw-home-hero__mobile-form .ffw-form-smallprint,
  .ffw-home-hero__mobile-form .ffw-form-full,
  .ffw-home-hero__mobile-form .ffw-consent {
    display: none !important;
  }

  .ffw-home-hero__mobile-form .ffw-form-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .ffw-home-hero__mobile-form .ffw-form-grid label:nth-child(3),
  .ffw-home-hero__mobile-form .ffw-form-grid label:nth-child(4) {
    display: none !important;
  }

  .ffw-site .ffw-trust-strip .ffw-container {
    grid-template-columns: 1fr 1fr;
    gap: 12px !important;
    padding: 18px 0 !important;
  }

  .ffw-site .ffw-trust-item {
    justify-content: flex-start;
  }

  .ffw-site .ffw-trust-item strong {
    min-width: 36px;
    height: 36px;
    font-size: 0.78rem;
  }

  .ffw-site .ffw-trust-item em {
    font-size: 0.68rem;
  }

  .ffw-site .ffw-card-grid--home-feature-service {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-growth-band,
  .ffw-site .ffw-cta-band .ffw-container {
    padding: 30px 22px !important;
  }
}

/* FF-S19 — homepage visual polish and UX refinement */
.ffw-site {
  --ff-page-max: 1280px;
  --ff-section-cream: #f8f3ea;
  --ff-paper: #fffdf8;
  --ff-soft-border: rgba(54, 75, 57, 0.13);
  --ff-soft-text: rgba(45, 46, 46, 0.70);
}

.ffw-site .ffw-header {
  background: rgba(251, 248, 241, 0.94) !important;
  box-shadow: 0 12px 34px rgba(45, 46, 46, 0.035);
}

.ffw-site .ffw-header__inner {
  min-height: 84px !important;
}

.ffw-site .ffw-brand {
  min-width: 190px;
}

.ffw-site .ffw-brand img {
  width: min(214px, 48vw) !important;
  max-height: 48px !important;
  object-fit: contain;
  object-position: left center;
}

.ffw-site .ffw-nav-list {
  gap: 18px !important;
}

.ffw-site .ffw-nav-link {
  color: rgba(45, 46, 46, 0.72) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.ffw-site .ffw-header-cta {
  min-height: 50px !important;
  padding: 15px 24px !important;
  border-radius: 7px !important;
}

.ffw-site .ffw-home-hero--mockup {
  min-height: clamp(620px, 63vw, 790px) !important;
  padding-top: clamp(64px, 6.6vw, 104px) !important;
  background:
    radial-gradient(circle at 77% 28%, rgba(223, 114, 95, 0.09), transparent 31%),
    linear-gradient(180deg, #fbf8f1 0%, #f8f3ea 100%) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
  grid-template-columns: minmax(480px, 0.98fr) minmax(560px, 1.02fr) !important;
  gap: clamp(40px, 6vw, 96px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
  max-width: 760px !important;
  padding-bottom: clamp(120px, 12.5vw, 188px) !important;
}

.ffw-site .ffw-home-hero--mockup h1 {
  max-width: 760px !important;
  font-size: clamp(4.2rem, 5.65vw, 6.7rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.042em !important;
  word-spacing: 0.02em !important;
}

.ffw-site .ffw-home-hero--mockup h1 span {
  white-space: nowrap;
}

.ffw-site .ffw-home-hero--mockup .ffw-lead {
  max-width: 520px !important;
  margin-top: 26px !important;
  color: rgba(45, 46, 46, 0.74) !important;
  font-size: clamp(1.08rem, 1.16vw, 1.2rem) !important;
  line-height: 1.75 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-actions {
  margin-top: 32px !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-btn {
  min-height: 52px !important;
  padding: 15px 24px !important;
}

.ffw-site .ffw-home-scene {
  min-height: clamp(525px, 48vw, 690px) !important;
}

.ffw-site .ffw-home-scene__arch {
  right: 28% !important;
  width: min(540px, 62%) !important;
  height: 90% !important;
  background: rgba(54, 75, 57, 0.070) !important;
}

.ffw-site .ffw-home-scene__coral {
  right: -2% !important;
  width: min(545px, 62%) !important;
  height: 78% !important;
  background: linear-gradient(180deg, rgba(235, 138, 119, 0.92) 0%, rgba(223, 114, 95, 0.78) 100%) !important;
}

.ffw-site .ffw-home-scene__tree {
  right: 27% !important;
  width: min(455px, 50%) !important;
  max-height: 94% !important;
  filter: drop-shadow(0 28px 44px rgba(45,46,46,0.18)) !important;
}

.ffw-site .ffw-trust-strip {
  background: rgba(255, 255, 255, 0.76) !important;
}

.ffw-site .ffw-trust-strip .ffw-container {
  width: min(1120px, calc(100% - 56px)) !important;
  min-height: 96px !important;
  gap: 20px !important;
}

.ffw-site .ffw-trust-item {
  padding: 8px 10px;
}

.ffw-site .ffw-trust-item strong {
  min-width: 46px !important;
  height: 46px !important;
  background: rgba(54, 75, 57, 0.065) !important;
  font-size: 0.9rem !important;
}

.ffw-site .ffw-trust-item em {
  color: rgba(45,46,46,0.68) !important;
  font-size: 0.77rem !important;
  letter-spacing: 0.035em !important;
}

.ffw-site .ffw-section--mockup-services {
  padding-top: clamp(78px, 7.5vw, 112px) !important;
  padding-bottom: 42px !important;
  background: var(--ff-paper) !important;
}

.ffw-site .ffw-home-services-layout {
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr) !important;
  gap: clamp(44px, 5.2vw, 72px) !important;
}

.ffw-site .ffw-home-services-intro h2 {
  max-width: 430px !important;
  font-size: clamp(3.1rem, 4.15vw, 4.55rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.052em !important;
}

.ffw-site .ffw-card-grid--home-feature-service {
  gap: 24px !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card {
  min-height: 292px !important;
  padding: 34px 32px 32px !important;
  border-color: var(--ff-soft-border) !important;
  background: rgba(255, 255, 255, 0.86) !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card h3 {
  margin-top: 14px !important;
  font-size: clamp(1.55rem, 1.8vw, 1.9rem) !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card p:not(.ffw-card__tag) {
  line-height: 1.64 !important;
}

.ffw-site .ffw-section--mockup-growth {
  padding-top: 38px !important;
  padding-bottom: clamp(76px, 8vw, 118px) !important;
  background: var(--ff-paper) !important;
}

.ffw-site .ffw-growth-band {
  grid-template-columns: minmax(290px, 0.95fr) minmax(260px, 0.78fr) auto !important;
  min-height: 168px !important;
  padding: clamp(38px, 4.3vw, 58px) clamp(42px, 5.2vw, 68px) !important;
  border-radius: 13px !important;
}

.ffw-site .ffw-growth-band h2 {
  max-width: 480px !important;
  font-size: clamp(2.45rem, 3.15vw, 3.55rem) !important;
  line-height: 1.05 !important;
}

.ffw-site .ffw-growth-band .ffw-btn {
  min-width: 190px;
}

.ffw-site .ffw-section--mockup-routes {
  padding-top: clamp(82px, 8vw, 118px) !important;
  padding-bottom: clamp(72px, 7vw, 104px) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-section-head--split h2 {
  max-width: 570px !important;
  font-size: clamp(2.65rem, 3.85vw, 4.45rem) !important;
  line-height: 1.04 !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-grid {
  gap: 18px !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card {
  min-height: 246px !important;
  padding: 24px 22px !important;
  background: rgba(255,255,255,0.78) !important;
}

.ffw-site .ffw-route-card h3 {
  font-size: clamp(1.28rem, 1.42vw, 1.62rem) !important;
  line-height: 1.08 !important;
}

.ffw-site .ffw-route-card p {
  color: var(--ff-soft-text) !important;
  font-size: 0.93rem !important;
  line-height: 1.5 !important;
}

.ffw-site .ffw-route-card__tag {
  padding: 6px 8px !important;
  font-size: 0.62rem !important;
}

.ffw-site .ffw-section--home-proof {
  padding: clamp(70px, 7vw, 96px) 0 !important;
}

.ffw-site .ffw-proof-panel {
  gap: clamp(26px, 4vw, 56px) !important;
  padding: clamp(38px, 5vw, 62px) !important;
}

.ffw-site .ffw-proof-panel h2 {
  max-width: 520px !important;
  font-size: clamp(2.4rem, 3.5vw, 4.15rem) !important;
  line-height: 1.03 !important;
}

.ffw-site .ffw-proof-panel__copy p:not(.ffw-eyebrow) {
  max-width: 510px !important;
  line-height: 1.72 !important;
}

.ffw-site .ffw-proof-panel__items {
  gap: 14px !important;
}

.ffw-site .ffw-proof-panel__items article {
  padding: 20px 22px !important;
  border-radius: 12px !important;
}

.ffw-site .ffw-section--home-pricing {
  padding-top: clamp(78px, 8vw, 112px) !important;
  padding-bottom: clamp(72px, 7vw, 96px) !important;
}

.ffw-site .ffw-home-price-grid {
  gap: 22px !important;
}

.ffw-site .ffw-home-price-card {
  gap: 13px !important;
  min-height: 292px !important;
  padding: 30px 28px !important;
}

.ffw-site .ffw-home-price-card h3 {
  font-size: clamp(1.48rem, 1.75vw, 1.85rem) !important;
}

.ffw-site .ffw-home-price-card__price {
  font-size: clamp(1.62rem, 2.1vw, 2.05rem) !important;
  letter-spacing: -0.035em !important;
}

.ffw-home-price-card__list {
  display: grid;
  gap: 8px;
  padding: 4px 0 0;
  margin: 0;
  list-style: none;
}

.ffw-home-price-card__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(45,46,46,0.70);
  font-size: 0.92rem;
  line-height: 1.35;
}

.ffw-home-price-card__list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--ff-coral);
}

.ffw-site .ffw-process {
  gap: 20px !important;
}

.ffw-site .ffw-process article {
  min-height: 166px;
  padding: 28px 26px !important;
}

.ffw-site .ffw-split-card {
  padding: clamp(30px, 4vw, 46px) !important;
}

.ffw-site .ffw-section--home-resources {
  padding-top: clamp(82px, 8vw, 118px) !important;
}

.ffw-site .ffw-card-grid--resource {
  gap: 20px !important;
}

.ffw-site .ffw-card-grid--resource .ffw-card {
  min-height: 240px !important;
  padding: 28px 24px !important;
}

.ffw-site .ffw-cta-band {
  padding: 58px 0 88px !important;
}

.ffw-site .ffw-cta-band .ffw-container {
  min-height: 160px;
  padding: clamp(36px, 5vw, 60px) clamp(38px, 5.5vw, 70px) !important;
}

.ffw-site .ffw-footer {
  padding-top: clamp(68px, 8vw, 108px) !important;
  background: #2f4634 !important;
}

.ffw-site .ffw-footer__top {
  grid-template-columns: minmax(300px, 1.1fr) repeat(4, minmax(145px, 0.65fr)) !important;
  gap: clamp(32px, 5.4vw, 76px) !important;
}

.ffw-site .ffw-footer__brand img {
  width: min(260px, 74vw) !important;
  max-height: 56px !important;
  filter: brightness(0) invert(1);
  object-fit: contain;
  object-position: left center;
}

.ffw-site .ffw-footer__brand p {
  max-width: 440px;
  line-height: 1.72;
}

.ffw-site .ffw-footer__trust {
  gap: 12px !important;
}

.ffw-site .ffw-footer__trust span {
  border-color: rgba(255,255,255,0.20) !important;
  background: rgba(255,255,255,0.06) !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    grid-template-columns: minmax(430px, 0.9fr) minmax(460px, 1.1fr) !important;
    gap: 46px !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    font-size: clamp(4rem, 5.45vw, 5.8rem) !important;
  }
}

@media (max-width: 980px) {
  .ffw-site .ffw-brand {
    min-width: 0;
  }

  .ffw-site .ffw-brand img {
    width: min(190px, 52vw) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    padding-bottom: 22px !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    max-width: 720px !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: 480px !important;
  }

  .ffw-site .ffw-home-services-layout,
  .ffw-site .ffw-growth-band,
  .ffw-site .ffw-proof-panel,
  .ffw-site .ffw-footer__top {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-card-grid--home-feature-service,
  .ffw-site .ffw-home-price-grid,
  .ffw-site .ffw-process {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-home-hero--mockup {
    padding-top: 44px !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    font-size: clamp(3.05rem, 13.5vw, 4.35rem) !important;
    letter-spacing: -0.036em !important;
    line-height: 1.02 !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 span {
    white-space: normal;
  }

  .ffw-site .ffw-home-scene {
    min-height: 360px !important;
  }

  .ffw-site .ffw-home-scene__arch {
    right: 30% !important;
    width: 58% !important;
  }

  .ffw-site .ffw-home-scene__coral {
    right: -20% !important;
    width: 70% !important;
  }

  .ffw-site .ffw-home-scene__tree {
    right: 29% !important;
    width: 52% !important;
  }

  .ffw-site .ffw-trust-strip .ffw-container {
    width: min(100% - 32px, 520px) !important;
  }

  .ffw-site .ffw-section-head--split h2,
  .ffw-site .ffw-section-head h2,
  .ffw-site .ffw-home-services-intro h2,
  .ffw-site .ffw-proof-panel h2 {
    font-size: clamp(2.45rem, 11vw, 3.55rem) !important;
  }

  .ffw-site .ffw-section--mockup-routes .ffw-route-card,
  .ffw-site .ffw-card-grid--home-feature-service .ffw-card,
  .ffw-site .ffw-home-price-card,
  .ffw-site .ffw-card-grid--resource .ffw-card {
    min-height: 0 !important;
    padding: 26px 22px !important;
  }
}

/* FF-S20 — interior page visual polish and public-facing template refinement */
.ffw-site {
  --ff-font-heading: Fraunces, Georgia, "Times New Roman", serif;
  --ff-font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-coral: #df725f;
  --ff-coral-dark: #c95e4e;
  --ff-cream-soft: #f8f4ec;
  --ff-cream-deep: #f2eadf;
  --ff-soft-text: rgba(45, 46, 46, 0.72);
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) {
  padding: clamp(70px, 8vw, 118px) 0 clamp(52px, 6vw, 82px) !important;
  background:
    radial-gradient(circle at 81% 16%, rgba(223, 114, 95, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, var(--ff-cream-soft) 100%) !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup)::before {
  background-image: none !important;
  opacity: 0 !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-hero__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr) !important;
  gap: clamp(46px, 7vw, 104px) !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1 {
  max-width: 710px !important;
  color: var(--ff-green) !important;
  font-family: var(--ff-font-heading) !important;
  font-size: clamp(3.15rem, 6vw, 5.85rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.065em !important;
  line-height: 0.98 !important;
  text-transform: none !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-lead {
  max-width: 610px !important;
  margin-top: 22px !important;
  color: var(--ff-soft-text) !important;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem) !important;
  line-height: 1.72 !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-actions {
  margin-top: 30px !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-btn--primary {
  background: var(--ff-coral) !important;
  box-shadow: 0 16px 38px rgba(223, 114, 95, 0.25) !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-btn--primary:hover,
.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-btn--primary:focus-visible {
  background: var(--ff-coral-dark) !important;
}

.ffw-site .ffw-interior-scene {
  min-height: clamp(360px, 35vw, 520px) !important;
  overflow: visible !important;
  isolation: isolate;
}

.ffw-site .ffw-interior-scene__arch,
.ffw-site .ffw-interior-scene__coral {
  position: absolute;
  bottom: 0;
  border-radius: 999px 999px 0 0;
  pointer-events: none;
}

.ffw-site .ffw-interior-scene__arch {
  right: 28%;
  width: min(64%, 360px);
  height: 84%;
  background: #e9e4da;
  opacity: 0.72;
  z-index: 1;
}

.ffw-site .ffw-interior-scene__coral {
  right: 4%;
  width: min(56%, 330px);
  height: 70%;
  background: rgba(223, 114, 95, 0.78);
  z-index: 2;
}

.ffw-site .ffw-interior-scene__tree {
  position: absolute;
  right: 27%;
  bottom: -4px;
  z-index: 3;
  width: min(48%, 280px);
  max-height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(54, 75, 57, 0.18));
}

.ffw-site .ffw-interior-scene__card {
  position: absolute;
  right: 0;
  bottom: 34px;
  z-index: 4;
  width: min(280px, 66%);
  padding: 22px 22px 20px;
  border: 1px solid rgba(54, 75, 57, 0.13);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 22px 60px rgba(45, 46, 46, 0.10);
  backdrop-filter: blur(10px);
}

.ffw-site .ffw-interior-scene__card span,
.ffw-site .ffw-pricing-summary-card span,
.ffw-site .ffw-audience-snapshot__item span,
.ffw-site .ffw-service-snapshot__item span,
.ffw-site .ffw-resource-featured__panel span {
  color: var(--ff-coral) !important;
  font-family: var(--ff-font-body) !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}

.ffw-site .ffw-interior-scene__card strong {
  display: block;
  margin-top: 8px;
  color: var(--ff-green);
  font-family: var(--ff-font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.ffw-site .ffw-interior-scene__card p {
  margin-top: 10px;
  color: var(--ff-soft-text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ffw-site .ffw-trust-strip {
  border-top: 1px solid rgba(54, 75, 57, 0.07) !important;
  border-bottom: 1px solid rgba(54, 75, 57, 0.07) !important;
  background: rgba(255,253,248,0.88) !important;
}

.ffw-site .ffw-section:not(.ffw-section--mockup-services):not(.ffw-section--mockup-routes):not(.ffw-section--home-proof):not(.ffw-section--home-pricing):not(.ffw-section--home-resources):not(.ffw-home-trust-proof) {
  padding: clamp(66px, 7vw, 104px) 0 !important;
}

.ffw-site .ffw-section--mist,
.ffw-site .ffw-section--audience-fit,
.ffw-site .ffw-section--service-fit,
.ffw-site .ffw-section--pricing-routes,
.ffw-site .ffw-section--pricing-comparison {
  background: var(--ff-cream-soft) !important;
}

.ffw-site .ffw-section-head h2,
.ffw-site .ffw-audience-intro__copy h2,
.ffw-site .ffw-service-intro__copy h2,
.ffw-site .ffw-copy-card h2,
.ffw-site .ffw-list-panel h2 {
  color: var(--ff-green) !important;
  font-family: var(--ff-font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: -0.058em !important;
  line-height: 1.03 !important;
  text-transform: none !important;
}

.ffw-site .ffw-section-head p:not(.ffw-eyebrow),
.ffw-site .ffw-audience-intro__copy p:not(.ffw-eyebrow),
.ffw-site .ffw-service-intro__copy p:not(.ffw-eyebrow),
.ffw-site .ffw-copy-card p:not(.ffw-eyebrow) {
  max-width: 620px;
  color: var(--ff-soft-text) !important;
  line-height: 1.75 !important;
}

.ffw-site .ffw-audience-intro,
.ffw-site .ffw-service-intro,
.ffw-site .ffw-resource-featured,
.ffw-site .ffw-pricing-missing,
.ffw-site .ffw-partner-flow,
.ffw-site .ffw-referral-tracking-grid {
  align-items: stretch !important;
  gap: clamp(26px, 4.5vw, 68px) !important;
}

.ffw-site .ffw-audience-snapshot,
.ffw-site .ffw-service-snapshot,
.ffw-site .ffw-pricing-summary-grid,
.ffw-site .ffw-service-process,
.ffw-site .ffw-referral-steps,
.ffw-site .ffw-partner-flow__steps {
  gap: 16px !important;
}

.ffw-site .ffw-audience-snapshot__item,
.ffw-site .ffw-service-snapshot__item,
.ffw-site .ffw-pricing-summary-card,
.ffw-site .ffw-service-process article,
.ffw-site .ffw-referral-steps article,
.ffw-site .ffw-partner-flow__steps article,
.ffw-site .ffw-resource-featured__panel,
.ffw-site .ffw-resource-empty,
.ffw-site .ffw-final-content-panel,
.ffw-site .ffw-source-summary {
  border: 1px solid rgba(54, 75, 57, 0.12) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: 0 18px 52px rgba(45, 46, 46, 0.055) !important;
}

.ffw-site .ffw-audience-snapshot__item,
.ffw-site .ffw-service-snapshot__item,
.ffw-site .ffw-pricing-summary-card,
.ffw-site .ffw-service-process article,
.ffw-site .ffw-referral-steps article,
.ffw-site .ffw-partner-flow__steps article {
  padding: 24px 24px 22px !important;
}

.ffw-site .ffw-audience-snapshot__item::before,
.ffw-site .ffw-service-snapshot__item::after,
.ffw-site .ffw-pricing-summary-card::after,
.ffw-site .ffw-service-process article::after,
.ffw-site .ffw-card::after {
  opacity: 0.18 !important;
}

.ffw-site .ffw-audience-snapshot__item strong,
.ffw-site .ffw-service-snapshot__item strong,
.ffw-site .ffw-pricing-summary-card strong,
.ffw-site .ffw-service-process h3,
.ffw-site .ffw-referral-steps h3,
.ffw-site .ffw-partner-flow__steps h3 {
  color: var(--ff-green) !important;
  font-family: var(--ff-font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;
}

.ffw-site .ffw-list-panel,
.ffw-site .ffw-copy-card,
.ffw-site .ffw-form,
.ffw-site .ffw-form-shell,
.ffw-site .ffw-card,
.ffw-site .ffw-price-card,
.ffw-site .ffw-home-price-card {
  border-color: rgba(54, 75, 57, 0.12) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 20px 54px rgba(45, 46, 46, 0.055) !important;
}

.ffw-site .ffw-copy-card,
.ffw-site .ffw-list-panel,
.ffw-site .ffw-form,
.ffw-site .ffw-form-shell {
  border-radius: 22px !important;
  padding: clamp(30px, 4vw, 46px) !important;
}

.ffw-site .ffw-list-panel li,
.ffw-site .ffw-check-list li,
.ffw-site .ffw-price-card__features li {
  color: rgba(45,46,46,0.72) !important;
  line-height: 1.55 !important;
}

.ffw-site .ffw-card-grid--service,
.ffw-site .ffw-card-grid--service-inclusion,
.ffw-site .ffw-card-grid--service-hub,
.ffw-site .ffw-card-grid--resource-topic,
.ffw-site .ffw-card-grid--resource-posts,
.ffw-site .ffw-card-grid--partner,
.ffw-site .ffw-card-grid--referral-route,
.ffw-site .ffw-card-grid--related,
.ffw-site .ffw-card-grid--pricing-addon {
  gap: 20px !important;
}

.ffw-site .ffw-card-grid--service .ffw-card,
.ffw-site .ffw-card-grid--service-inclusion .ffw-card,
.ffw-site .ffw-card-grid--service-hub .ffw-card,
.ffw-site .ffw-card-grid--resource-topic .ffw-card,
.ffw-site .ffw-card-grid--resource-posts .ffw-card,
.ffw-site .ffw-card-grid--partner .ffw-card,
.ffw-site .ffw-card-grid--referral-route .ffw-card,
.ffw-site .ffw-card-grid--related .ffw-card,
.ffw-site .ffw-card-grid--pricing-addon .ffw-card {
  min-height: 250px;
  padding: 30px 28px !important;
  border-radius: 18px !important;
}

.ffw-site .ffw-card h3,
.ffw-site .ffw-price-card h3,
.ffw-site .ffw-resource-featured h2 {
  color: var(--ff-green) !important;
  font-family: var(--ff-font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: -0.048em !important;
  text-transform: none !important;
}

.ffw-site .ffw-card p,
.ffw-site .ffw-price-card p,
.ffw-site .ffw-resource-featured p,
.ffw-site .ffw-migration-list p,
.ffw-site .ffw-partner-disclosure {
  color: var(--ff-soft-text) !important;
  line-height: 1.65 !important;
}

.ffw-site .ffw-card__icon,
.ffw-site .ffw-card__icon::after {
  background: var(--ff-coral) !important;
  box-shadow: none !important;
}

.ffw-site .ffw-card a,
.ffw-site .ffw-home-price-card a,
.ffw-site .ffw-price-card a:not(.ffw-btn) {
  color: var(--ff-coral) !important;
  font-weight: 800 !important;
}

.ffw-site .ffw-audience-highlight,
.ffw-site .ffw-service-software,
.ffw-site .ffw-pricing-missing,
.ffw-site .ffw-referral-hero,
.ffw-site .ffw-thank-you-hero {
  background: linear-gradient(135deg, #2f4634 0%, #23402d 100%) !important;
  border-radius: 22px !important;
  box-shadow: 0 26px 72px rgba(54,75,57,0.18) !important;
}

.ffw-site .ffw-audience-highlight .ffw-btn--light,
.ffw-site .ffw-service-software .ffw-btn--light,
.ffw-site .ffw-cta-band .ffw-btn--light,
.ffw-site .ffw-thank-you-hero .ffw-btn--light {
  background: var(--ff-coral) !important;
  color: #fff !important;
}

.ffw-site .ffw-pricing-tabs a,
.ffw-site .ffw-pricing-tabs span {
  min-height: 44px !important;
  padding: 12px 16px !important;
  border-color: rgba(54, 75, 57, 0.14) !important;
  background: rgba(255,255,255,0.86) !important;
  color: var(--ff-green) !important;
}

.ffw-site .ffw-price-card {
  border-radius: 22px !important;
  padding: clamp(28px, 3.5vw, 42px) !important;
}

.ffw-site .ffw-price-card--featured {
  border-color: rgba(223,114,95,0.36) !important;
  box-shadow: 0 22px 70px rgba(223,114,95,0.10) !important;
}

.ffw-site .ffw-price-card__flag {
  background: rgba(223, 114, 95, 0.12) !important;
  color: var(--ff-coral-dark) !important;
}

.ffw-site .ffw-price {
  color: var(--ff-green) !important;
  font-family: var(--ff-font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;
}

.ffw-site .ffw-form input,
.ffw-site .ffw-form select,
.ffw-site .ffw-form textarea,
.ffw-site .ffw-form-shell input,
.ffw-site .ffw-form-shell select,
.ffw-site .ffw-form-shell textarea {
  min-height: 52px !important;
  border-color: rgba(54, 75, 57, 0.14) !important;
  border-radius: 12px !important;
  background: rgba(255, 253, 248, 0.86) !important;
}

.ffw-site .ffw-form button,
.ffw-site .ffw-form-shell button {
  background: var(--ff-coral) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 14px 34px rgba(223, 114, 95, 0.22) !important;
}

.ffw-site .ffw-resource-featured {
  background: linear-gradient(135deg, rgba(255,253,248,0.94), rgba(248,244,236,0.96)) !important;
  border-color: rgba(54,75,57,0.12) !important;
  box-shadow: 0 24px 70px rgba(45,46,46,0.06) !important;
}

.ffw-site .ffw-resource-featured__panel {
  background: #fff !important;
}

.ffw-site .ffw-referral-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ffw-site .ffw-referral-steps span,
.ffw-site .ffw-partner-flow__steps span,
.ffw-site .ffw-service-process span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--ff-green);
  color: #fff !important;
  font-weight: 800;
}

.ffw-site .ffw-thank-you-hero {
  margin: clamp(30px, 5vw, 64px) auto 0;
  width: min(1180px, calc(100% - 40px));
  padding: clamp(54px, 6vw, 88px) 0 !important;
}

.ffw-site .ffw-thank-you-hero .ffw-container {
  width: min(1080px, calc(100% - 40px));
}

@media (max-width: 980px) {
  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-hero__grid,
  .ffw-site .ffw-audience-intro,
  .ffw-site .ffw-service-intro,
  .ffw-site .ffw-pricing-missing,
  .ffw-site .ffw-referral-tracking-grid,
  .ffw-site .ffw-partner-flow,
  .ffw-site .ffw-resource-featured,
  .ffw-site .ffw-referral-steps {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-interior-scene {
    min-height: 390px !important;
  }

  .ffw-site .ffw-card-grid--service,
  .ffw-site .ffw-card-grid--service-inclusion,
  .ffw-site .ffw-card-grid--service-hub,
  .ffw-site .ffw-card-grid--resource-topic,
  .ffw-site .ffw-card-grid--resource-posts,
  .ffw-site .ffw-card-grid--partner,
  .ffw-site .ffw-card-grid--referral-route,
  .ffw-site .ffw-card-grid--related,
  .ffw-site .ffw-card-grid--pricing-addon,
  .ffw-site .ffw-pricing-summary-grid,
  .ffw-site .ffw-service-process {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) {
    padding-top: 46px !important;
  }

  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1 {
    font-size: clamp(2.85rem, 13vw, 4.15rem) !important;
    line-height: 1.03 !important;
  }

  .ffw-site .ffw-interior-scene {
    min-height: 330px !important;
  }

  .ffw-site .ffw-interior-scene__tree {
    right: 31%;
    width: 46%;
  }

  .ffw-site .ffw-interior-scene__card {
    right: 4%;
    bottom: 18px;
    width: min(250px, 72%);
    padding: 18px;
  }

  .ffw-site .ffw-copy-card,
  .ffw-site .ffw-list-panel,
  .ffw-site .ffw-form,
  .ffw-site .ffw-form-shell,
  .ffw-site .ffw-card-grid--service .ffw-card,
  .ffw-site .ffw-card-grid--service-inclusion .ffw-card,
  .ffw-site .ffw-card-grid--service-hub .ffw-card,
  .ffw-site .ffw-card-grid--resource-topic .ffw-card,
  .ffw-site .ffw-card-grid--resource-posts .ffw-card,
  .ffw-site .ffw-card-grid--partner .ffw-card,
  .ffw-site .ffw-card-grid--referral-route .ffw-card,
  .ffw-site .ffw-card-grid--related .ffw-card,
  .ffw-site .ffw-card-grid--pricing-addon .ffw-card,
  .ffw-site .ffw-price-card {
    padding: 24px 22px !important;
    min-height: 0 !important;
  }
}


/* FF-S21 — layout spacing and above-the-fold calibration
   Purpose: make the plugin fit the live Enfold page better, reduce the oversized
   presentation-canvas feeling, and pull the homepage hero content above the fold. */

/* Reduce common Enfold/WordPress wrapper spacing only on pages that contain the Forest Finance renderer. */
body:has(.ffw-site) #main,
body:has(.ffw-site) .main_color,
body:has(.ffw-site) .container_wrap,
body:has(.ffw-site) .template-page,
body:has(.ffw-site) .entry-content-wrapper,
body:has(.ffw-site) .post-entry,
body:has(.ffw-site) .entry-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
}

body:has(.ffw-site) #main .container,
body:has(.ffw-site) .container_wrap .container,
body:has(.ffw-site) .template-page .container {
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body:has(.ffw-site) .content,
body:has(.ffw-site) .sidebar_right .content,
body:has(.ffw-site) .sidebar_left .content {
  width: 100% !important;
  max-width: none !important;
  border: 0 !important;
  padding: 0 !important;
}

body:has(.ffw-site) .avia-builder-el-0,
body:has(.ffw-site) .av_textblock_section,
body:has(.ffw-site) .avia_textblock {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.ffw-site {
  --ff-page-max: 1400px;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ffw-container,
.ffw-site .ffw-trust-strip .ffw-container {
  width: min(var(--ff-page-max), calc(100% - 32px)) !important;
}

.ffw-site .ffw-header {
  position: sticky !important;
  top: 0 !important;
  box-shadow: 0 10px 28px rgba(45, 46, 46, 0.026) !important;
}

.admin-bar .ffw-site .ffw-header {
  top: 32px !important;
}

.ffw-site .ffw-header__inner {
  min-height: 70px !important;
  gap: 18px !important;
}

.ffw-site .ffw-brand {
  min-width: 172px !important;
}

.ffw-site .ffw-brand img {
  width: min(192px, 44vw) !important;
  max-height: 42px !important;
}

.ffw-site .ffw-primary-nav {
  max-width: 500px !important;
}

.ffw-site .ffw-nav-list,
.ffw-site .ffw-nav-item {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.ffw-site .ffw-nav-item::marker,
.ffw-site .ffw-nav-list::marker {
  content: "" !important;
}

.ffw-site .ffw-nav-list {
  gap: 20px !important;
}

.ffw-site .ffw-nav-link {
  padding: 8px 0 !important;
  font-size: 0.95rem !important;
  line-height: 1.1 !important;
}

.ffw-site .ffw-header-cta {
  min-height: 44px !important;
  padding: 12px 20px !important;
  font-size: 0.92rem !important;
}

/* Homepage hero: pull content up and stop the first fold feeling oversized. */
.ffw-site .ffw-home-hero--mockup {
  min-height: clamp(530px, 50vw, 650px) !important;
  padding-top: clamp(34px, 4vw, 56px) !important;
  background:
    radial-gradient(circle at 78% 30%, rgba(223, 114, 95, 0.08), transparent 31%),
    linear-gradient(180deg, #fbf8f1 0%, #f8f3ea 100%) !important;
}

.ffw-site .ffw-home-hero--mockup::after {
  height: 68px !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
  grid-template-columns: minmax(460px, 0.98fr) minmax(520px, 1.02fr) !important;
  gap: clamp(34px, 4.8vw, 74px) !important;
  align-items: end !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
  max-width: 760px !important;
  padding-bottom: clamp(82px, 8vw, 126px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-eyebrow {
  margin-bottom: 12px !important;
}

.ffw-site .ffw-home-hero--mockup h1 {
  max-width: 735px !important;
  font-size: clamp(3.75rem, 5.05vw, 6rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.04em !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-lead {
  max-width: 500px !important;
  margin-top: 18px !important;
  font-size: clamp(1rem, 1.08vw, 1.14rem) !important;
  line-height: 1.68 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-actions {
  margin-top: 26px !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-btn {
  min-height: 46px !important;
  padding: 13px 20px !important;
  font-size: 0.92rem !important;
}

.ffw-site .ffw-home-scene {
  min-height: clamp(440px, 40vw, 560px) !important;
}

.ffw-site .ffw-home-scene__arch {
  right: 29% !important;
  width: min(455px, 58%) !important;
  height: 86% !important;
}

.ffw-site .ffw-home-scene__coral {
  right: -3% !important;
  width: min(470px, 60%) !important;
  height: 75% !important;
}

.ffw-site .ffw-home-scene__tree {
  right: 28% !important;
  bottom: 0 !important;
  width: min(375px, 47%) !important;
  max-height: 92% !important;
}

.ffw-site .ffw-trust-strip .ffw-container {
  min-height: 72px !important;
  padding: 14px 0 !important;
}

.ffw-site .ffw-trust-item {
  padding: 4px 8px !important;
  gap: 10px !important;
}

.ffw-site .ffw-trust-item strong {
  min-width: 38px !important;
  height: 38px !important;
  font-size: 0.78rem !important;
}

.ffw-site .ffw-trust-item em {
  max-width: 132px !important;
  font-size: 0.68rem !important;
  line-height: 1.15 !important;
}

/* Tighten homepage rhythm so the page feels like a polished website, not separate posters. */
.ffw-site .ffw-section,
.ffw-site .ffw-section--mockup-routes,
.ffw-site .ffw-section--home-proof,
.ffw-site .ffw-section--home-pricing,
.ffw-site .ffw-section--home-resources,
.ffw-site .ffw-section--split {
  padding-top: clamp(58px, 6.2vw, 88px) !important;
  padding-bottom: clamp(58px, 6.2vw, 88px) !important;
}

.ffw-site .ffw-section--mockup-services {
  padding-top: clamp(60px, 6vw, 84px) !important;
  padding-bottom: 30px !important;
}

.ffw-site .ffw-section--mockup-growth {
  padding-top: 30px !important;
  padding-bottom: clamp(56px, 6vw, 86px) !important;
}

.ffw-site .ffw-home-services-layout {
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr) !important;
  gap: clamp(36px, 4.4vw, 60px) !important;
}

.ffw-site .ffw-home-services-intro h2,
.ffw-site .ffw-section--mockup-routes .ffw-section-head--split h2,
.ffw-site .ffw-section-head--split h2,
.ffw-site .ffw-section-head h2 {
  font-size: clamp(2.55rem, 3.55vw, 4.25rem) !important;
  line-height: 1.04 !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card {
  min-height: 268px !important;
  padding: 28px 26px 26px !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card__icon {
  width: 48px !important;
  height: 48px !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card__icon::after {
  width: 12px !important;
  height: 12px !important;
  margin: 18px !important;
}

.ffw-site .ffw-card-grid--home-feature-service .ffw-card h3 {
  font-size: clamp(1.45rem, 1.55vw, 1.75rem) !important;
}

.ffw-site .ffw-growth-band {
  min-height: 134px !important;
  padding: clamp(30px, 3.7vw, 46px) clamp(32px, 4.4vw, 56px) !important;
}

.ffw-site .ffw-growth-band h2 {
  font-size: clamp(2.1rem, 2.8vw, 3.15rem) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-grid {
  gap: 14px !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card {
  min-height: 220px !important;
  padding: 22px 20px !important;
}

.ffw-site .ffw-proof-panel {
  padding: clamp(32px, 4.2vw, 52px) !important;
}

.ffw-site .ffw-home-price-card,
.ffw-site .ffw-card-grid--resource .ffw-card,
.ffw-site .ffw-process article {
  min-height: 0 !important;
}

.ffw-site .ffw-cta-band {
  padding: 44px 0 68px !important;
}

.ffw-site .ffw-footer {
  padding-top: clamp(54px, 6vw, 82px) !important;
}

@media (min-width: 1500px) {
  .ffw-site {
    --ff-page-max: 1440px;
  }
}

@media (max-width: 1180px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    grid-template-columns: minmax(390px, 0.9fr) minmax(430px, 1.1fr) !important;
    gap: 34px !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    font-size: clamp(3.45rem, 5.1vw, 5.25rem) !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: clamp(400px, 39vw, 510px) !important;
  }
}

@media (max-width: 980px) {
  .admin-bar .ffw-site .ffw-header {
    top: 32px !important;
  }

  .ffw-site .ffw-header__inner {
    min-height: 66px !important;
  }

  .ffw-site .ffw-home-hero--mockup {
    min-height: 0 !important;
    padding-top: 42px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    padding-bottom: 14px !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: 420px !important;
  }
}

@media (max-width: 782px) {
  .admin-bar .ffw-site .ffw-header {
    top: 46px !important;
  }
}

@media (max-width: 760px) {
  .ffw-container,
  .ffw-site .ffw-trust-strip .ffw-container {
    width: min(100% - 28px, 560px) !important;
  }

  .ffw-site .ffw-home-hero--mockup {
    padding-top: 34px !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    font-size: clamp(3rem, 13vw, 4.1rem) !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: 320px !important;
  }

  .ffw-site .ffw-home-scene__tree {
    width: 50% !important;
  }

  .ffw-site .ffw-trust-strip .ffw-container {
    min-height: 0 !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .ffw-site .ffw-section,
  .ffw-site .ffw-section--mockup-routes,
  .ffw-site .ffw-section--home-proof,
  .ffw-site .ffw-section--home-pricing,
  .ffw-site .ffw-section--home-resources,
  .ffw-site .ffw-section--split {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}

/* FF-S21A — hero tree asset replacement and grounding fix */
.ffw-site .ffw-home-hero--mockup .ffw-home-scene {
  overflow: hidden !important;
  isolation: isolate !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene::after {
  content: "" !important;
  position: absolute !important;
  left: 42% !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1 !important;
  height: clamp(42px, 4.6vw, 72px) !important;
  background: linear-gradient(180deg, rgba(248, 243, 234, 0) 0%, rgba(248, 243, 234, 0.92) 100%) !important;
  pointer-events: none !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__art {
  overflow: hidden !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch,
.ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
  bottom: -1px !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
  right: 27% !important;
  bottom: clamp(-96px, -5.4vw, -58px) !important;
  z-index: 2 !important;
  width: min(430px, 50%) !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  filter: drop-shadow(0 24px 42px rgba(45, 46, 46, 0.18)) !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 26% !important;
    bottom: -64px !important;
    width: min(395px, 51%) !important;
  }
}

@media (max-width: 980px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 30% !important;
    bottom: -70px !important;
    width: min(360px, 48%) !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-scene::after {
    left: 20% !important;
    height: 46px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 25% !important;
    bottom: -48px !important;
    width: 56% !important;
  }
}

/* FF-S21B — true hero tree grounding correction.
   Keep the new transparent PNG, remove the artificial base fade,
   and let the hero scene clip the lower part of the tree naturally. */
.ffw-site .ffw-home-hero--mockup .ffw-home-scene {
  position: relative !important;
  align-self: end !important;
  overflow: hidden !important;
  isolation: isolate !important;
  min-height: clamp(460px, 40vw, 575px) !important;
  margin-bottom: 0 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene::after {
  content: none !important;
  display: none !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__art {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch,
.ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
  position: absolute !important;
  bottom: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch {
  right: 31% !important;
  width: min(480px, 59%) !important;
  height: 89% !important;
  border-radius: 320px 320px 0 0 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
  right: -4% !important;
  width: min(510px, 62%) !important;
  height: 76% !important;
  border-radius: 320px 320px 0 0 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
  position: absolute !important;
  right: 29% !important;
  bottom: clamp(-175px, -9.2vw, -128px) !important;
  z-index: 3 !important;
  display: block !important;
  width: min(475px, 55%) !important;
  max-width: none !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  background: transparent !important;
  filter: drop-shadow(0 22px 34px rgba(45, 46, 46, 0.14)) !important;
  transform: translateZ(0) !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    min-height: clamp(420px, 39vw, 520px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch {
    right: 32% !important;
    width: min(430px, 59%) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
    width: min(465px, 62%) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 29% !important;
    bottom: -132px !important;
    width: min(430px, 56%) !important;
  }
}

@media (max-width: 980px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    min-height: 420px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 30% !important;
    bottom: -118px !important;
    width: min(400px, 54%) !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    min-height: 340px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch {
    right: 34% !important;
    width: 58% !important;
    height: 88% !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
    right: 2% !important;
    width: 58% !important;
    height: 74% !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 31% !important;
    bottom: -92px !important;
    width: min(300px, 56%) !important;
  }
}

@media (max-width: 520px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    min-height: 300px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 30% !important;
    bottom: -78px !important;
    width: min(255px, 58%) !important;
  }
}


/* FF-S21C — hero tree foreground mask and grounding correction */
.ffw-site .ffw-home-hero--mockup .ffw-home-scene {
  overflow: hidden !important;
  isolation: isolate !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__art {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch,
.ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral,
.ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree,
.ffw-site .ffw-home-hero--mockup .ffw-home-scene__ground {
  position: absolute !important;
  pointer-events: none !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch {
  z-index: 1 !important;
  right: 29% !important;
  bottom: 0 !important;
  width: min(540px, 62%) !important;
  height: 91% !important;
  border-radius: 300px 300px 0 0 !important;
  background: rgba(54, 75, 57, 0.068) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
  z-index: 1 !important;
  right: -2% !important;
  bottom: 0 !important;
  width: min(560px, 64%) !important;
  height: 79% !important;
  border-radius: 305px 305px 0 0 !important;
  background: linear-gradient(180deg, rgba(235, 138, 119, 0.92) 0%, rgba(223, 114, 95, 0.78) 100%) !important;
  mix-blend-mode: multiply !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
  z-index: 3 !important;
  right: 28% !important;
  bottom: clamp(-168px, -8.4vw, -116px) !important;
  width: auto !important;
  height: clamp(650px, 48vw, 790px) !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  filter: drop-shadow(0 26px 42px rgba(45, 46, 46, 0.17)) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__ground {
  z-index: 4 !important;
  left: -10% !important;
  right: -8% !important;
  bottom: -1px !important;
  height: clamp(108px, 8vw, 142px) !important;
  border-top: 1px solid rgba(54, 75, 57, 0.075) !important;
  background: #f8f3ea !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 24% !important;
    bottom: clamp(-142px, -9vw, -104px) !important;
    height: clamp(590px, 54vw, 700px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__ground {
    height: clamp(96px, 8.5vw, 124px) !important;
  }
}

@media (max-width: 980px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    min-height: clamp(430px, 58vw, 560px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 29% !important;
    bottom: clamp(-116px, -10vw, -82px) !important;
    height: clamp(470px, 62vw, 590px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__ground {
    height: clamp(82px, 10vw, 112px) !important;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    min-height: 390px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch {
    right: 31% !important;
    width: 58% !important;
    height: 86% !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
    right: -8% !important;
    width: 66% !important;
    height: 72% !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 23% !important;
    bottom: -78px !important;
    height: 440px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__ground {
    height: 78px !important;
  }
}


/* FF-S21D — hero/trust strip proximity correction
   Pull the trust strip up into the hero edge so the first viewport does not show
   a loose empty band between the hero scene and the trust markers. This deliberately
   avoids changing the hero tree asset, tree scale or wider homepage sections. */
.ffw-site .ffw-home-hero--mockup::after {
  content: none !important;
  display: none !important;
}

.ffw-site .ffw-home-hero--mockup {
  min-height: clamp(560px, 57vw, 710px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
  padding-bottom: clamp(76px, 7.6vw, 124px) !important;
}

.ffw-site .ffw-trust-strip {
  position: relative !important;
  z-index: 8 !important;
  margin-top: clamp(-64px, -4.2vw, -42px) !important;
  border-top: 1px solid rgba(54, 75, 57, 0.10) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 16px 44px rgba(45, 46, 46, 0.045) !important;
  backdrop-filter: blur(14px);
}

.ffw-site .ffw-trust-strip .ffw-container {
  min-height: 84px !important;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-trust-strip {
    margin-top: -42px !important;
  }
}

@media (max-width: 980px) {
  .ffw-site .ffw-home-hero--mockup {
    min-height: auto !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    padding-bottom: 18px !important;
  }

  .ffw-site .ffw-trust-strip {
    margin-top: 0 !important;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-trust-strip .ffw-container {
    min-height: auto !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
}

/* FF-S21E — remove hero mask and tighten hero-to-trust join.
   The FF-S21C foreground block made the spruce look chopped. This final
   override removes the mask, lets the transparent tree sit naturally in the
   hero scene, and closes the loose gap before the trust strip. */
.ffw-site .ffw-home-hero--mockup .ffw-home-scene__ground {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.ffw-site .ffw-home-hero--mockup {
  min-height: clamp(520px, 50vw, 660px) !important;
  padding-bottom: 0 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
  align-items: end !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
  padding-bottom: clamp(58px, 5.4vw, 92px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene {
  min-height: clamp(430px, 38vw, 545px) !important;
  margin-bottom: 0 !important;
  overflow: hidden !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene::after {
  content: none !important;
  display: none !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__art {
  inset: 0 !important;
  overflow: hidden !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch {
  right: 30% !important;
  bottom: 0 !important;
  width: min(510px, 61%) !important;
  height: 88% !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
  right: -2% !important;
  bottom: 0 !important;
  width: min(540px, 64%) !important;
  height: 77% !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
  right: 27% !important;
  bottom: clamp(-74px, -4.6vw, -42px) !important;
  width: auto !important;
  height: clamp(520px, 41vw, 650px) !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  filter: drop-shadow(0 20px 32px rgba(45, 46, 46, 0.13)) !important;
}

.ffw-site .ffw-trust-strip {
  margin-top: clamp(-22px, -1.7vw, -12px) !important;
  border-top: 1px solid rgba(54, 75, 57, 0.08) !important;
  background: rgba(255, 255, 255, 0.9) !important;
}

.ffw-site .ffw-trust-strip .ffw-container {
  min-height: 76px !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-home-hero--mockup {
    min-height: clamp(500px, 54vw, 650px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    min-height: clamp(405px, 42vw, 520px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 25% !important;
    bottom: -52px !important;
    height: clamp(500px, 49vw, 620px) !important;
  }

  .ffw-site .ffw-trust-strip {
    margin-top: -16px !important;
  }
}

@media (max-width: 980px) {
  .ffw-site .ffw-home-hero--mockup {
    min-height: auto !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    padding-bottom: 18px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    min-height: clamp(360px, 52vw, 460px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 29% !important;
    bottom: -44px !important;
    height: clamp(430px, 58vw, 540px) !important;
  }

  .ffw-site .ffw-trust-strip {
    margin-top: 0 !important;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    min-height: 330px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 24% !important;
    bottom: -38px !important;
    height: 390px !important;
  }

  .ffw-site .ffw-trust-strip .ffw-container {
    min-height: auto !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
}


/* FF-S21F — final hero/tree-to-trust strip tightening.
   Reduce the remaining cream gap between the tree scene and the trust strip
   without reintroducing masking or chopping the tree. */
.ffw-site .ffw-home-hero--mockup {
  min-height: clamp(500px, 47vw, 620px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
  padding-bottom: clamp(34px, 3.4vw, 56px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene {
  min-height: clamp(405px, 36vw, 510px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
  bottom: clamp(-82px, -5.1vw, -50px) !important;
  height: clamp(540px, 42vw, 660px) !important;
}

.ffw-site .ffw-trust-strip {
  margin-top: clamp(-42px, -2.8vw, -26px) !important;
}

.ffw-site .ffw-trust-strip .ffw-container {
  min-height: 72px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-home-hero--mockup {
    min-height: clamp(490px, 50vw, 610px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    padding-bottom: clamp(28px, 3vw, 44px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    min-height: clamp(390px, 39vw, 490px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    bottom: -58px !important;
    height: clamp(510px, 47vw, 620px) !important;
  }

  .ffw-site .ffw-trust-strip {
    margin-top: -32px !important;
  }
}

@media (max-width: 980px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    padding-bottom: 16px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    min-height: clamp(350px, 50vw, 440px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    bottom: -48px !important;
    height: clamp(420px, 56vw, 520px) !important;
  }

  .ffw-site .ffw-trust-strip {
    margin-top: 0 !important;
  }
}


/* FF-S22A — full homepage hero rebuild.
   This replaces the accumulated tree/trust-bar patching with one joined hero
   component: copy + visual scene + trust rail inside the same hero wrapper. */
.ffw-site .ffw-home-hero--mockup {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  min-height: auto !important;
  padding: clamp(54px, 5.4vw, 88px) 0 0 !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 76% 31%, rgba(223, 114, 95, 0.10), transparent 29%),
    linear-gradient(180deg, #fbf8f1 0%, #f8f3ea 100%) !important;
}

.ffw-site .ffw-home-hero--mockup::before,
.ffw-site .ffw-home-hero--mockup::after {
  content: none !important;
  display: none !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
  width: min(1400px, calc(100% - 44px)) !important;
  min-height: clamp(500px, 42vw, 610px) !important;
  display: grid !important;
  grid-template-columns: minmax(430px, 0.9fr) minmax(470px, 1.1fr) !important;
  align-items: end !important;
  gap: clamp(32px, 4.5vw, 72px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
  align-self: center !important;
  max-width: 760px !important;
  padding: clamp(24px, 4vw, 52px) 0 clamp(36px, 4.8vw, 74px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-eyebrow {
  margin-bottom: 13px !important;
}

.ffw-site .ffw-home-hero--mockup h1 {
  max-width: 735px !important;
  margin: 0 !important;
  font-size: clamp(3.75rem, 5.05vw, 6.15rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-lead {
  max-width: 530px !important;
  margin-top: 18px !important;
  font-size: clamp(1.02rem, 1.08vw, 1.16rem) !important;
  line-height: 1.62 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-actions {
  margin-top: 26px !important;
  gap: 14px !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-btn {
  min-height: 48px !important;
  padding: 13px 22px !important;
  font-size: 0.94rem !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene {
  position: relative !important;
  align-self: stretch !important;
  min-height: 0 !important;
  height: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__browser,
.ffw-site .ffw-home-hero--mockup .ffw-home-scene__ground,
.ffw-site .ffw-home-hero--mockup .ffw-home-scene::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__art {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch,
.ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral,
.ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
  position: absolute !important;
  pointer-events: none !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch {
  z-index: 1 !important;
  right: 32% !important;
  bottom: 0 !important;
  width: min(520px, 60%) !important;
  height: 86% !important;
  border-radius: 320px 320px 0 0 !important;
  background: rgba(54, 75, 57, 0.065) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
  z-index: 1 !important;
  right: -1% !important;
  bottom: 0 !important;
  width: min(555px, 64%) !important;
  height: 74% !important;
  border-radius: 320px 320px 0 0 !important;
  background: linear-gradient(180deg, rgba(232, 120, 101, 0.86), rgba(232, 120, 101, 0.72)) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
  z-index: 3 !important;
  right: 28% !important;
  bottom: 0 !important;
  width: auto !important;
  height: min(96%, 620px) !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  background: transparent !important;
  filter: drop-shadow(0 18px 30px rgba(45, 46, 46, 0.13)) !important;
  transform: translateZ(0) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-trust-strip--hero {
  position: relative !important;
  z-index: 8 !important;
  width: 100% !important;
  margin: 0 !important;
  border-top: 1px solid rgba(54, 75, 57, 0.10) !important;
  border-bottom: 1px solid rgba(54, 75, 57, 0.08) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 16px 42px rgba(45, 46, 46, 0.035) !important;
  backdrop-filter: blur(12px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-trust-strip--hero .ffw-container {
  width: min(1240px, calc(100% - 44px)) !important;
  min-height: 76px !important;
  padding: 12px 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(16px, 3vw, 42px) !important;
  align-items: center !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-trust-strip--hero .ffw-trust-item {
  min-width: 0 !important;
  padding: 4px 0 !important;
  gap: 11px !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-trust-strip--hero .ffw-trust-item strong {
  width: 39px !important;
  min-width: 39px !important;
  height: 39px !important;
  font-size: 0.8rem !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-trust-strip--hero .ffw-trust-item em {
  font-size: 0.75rem !important;
  line-height: 1.15 !important;
  letter-spacing: 0.045em !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    min-height: clamp(470px, 45vw, 570px) !important;
    grid-template-columns: minmax(390px, 0.92fr) minmax(430px, 1.08fr) !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    font-size: clamp(3.35rem, 5.15vw, 5.35rem) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 27% !important;
    height: min(95%, 565px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch {
    right: 33% !important;
    width: min(475px, 60%) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
    width: min(500px, 63%) !important;
  }
}

@media (max-width: 980px) {
  .ffw-site .ffw-home-hero--mockup {
    padding-top: 46px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 26px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    align-self: auto !important;
    padding: 18px 0 0 !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    max-width: 680px !important;
    font-size: clamp(3rem, 9vw, 4.6rem) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    height: clamp(330px, 50vw, 440px) !important;
    min-height: 0 !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch {
    right: 36% !important;
    width: 50% !important;
    height: 84% !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
    right: 8% !important;
    width: 50% !important;
    height: 72% !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 38% !important;
    bottom: 0 !important;
    height: 95% !important;
  }

  .ffw-home-hero__mobile-form {
    margin: 0 0 20px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-trust-strip--hero .ffw-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    min-height: auto !important;
    padding: 16px 0 !important;
    gap: 12px 18px !important;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-home-hero--mockup {
    padding-top: 32px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid,
  .ffw-site .ffw-home-hero--mockup .ffw-trust-strip--hero .ffw-container {
    width: min(100% - 28px, 560px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-actions {
    align-items: stretch !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-btn {
    justify-content: center !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene {
    height: 310px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__arch {
    right: 34% !important;
    width: 58% !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__coral {
    right: 0 !important;
    width: 60% !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-scene__tree {
    right: 31% !important;
    height: 91% !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-trust-strip--hero .ffw-container {
    grid-template-columns: 1fr !important;
    padding: 14px 0 !important;
  }
}


/* FF-S22B — hero top spacing polish.
   Keep the rebuilt FF-S22A hero/trust structure intact, but raise the copy block
   so the first fold feels calmer and more intentional on desktop/laptop screens. */
.ffw-site .ffw-home-hero--mockup {
  padding-top: clamp(30px, 3.2vw, 50px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
  min-height: clamp(470px, 39vw, 575px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
  align-self: start !important;
  padding-top: clamp(22px, 2.6vw, 42px) !important;
  padding-bottom: clamp(30px, 3.6vw, 58px) !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-home-hero--mockup {
    padding-top: clamp(28px, 3vw, 44px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    min-height: clamp(450px, 42vw, 540px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    align-self: start !important;
    padding-top: clamp(18px, 2.3vw, 34px) !important;
    padding-bottom: clamp(26px, 3vw, 46px) !important;
  }
}

@media (max-width: 980px) {
  .ffw-site .ffw-home-hero--mockup {
    padding-top: 36px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    min-height: auto !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    align-self: auto !important;
    padding: 14px 0 0 !important;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-home-hero--mockup {
    padding-top: 28px !important;
  }
}

/* FF-S22E — Enfold blank-page shell safety net
   These rules only load on Forest Finance shortcode pages. Enfold layout meta is the primary control;
   this CSS removes any remaining Enfold theme chrome if the theme still outputs it. */
body.ffw-enfold-blank-shell #header,
body.ffw-enfold-blank-shell #footer,
body.ffw-enfold-blank-shell #socket,
body.ffw-enfold-blank-shell .title_container,
body.ffw-enfold-blank-shell .breadcrumb,
body.ffw-enfold-blank-shell .avia-breadcrumbs,
body.ffw-enfold-blank-shell .sidebar,
body.ffw-enfold-blank-shell aside.sidebar,
body.ffw-enfold-blank-shell .template-page .sidebar {
  display: none !important;
}

body.ffw-enfold-blank-shell #main,
body.ffw-enfold-blank-shell #wrap_all,
body.ffw-enfold-blank-shell .container_wrap,
body.ffw-enfold-blank-shell .container_wrap_first,
body.ffw-enfold-blank-shell .main_color,
body.ffw-enfold-blank-shell .template-page,
body.ffw-enfold-blank-shell .template-page .entry-content-wrapper,
body.ffw-enfold-blank-shell .template-page .entry-content {
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.ffw-enfold-blank-shell .container_wrap .container,
body.ffw-enfold-blank-shell .template-page .content,
body.ffw-enfold-blank-shell .content {
  border: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

body.ffw-enfold-blank-shell .post-entry,
body.ffw-enfold-blank-shell .entry-content-wrapper,
body.ffw-enfold-blank-shell .entry-content {
  max-width: none !important;
}

/* FF-S23A — responsive audit safety layer
   This is intentionally additive. It stabilises mobile/tablet behaviour before the full mobile-menu rebuild. */
.ffw-site,
.ffw-site * ,
.ffw-site *::before,
.ffw-site *::after {
  box-sizing: border-box !important;
}

html:has(.ffw-site),
body.ffw-enfold-blank-shell {
  overflow-x: clip !important;
}

.ffw-site {
  overflow-x: clip !important;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.ffw-site img,
.ffw-site svg,
.ffw-site video,
.ffw-site iframe {
  max-width: 100% !important;
}

.ffw-site img,
.ffw-site svg,
.ffw-site video {
  height: auto;
}

.ffw-site iframe {
  display: block;
}

.ffw-site .ffw-container,
.ffw-site .ffw-home-hero__grid,
.ffw-site .ffw-trust-strip--hero .ffw-container {
  max-width: var(--ff-page-max, 1400px) !important;
}

.ffw-site .ffw-header,
.ffw-site .ffw-header__inner,
.ffw-site .ffw-primary-nav,
.ffw-site .ffw-nav-list,
.ffw-site .ffw-nav-item,
.ffw-site .ffw-subnav,
.ffw-site .ffw-hero__copy,
.ffw-site .ffw-home-hero__copy,
.ffw-site .ffw-card,
.ffw-site .ffw-copy-card,
.ffw-site .ffw-form,
.ffw-site .ffw-proof-panel,
.ffw-site .ffw-price-card,
.ffw-site .ffw-home-price-card,
.ffw-site .ffw-route-card,
.ffw-site .ffw-section-head,
.ffw-site .ffw-section-head--split,
.ffw-site .ffw-two-col,
.ffw-site .ffw-service-intro,
.ffw-site .ffw-audience-intro,
.ffw-site .ffw-table-scroll {
  min-width: 0 !important;
}

.ffw-site .ffw-table-scroll,
.ffw-site .ffw-pricing-table {
  max-width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

.ffw-site .ffw-actions,
.ffw-site .ffw-badges,
.ffw-site .ffw-footer__trust,
.ffw-site .ffw-pricing-tabs {
  flex-wrap: wrap !important;
}

.ffw-site .ffw-btn,
.ffw-site .ffw-header-cta,
.ffw-site .ffw-nav-link,
.ffw-site .ffw-subnav__link {
  max-width: 100% !important;
}

.ffw-site h1,
.ffw-site h2,
.ffw-site h3,
.ffw-site p,
.ffw-site li,
.ffw-site a,
.ffw-site strong,
.ffw-site em,
.ffw-site span {
  overflow-wrap: anywhere;
}

.ffw-site .ffw-home-hero--mockup h1,
.ffw-site .ffw-hero h1,
.ffw-site .ffw-section-head h2,
.ffw-site .ffw-section-head--split h2 {
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-container,
  .ffw-site .ffw-home-hero__grid,
  .ffw-site .ffw-trust-strip--hero .ffw-container {
    width: min(100% - 32px, var(--ff-page-max, 1400px)) !important;
  }

  .ffw-site .ffw-header__inner {
    gap: 14px !important;
  }

  .ffw-site .ffw-brand {
    min-width: 0 !important;
  }

  .ffw-site .ffw-brand img {
    width: min(178px, 34vw) !important;
  }

  .ffw-site .ffw-nav-list {
    gap: 12px !important;
  }

  .ffw-site .ffw-nav-link {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 1080px) {
  .ffw-site .ffw-mobile-toggle {
    display: grid !important;
  }

  .ffw-site .ffw-header__inner {
    position: relative !important;
  }

  .ffw-site .ffw-primary-nav {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 10px) !important;
    z-index: 1000 !important;
    display: none !important;
    width: 100% !important;
    max-width: none !important;
    max-height: min(72vh, 620px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    padding: 14px !important;
    border: 1px solid rgba(54, 75, 57, 0.12) !important;
    border-radius: 22px !important;
    background: rgba(251, 248, 241, 0.98) !important;
    box-shadow: 0 24px 70px rgba(45, 46, 46, 0.14) !important;
    backdrop-filter: blur(18px);
  }

  .ffw-site .ffw-header.is-open .ffw-primary-nav {
    display: block !important;
  }

  .ffw-site .ffw-nav-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    gap: 6px !important;
  }

  .ffw-site .ffw-nav-link {
    width: 100% !important;
    min-height: 46px !important;
    justify-content: space-between !important;
    padding: 13px 14px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.58) !important;
    line-height: 1.2 !important;
  }

  .ffw-site .ffw-subnav {
    position: static !important;
    display: grid !important;
    width: 100% !important;
    max-width: none !important;
    margin: 6px 0 10px !important;
    padding: 8px !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .ffw-site .ffw-subnav::before {
    content: none !important;
    display: none !important;
  }

  .ffw-site .ffw-header-cta {
    display: none !important;
  }
}

@media (max-width: 782px) {
  .admin-bar .ffw-site .ffw-header {
    top: 46px !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-container,
  .ffw-site .ffw-home-hero__grid,
  .ffw-site .ffw-trust-strip--hero .ffw-container {
    width: min(100% - 28px, 560px) !important;
  }

  .ffw-site .ffw-header__inner {
    min-height: 62px !important;
  }

  .ffw-site .ffw-brand img {
    width: min(162px, 58vw) !important;
    max-height: 38px !important;
  }

  .ffw-site .ffw-mobile-toggle {
    width: 42px !important;
    height: 42px !important;
  }

  .ffw-site .ffw-primary-nav {
    top: calc(100% + 8px) !important;
    max-height: calc(100vh - 128px) !important;
    padding: 12px !important;
    border-radius: 18px !important;
  }

  .ffw-site .ffw-actions {
    align-items: stretch !important;
  }

  .ffw-site .ffw-actions .ffw-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .ffw-site .ffw-form-grid,
  .ffw-site .ffw-card-grid,
  .ffw-site .ffw-pricing-grid,
  .ffw-site .ffw-pricing-summary-grid,
  .ffw-site .ffw-next-steps-grid,
  .ffw-site .ffw-outcome-grid,
  .ffw-site .ffw-route-grid,
  .ffw-site .ffw-resource-migration-grid,
  .ffw-site .ffw-referral-tracking-grid,
  .ffw-site .ffw-partner-flow,
  .ffw-site .ffw-service-snapshot,
  .ffw-site .ffw-audience-snapshot {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 420px) {
  .ffw-site .ffw-container,
  .ffw-site .ffw-home-hero__grid,
  .ffw-site .ffw-trust-strip--hero .ffw-container {
    width: min(100% - 24px, 560px) !important;
  }

  .ffw-site .ffw-header__inner {
    gap: 10px !important;
  }

  .ffw-site .ffw-brand img {
    width: min(148px, 56vw) !important;
  }

  .ffw-site .ffw-primary-nav {
    max-height: calc(100vh - 116px) !important;
  }
}

@media (max-width: 1080px) {
  body.ffw-nav-open.ffw-enfold-blank-shell {
    overflow: hidden !important;
  }
}

/* FF-S23B — mobile menu rebuild */
.ffw-site .ffw-nav-backdrop,
.ffw-site .ffw-mobile-menu-head,
.ffw-site .ffw-mobile-menu-cta,
.ffw-site .ffw-subnav-toggle {
  display: none;
}

.ffw-site .ffw-mobile-toggle,
.ffw-site .ffw-subnav-toggle,
.ffw-site .ffw-mobile-menu-close,
.ffw-site .ffw-nav-backdrop {
  touch-action: manipulation;
}

@media (max-width: 1080px) {
  html.ffw-nav-open,
  body.ffw-nav-open {
    overflow: hidden !important;
  }

  .ffw-site .ffw-header {
    z-index: 10020 !important;
    isolation: isolate;
  }

  .ffw-site .ffw-header__inner {
    position: relative !important;
    z-index: 3 !important;
  }

  .ffw-site .ffw-brand,
  .ffw-site .ffw-mobile-toggle {
    position: relative !important;
    z-index: 5 !important;
  }

  .ffw-site .ffw-mobile-toggle {
    display: grid !important;
    border-color: rgba(54, 75, 57, 0.18) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 12px 26px rgba(45, 46, 46, 0.08) !important;
  }

  .ffw-site .ffw-mobile-toggle:focus-visible,
  .ffw-site .ffw-subnav-toggle:focus-visible,
  .ffw-site .ffw-mobile-menu-close:focus-visible {
    outline: 3px solid rgba(227, 111, 75, 0.42) !important;
    outline-offset: 3px !important;
  }

  .ffw-site .ffw-nav-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1 !important;
    display: block !important;
    width: 100vw !important;
    height: 100vh !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(29, 45, 34, 0.38) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 180ms ease !important;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  .ffw-site .ffw-header.is-open .ffw-nav-backdrop {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .ffw-site .ffw-primary-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 4 !important;
    display: grid !important;
    width: 100% !important;
    max-width: none !important;
    max-height: min(76vh, 680px) !important;
    gap: 14px !important;
    padding: 14px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 1px solid rgba(54, 75, 57, 0.14) !important;
    border-radius: 26px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.98)) !important;
    box-shadow: 0 28px 80px rgba(29, 45, 34, 0.22) !important;
    opacity: 0 !important;
    overscroll-behavior: contain !important;
    pointer-events: none !important;
    transform: translateY(-10px) scale(0.985) !important;
    transform-origin: top center !important;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease !important;
    visibility: hidden !important;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .ffw-site .ffw-header.is-open .ffw-primary-nav {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
    visibility: visible !important;
  }

  .ffw-site .ffw-mobile-menu-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 2px 2px 12px !important;
    border-bottom: 1px solid rgba(54, 75, 57, 0.12) !important;
  }

  .ffw-site .ffw-mobile-menu-head span {
    color: var(--ff-green) !important;
    font-size: 0.78rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
  }

  .ffw-site .ffw-mobile-menu-close {
    display: inline-flex !important;
    min-height: 38px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 13px !important;
    border: 1px solid rgba(54, 75, 57, 0.16) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    color: var(--ff-green) !important;
    cursor: pointer !important;
    font-size: 0.86rem !important;
    font-weight: 900 !important;
  }

  .ffw-site .ffw-nav-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    width: 100% !important;
  }

  .ffw-site .ffw-nav-item {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px !important;
    border: 1px solid rgba(54, 75, 57, 0.1) !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.68) !important;
  }

  .ffw-site .ffw-nav-item:not(.ffw-nav-item--has-children) .ffw-nav-link {
    grid-column: 1 / -1 !important;
  }

  .ffw-site .ffw-nav-link {
    width: 100% !important;
    min-height: 48px !important;
    justify-content: flex-start !important;
    padding: 12px 13px !important;
    border-radius: 16px !important;
    background: transparent !important;
    color: var(--ff-charcoal) !important;
    font-size: 1rem !important;
    font-weight: 950 !important;
    line-height: 1.2 !important;
  }

  .ffw-site .ffw-nav-link:hover,
  .ffw-site .ffw-nav-link:focus-visible,
  .ffw-site .ffw-nav-item.is-active > .ffw-nav-link {
    background: rgba(239, 232, 214, 0.72) !important;
    color: var(--ff-green) !important;
  }

  .ffw-site .ffw-nav-link .ffw-nav-caret {
    display: none !important;
  }

  .ffw-site .ffw-subnav-toggle {
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(54, 75, 57, 0.13) !important;
    border-radius: 15px !important;
    background: rgba(251, 248, 241, 0.92) !important;
    cursor: pointer !important;
  }

  .ffw-site .ffw-subnav-toggle::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--ff-green);
    border-bottom: 2px solid var(--ff-green);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 160ms ease;
  }

  .ffw-site .ffw-nav-item.is-subnav-open > .ffw-subnav-toggle::before {
    transform: rotate(-135deg) translateY(-1px);
  }

  .ffw-site .ffw-subnav {
    position: static !important;
    grid-column: 1 / -1 !important;
    display: none !important;
    width: 100% !important;
    max-width: none !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 8px !important;
    border: 1px solid rgba(54, 75, 57, 0.1) !important;
    border-radius: 17px !important;
    background: rgba(255, 255, 255, 0.76) !important;
    box-shadow: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .ffw-site .ffw-nav-item.is-subnav-open > .ffw-subnav {
    display: grid !important;
  }

  .ffw-site .ffw-subnav::before {
    content: none !important;
    display: none !important;
  }

  .ffw-site .ffw-subnav__link {
    gap: 3px !important;
    padding: 12px 13px !important;
    border-radius: 14px !important;
    background: rgba(251, 248, 241, 0.76) !important;
  }

  .ffw-site .ffw-subnav__link:hover,
  .ffw-site .ffw-subnav__link:focus-visible,
  .ffw-site .ffw-subnav__link.is-active {
    background: rgba(239, 232, 214, 0.84) !important;
  }

  .ffw-site .ffw-subnav__link small {
    font-size: 0.82rem !important;
  }

  .ffw-site .ffw-mobile-menu-cta {
    display: flex !important;
    min-height: 50px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 18px !important;
    border-radius: 999px !important;
    background: var(--ff-green) !important;
    color: var(--ff-white) !important;
    font-size: 0.98rem !important;
    font-weight: 950 !important;
    text-align: center !important;
    text-decoration: none !important;
    box-shadow: 0 18px 34px rgba(54, 75, 57, 0.2) !important;
  }

  .ffw-site .ffw-header-cta {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-primary-nav {
    top: calc(100% + 8px) !important;
    max-height: calc(100vh - 126px) !important;
    padding: 12px !important;
    border-radius: 22px !important;
  }

  .ffw-site .ffw-nav-item {
    border-radius: 18px !important;
  }

  .ffw-site .ffw-nav-link {
    min-height: 46px !important;
    font-size: 0.98rem !important;
  }
}

@media (max-width: 420px) {
  .ffw-site .ffw-primary-nav {
    max-height: calc(100vh - 112px) !important;
    padding: 10px !important;
  }

  .ffw-site .ffw-mobile-menu-head {
    padding-bottom: 10px !important;
  }

  .ffw-site .ffw-nav-list {
    gap: 7px !important;
  }

  .ffw-site .ffw-nav-item {
    gap: 6px !important;
    padding: 5px !important;
  }

  .ffw-site .ffw-subnav-toggle {
    width: 42px !important;
    height: 42px !important;
  }
}

/* FF-S23C — header responsiveness
   This final header layer keeps the desktop header compact, prevents CTA/nav wrapping,
   and gives mobile/tablet a predictable sticky header height and menu anchor. */
.ffw-site .ffw-header {
  width: 100% !important;
  max-width: 100% !important;
  z-index: 10020 !important;
  transition: box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease !important;
}

.ffw-site .ffw-header.is-scrolled {
  border-bottom-color: rgba(54, 75, 57, 0.16) !important;
  background: rgba(251, 248, 241, 0.96) !important;
  box-shadow: 0 12px 32px rgba(29, 45, 34, 0.075) !important;
}

.ffw-site .ffw-header__inner {
  width: min(var(--ff-page-max, 1400px), calc(100% - 32px)) !important;
  max-width: var(--ff-page-max, 1400px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.ffw-site .ffw-brand {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.ffw-site .ffw-brand img {
  display: block !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.ffw-site .ffw-primary-nav {
  min-width: 0 !important;
}

.ffw-site .ffw-nav-link,
.ffw-site .ffw-header-cta,
.ffw-site .ffw-mobile-menu-cta {
  white-space: nowrap !important;
}

@media (min-width: 1081px) {
  .ffw-site .ffw-header__inner {
    display: grid !important;
    grid-template-columns: minmax(168px, 0.72fr) minmax(0, auto) minmax(170px, 0.72fr) !important;
    min-height: clamp(66px, 5vw, 74px) !important;
    align-items: center !important;
    gap: clamp(12px, 1.5vw, 22px) !important;
  }

  .ffw-site .ffw-brand {
    justify-self: start !important;
  }

  .ffw-site .ffw-brand img {
    width: clamp(168px, 13.2vw, 196px) !important;
    max-height: 42px !important;
  }

  .ffw-site .ffw-primary-nav {
    justify-self: center !important;
    width: auto !important;
    max-width: none !important;
  }

  .ffw-site .ffw-nav-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: clamp(12px, 1.35vw, 20px) !important;
  }

  .ffw-site .ffw-nav-item {
    flex: 0 0 auto !important;
  }

  .ffw-site .ffw-nav-link {
    min-height: 40px !important;
    padding: 9px 2px !important;
    border-radius: 999px !important;
    font-size: clamp(0.89rem, 0.76vw, 0.97rem) !important;
    line-height: 1.05 !important;
  }

  .ffw-site .ffw-header-cta {
    justify-self: end !important;
    min-width: max-content !important;
    min-height: 44px !important;
    padding: 12px 18px !important;
    font-size: clamp(0.86rem, 0.72vw, 0.92rem) !important;
  }

  .ffw-site .ffw-mobile-toggle,
  .ffw-site .ffw-mobile-menu-head,
  .ffw-site .ffw-mobile-menu-cta,
  .ffw-site .ffw-nav-backdrop,
  .ffw-site .ffw-subnav-toggle {
    display: none !important;
  }

  .ffw-site .ffw-subnav {
    top: calc(100% + 12px) !important;
  }
}

@media (min-width: 1081px) and (max-width: 1240px) {
  .ffw-site .ffw-header__inner {
    grid-template-columns: minmax(152px, 0.66fr) minmax(0, auto) minmax(154px, 0.66fr) !important;
    gap: 14px !important;
  }

  .ffw-site .ffw-brand img {
    width: clamp(154px, 13.6vw, 176px) !important;
  }

  .ffw-site .ffw-nav-list {
    gap: 12px !important;
  }

  .ffw-site .ffw-nav-link {
    font-size: 0.88rem !important;
  }

  .ffw-site .ffw-header-cta {
    min-height: 42px !important;
    padding: 11px 14px !important;
    font-size: 0.84rem !important;
  }
}

@media (max-width: 1080px) {
  .ffw-site .ffw-header {
    top: 0 !important;
  }

  .admin-bar .ffw-site .ffw-header {
    top: 32px !important;
  }

  .ffw-site .ffw-header__inner {
    display: flex !important;
    width: min(100% - 32px, var(--ff-page-max, 1400px)) !important;
    min-height: 66px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
  }

  .ffw-site .ffw-brand img {
    width: clamp(156px, 25vw, 184px) !important;
    max-height: 40px !important;
  }

  .ffw-site .ffw-mobile-toggle {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  .ffw-site .ffw-primary-nav {
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 10px) !important;
    width: 100% !important;
  }

  .ffw-site .ffw-nav-link,
  .ffw-site .ffw-mobile-menu-cta {
    white-space: normal !important;
  }
}

@media (max-width: 782px) {
  .admin-bar .ffw-site .ffw-header {
    top: 46px !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-header__inner {
    width: min(100% - 28px, 560px) !important;
    min-height: 60px !important;
    gap: 12px !important;
  }

  .ffw-site .ffw-brand img {
    width: clamp(142px, 46vw, 164px) !important;
    max-height: 36px !important;
  }

  .ffw-site .ffw-mobile-toggle {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    padding: 9px !important;
  }

  .ffw-site .ffw-primary-nav {
    top: calc(100% + 8px) !important;
    max-height: calc(100svh - 110px) !important;
  }
}

@media (max-width: 420px) {
  .ffw-site .ffw-header__inner {
    width: min(100% - 24px, 560px) !important;
    min-height: 58px !important;
  }

  .ffw-site .ffw-brand img {
    width: clamp(132px, 48vw, 150px) !important;
  }

  .ffw-site .ffw-mobile-toggle {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }

  .ffw-site .ffw-mobile-toggle span {
    width: 17px !important;
  }

  .ffw-site .ffw-primary-nav {
    max-height: calc(100svh - 100px) !important;
  }
}


/* FF-S23D — homepage responsive polish
   Final homepage-only responsive layer for the current mockup direction.
   This keeps the approved desktop style while making the hero, tree, trust rail,
   service cards, route cards, proof/pricing/process/resource sections and CTA bands
   scale deliberately across tablet and mobile. */
.ffw-site .ffw-home-hero--mockup,
.ffw-site .ffw-section--mockup-services,
.ffw-site .ffw-section--mockup-growth,
.ffw-site .ffw-section--mockup-routes,
.ffw-site .ffw-section--home-proof,
.ffw-site .ffw-section--home-pricing,
.ffw-site .ffw-section--home-resources,
.ffw-site .ffw-cta-band {
  overflow-x: clip !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid,
.ffw-site .ffw-home-services-layout,
.ffw-site .ffw-growth-band,
.ffw-site .ffw-proof-panel,
.ffw-site .ffw-home-price-grid,
.ffw-site .ffw-process,
.ffw-site .ffw-card-grid,
.ffw-site .ffw-route-grid,
.ffw-site .ffw-split-card,
.ffw-site .ffw-cta-band .ffw-container {
  min-width: 0 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy,
.ffw-site .ffw-home-services-intro,
.ffw-site .ffw-section-head,
.ffw-site .ffw-section-head--split,
.ffw-site .ffw-growth-band > *,
.ffw-site .ffw-proof-panel > *,
.ffw-site .ffw-split-card > *,
.ffw-site .ffw-cta-band .ffw-container > * {
  min-width: 0 !important;
}

@media (max-width: 1180px) and (min-width: 1081px) {
  .ffw-site .ffw-home-hero--mockup {
    padding-top: clamp(42px, 4.8vw, 64px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr) !important;
    gap: clamp(28px, 4vw, 44px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    padding-bottom: clamp(92px, 10vw, 142px) !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    font-size: clamp(3.6rem, 5.25vw, 5.2rem) !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: clamp(460px, 43vw, 580px) !important;
  }
}

@media (max-width: 1080px) {
  .ffw-site .ffw-home-hero--mockup {
    min-height: auto !important;
    padding: clamp(42px, 6.5vw, 72px) 0 0 !important;
  }

  .ffw-site .ffw-home-hero--mockup::after {
    content: none !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "copy"
      "scene"
      "mobile-form" !important;
    gap: clamp(22px, 4.2vw, 36px) !important;
    align-items: start !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    grid-area: copy !important;
    max-width: 760px !important;
    padding-bottom: 0 !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    max-width: 760px !important;
    font-size: clamp(3.6rem, 8.6vw, 5.9rem) !important;
    line-height: 1.01 !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-lead {
    max-width: 640px !important;
    margin-top: clamp(18px, 2.8vw, 28px) !important;
  }

  .ffw-site .ffw-home-scene {
    grid-area: scene !important;
    width: min(760px, 100%) !important;
    min-height: clamp(390px, 46vw, 520px) !important;
    margin: 0 auto !important;
  }

  .ffw-site .ffw-home-scene__art {
    overflow: visible !important;
  }

  .ffw-site .ffw-home-scene__arch {
    right: 31% !important;
    width: min(430px, 58%) !important;
    height: 86% !important;
  }

  .ffw-site .ffw-home-scene__coral {
    right: 1% !important;
    width: min(420px, 58%) !important;
    height: 72% !important;
  }

  .ffw-site .ffw-home-scene__tree {
    right: 31% !important;
    width: min(345px, 45%) !important;
    max-height: 90% !important;
  }

  .ffw-home-hero__mobile-form {
    grid-area: mobile-form !important;
    width: 100% !important;
  }

  .ffw-site .ffw-trust-strip {
    margin-top: 0 !important;
  }

  .ffw-site .ffw-trust-strip .ffw-container {
    width: min(100% - 36px, 760px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 18px !important;
    min-height: auto !important;
    padding: 20px 0 !important;
  }

  .ffw-site .ffw-trust-item {
    justify-content: flex-start !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(54, 75, 57, 0.10) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.54) !important;
  }

  .ffw-site .ffw-home-services-layout,
  .ffw-site .ffw-growth-band,
  .ffw-site .ffw-proof-panel,
  .ffw-site .ffw-section-head--split,
  .ffw-site .ffw-split-card,
  .ffw-site .ffw-cta-band .ffw-container {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ffw-site .ffw-home-services-layout,
  .ffw-site .ffw-section-head--split {
    gap: clamp(20px, 3.8vw, 34px) !important;
  }

  .ffw-site .ffw-card-grid--home-feature-service,
  .ffw-site .ffw-section--mockup-routes .ffw-route-grid,
  .ffw-site .ffw-home-price-grid,
  .ffw-site .ffw-card-grid--resource {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ffw-site .ffw-section--mockup-routes .ffw-route-grid {
    gap: 16px !important;
  }

  .ffw-site .ffw-section--mockup-routes .ffw-route-card,
  .ffw-site .ffw-card-grid--home-feature-service .ffw-card,
  .ffw-site .ffw-home-price-card,
  .ffw-site .ffw-card-grid--resource .ffw-card {
    min-height: 0 !important;
  }

  .ffw-site .ffw-growth-band {
    justify-items: start !important;
  }

  .ffw-site .ffw-growth-band .ffw-btn,
  .ffw-site .ffw-split-card .ffw-btn,
  .ffw-site .ffw-cta-band .ffw-btn {
    width: fit-content !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-home-hero--mockup {
    padding-top: clamp(30px, 8vw, 44px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
    width: min(100% - 28px, 560px) !important;
    gap: 18px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-eyebrow {
    margin-bottom: 12px !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    max-width: 100% !important;
    font-size: clamp(2.82rem, 13vw, 4.05rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.04em !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 span {
    white-space: normal !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-lead {
    max-width: 100% !important;
    margin-top: 16px !important;
    font-size: 1.02rem !important;
    line-height: 1.62 !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-actions .ffw-btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 50px !important;
    padding: 14px 18px !important;
  }

  .ffw-site .ffw-home-scene {
    width: min(100%, 430px) !important;
    min-height: clamp(265px, 66vw, 350px) !important;
    margin-top: -2px !important;
  }

  .ffw-site .ffw-home-scene__art {
    overflow: hidden !important;
  }

  .ffw-site .ffw-home-scene__arch {
    right: 33% !important;
    bottom: 0 !important;
    width: 61% !important;
    height: 82% !important;
  }

  .ffw-site .ffw-home-scene__coral {
    right: -15% !important;
    bottom: 0 !important;
    width: 70% !important;
    height: 66% !important;
  }

  .ffw-site .ffw-home-scene__tree {
    right: 28% !important;
    bottom: 0 !important;
    width: min(58%, 220px) !important;
    max-height: 91% !important;
  }

  .ffw-home-hero__mobile-form {
    display: block !important;
    margin: 2px 0 26px !important;
  }

  .ffw-home-hero__mobile-form .ffw-form {
    padding: 22px 18px !important;
    border-radius: 18px !important;
  }

  .ffw-home-hero__mobile-form .ffw-form h2 {
    font-size: clamp(1.7rem, 8vw, 2.15rem) !important;
  }

  .ffw-site .ffw-trust-strip .ffw-container {
    width: min(100% - 28px, 560px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 16px 0 !important;
  }

  .ffw-site .ffw-trust-item {
    gap: 9px !important;
    padding: 9px 10px !important;
    border-radius: 14px !important;
  }

  .ffw-site .ffw-trust-item strong {
    min-width: 34px !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 0.72rem !important;
  }

  .ffw-site .ffw-trust-item em {
    max-width: none !important;
    font-size: 0.64rem !important;
    line-height: 1.16 !important;
  }

  .ffw-site .ffw-section--mockup-services,
  .ffw-site .ffw-section--mockup-routes,
  .ffw-site .ffw-section--home-proof,
  .ffw-site .ffw-section--home-pricing,
  .ffw-site .ffw-section--home-resources,
  .ffw-site .ffw-section--split {
    padding-top: clamp(52px, 12vw, 72px) !important;
    padding-bottom: clamp(48px, 11vw, 68px) !important;
  }

  .ffw-site .ffw-section--mockup-growth {
    padding-top: 16px !important;
    padding-bottom: clamp(52px, 12vw, 72px) !important;
  }

  .ffw-site .ffw-home-services-layout {
    gap: 24px !important;
  }

  .ffw-site .ffw-section-head--split {
    gap: 14px !important;
    align-items: start !important;
  }

  .ffw-site .ffw-section-head--split h2,
  .ffw-site .ffw-section-head h2,
  .ffw-site .ffw-home-services-intro h2,
  .ffw-site .ffw-proof-panel h2,
  .ffw-site .ffw-growth-band h2,
  .ffw-site .ffw-split-card h2,
  .ffw-site .ffw-cta-band h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.15rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.045em !important;
  }

  .ffw-site .ffw-section-head--split > p,
  .ffw-site .ffw-section-head p:last-child,
  .ffw-site .ffw-growth-band p,
  .ffw-site .ffw-proof-panel__copy p:not(.ffw-eyebrow),
  .ffw-site .ffw-split-card p,
  .ffw-site .ffw-cta-band p {
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }

  .ffw-site .ffw-card-grid--home-feature-service,
  .ffw-site .ffw-section--mockup-routes .ffw-route-grid,
  .ffw-site .ffw-home-price-grid,
  .ffw-site .ffw-process,
  .ffw-site .ffw-card-grid--resource {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ffw-site .ffw-card-grid--home-feature-service .ffw-card,
  .ffw-site .ffw-section--mockup-routes .ffw-route-card,
  .ffw-site .ffw-home-price-card,
  .ffw-site .ffw-process article,
  .ffw-site .ffw-card-grid--resource .ffw-card,
  .ffw-site .ffw-split-card {
    padding: 24px 20px !important;
    border-radius: 18px !important;
  }

  .ffw-site .ffw-card-grid--home-feature-service .ffw-card h3,
  .ffw-site .ffw-route-card h3,
  .ffw-site .ffw-home-price-card h3,
  .ffw-site .ffw-process h3,
  .ffw-site .ffw-card-grid--resource .ffw-card h3 {
    font-size: clamp(1.35rem, 7vw, 1.82rem) !important;
  }

  .ffw-site .ffw-growth-band,
  .ffw-site .ffw-proof-panel,
  .ffw-site .ffw-cta-band .ffw-container {
    padding: 28px 20px !important;
    border-radius: 20px !important;
  }

  .ffw-site .ffw-growth-band .ffw-btn,
  .ffw-site .ffw-split-card .ffw-btn,
  .ffw-site .ffw-cta-band .ffw-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .ffw-site .ffw-note {
    padding: 18px !important;
    font-size: 0.95rem !important;
  }

  .ffw-site .ffw-cta-band {
    padding: 40px 0 64px !important;
  }
}

@media (max-width: 420px) {
  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid,
  .ffw-site .ffw-trust-strip .ffw-container {
    width: min(100% - 24px, 420px) !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    font-size: clamp(2.52rem, 14.8vw, 3.35rem) !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: clamp(230px, 64vw, 295px) !important;
  }

  .ffw-site .ffw-home-scene__tree {
    right: 27% !important;
    width: min(62%, 190px) !important;
  }

  .ffw-site .ffw-trust-item {
    align-items: center !important;
    padding: 8px !important;
  }

  .ffw-site .ffw-trust-item strong {
    min-width: 31px !important;
    width: 31px !important;
    height: 31px !important;
    font-size: 0.66rem !important;
  }

  .ffw-site .ffw-trust-item em {
    font-size: 0.59rem !important;
    letter-spacing: 0.03em !important;
  }

  .ffw-site .ffw-card-grid--home-feature-service .ffw-card,
  .ffw-site .ffw-section--mockup-routes .ffw-route-card,
  .ffw-site .ffw-home-price-card,
  .ffw-site .ffw-process article,
  .ffw-site .ffw-card-grid--resource .ffw-card,
  .ffw-site .ffw-growth-band,
  .ffw-site .ffw-proof-panel,
  .ffw-site .ffw-split-card,
  .ffw-site .ffw-cta-band .ffw-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}


/* FF-S23E — interior pages responsive polish
   This final layer focuses on every non-homepage template: audience pages, service pages,
   pricing, resources, contact/consultation, referral, partner and thank-you pages. */
.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) {
  padding-top: clamp(64px, 7vw, 118px) !important;
  padding-bottom: clamp(48px, 6vw, 92px) !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-hero__grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.64fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: center !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-hero__copy {
  max-width: 820px !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1 {
  max-width: 820px !important;
  font-size: clamp(3.35rem, 5.2vw, 5.65rem) !important;
  line-height: 1.01 !important;
  letter-spacing: -0.052em !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-lead {
  max-width: 660px !important;
  margin-top: clamp(18px, 2.4vw, 26px) !important;
  font-size: clamp(1.05rem, 1.25vw, 1.24rem) !important;
  line-height: 1.68 !important;
}

.ffw-site .ffw-interior-scene {
  min-height: clamp(360px, 34vw, 500px) !important;
}

.ffw-site .ffw-audience-intro,
.ffw-site .ffw-service-intro,
.ffw-site .ffw-resource-featured,
.ffw-site .ffw-pricing-missing,
.ffw-site .ffw-partner-flow,
.ffw-site .ffw-referral-tracking-grid,
.ffw-site .ffw-thank-you-hero__grid,
.ffw-site .ffw-referral-hero__grid,
.ffw-site .ffw-download-box,
.ffw-site .ffw-two-col {
  min-width: 0 !important;
}

.ffw-site .ffw-audience-snapshot,
.ffw-site .ffw-service-snapshot,
.ffw-site .ffw-pricing-summary-grid,
.ffw-site .ffw-service-process,
.ffw-site .ffw-outcome-grid,
.ffw-site .ffw-next-steps-grid,
.ffw-site .ffw-partner-flow__steps,
.ffw-site .ffw-referral-steps {
  display: grid !important;
}

.ffw-site .ffw-card-grid--service,
.ffw-site .ffw-card-grid--service-inclusion,
.ffw-site .ffw-card-grid--service-hub,
.ffw-site .ffw-card-grid--resource-topic,
.ffw-site .ffw-card-grid--resource-posts,
.ffw-site .ffw-card-grid--partner,
.ffw-site .ffw-card-grid--referral-route,
.ffw-site .ffw-card-grid--related,
.ffw-site .ffw-card-grid--thank-you-related,
.ffw-site .ffw-card-grid--pricing-addon {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ffw-site .ffw-card-grid--service .ffw-card,
.ffw-site .ffw-card-grid--service-inclusion .ffw-card,
.ffw-site .ffw-card-grid--service-hub .ffw-card,
.ffw-site .ffw-card-grid--resource-topic .ffw-card,
.ffw-site .ffw-card-grid--resource-posts .ffw-card,
.ffw-site .ffw-card-grid--partner .ffw-card,
.ffw-site .ffw-card-grid--referral-route .ffw-card,
.ffw-site .ffw-card-grid--related .ffw-card,
.ffw-site .ffw-card-grid--thank-you-related .ffw-card,
.ffw-site .ffw-card-grid--pricing-addon .ffw-card,
.ffw-site .ffw-price-card,
.ffw-site .ffw-outcome-card,
.ffw-site .ffw-next-step-card {
  min-width: 0 !important;
}

.ffw-site .ffw-section-head--split,
.ffw-site .ffw-section-head--inline {
  min-width: 0 !important;
}

.ffw-site .ffw-final-content-panel {
  margin-top: 18px !important;
}

.ffw-site .ffw-form,
.ffw-site .ffw-form-shell {
  min-width: 0 !important;
}

.ffw-site .ffw-form input,
.ffw-site .ffw-form select,
.ffw-site .ffw-form textarea,
.ffw-site .ffw-form-shell input,
.ffw-site .ffw-form-shell select,
.ffw-site .ffw-form-shell textarea {
  width: 100% !important;
  max-width: 100% !important;
}

.ffw-site .ffw-pricing-tabs {
  min-width: 0 !important;
}

.ffw-site .ffw-pricing-tabs a,
.ffw-site .ffw-pricing-tabs span {
  white-space: normal !important;
}

.ffw-site .ffw-pricing-table {
  min-width: 720px !important;
}

.ffw-site .ffw-resource-featured__panel,
.ffw-site .ffw-conversion-panel,
.ffw-site .ffw-referral-card,
.ffw-site .ffw-source-summary {
  min-width: 0 !important;
}

.ffw-site .ffw-source-pill,
.ffw-site .ffw-source-summary,
.ffw-site .ffw-referral-url-row,
.ffw-site .ffw-conversion-panel dl div {
  max-width: 100% !important;
}

.ffw-site .ffw-source-pill strong,
.ffw-site .ffw-source-summary strong,
.ffw-site .ffw-referral-url-row code,
.ffw-site .ffw-conversion-panel code {
  overflow-wrap: anywhere !important;
}

@media (max-width: 1280px) {
  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-hero__grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.58fr) !important;
    gap: clamp(28px, 4vw, 56px) !important;
  }

  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1 {
    font-size: clamp(3.05rem, 5.5vw, 5rem) !important;
  }

  .ffw-site .ffw-interior-scene {
    min-height: clamp(330px, 32vw, 440px) !important;
  }

  .ffw-site .ffw-card-grid--service,
  .ffw-site .ffw-card-grid--service-inclusion,
  .ffw-site .ffw-card-grid--service-hub,
  .ffw-site .ffw-card-grid--resource-topic,
  .ffw-site .ffw-card-grid--resource-posts,
  .ffw-site .ffw-card-grid--partner,
  .ffw-site .ffw-card-grid--referral-route,
  .ffw-site .ffw-card-grid--related,
  .ffw-site .ffw-card-grid--thank-you-related,
  .ffw-site .ffw-card-grid--pricing-addon {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ffw-site .ffw-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1080px) {
  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) {
    padding-top: clamp(52px, 7vw, 78px) !important;
    padding-bottom: clamp(40px, 6vw, 70px) !important;
  }

  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-hero__grid,
  .ffw-site .ffw-audience-intro,
  .ffw-site .ffw-service-intro,
  .ffw-site .ffw-resource-featured,
  .ffw-site .ffw-resource-migration-grid,
  .ffw-site .ffw-pricing-missing,
  .ffw-site .ffw-partner-flow,
  .ffw-site .ffw-referral-tracking-grid,
  .ffw-site .ffw-thank-you-hero__grid,
  .ffw-site .ffw-referral-hero__grid,
  .ffw-site .ffw-download-box,
  .ffw-site .ffw-two-col,
  .ffw-site .ffw-split-card,
  .ffw-site .ffw-cta-band .ffw-container {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-hero__grid {
    gap: clamp(26px, 4vw, 42px) !important;
  }

  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-actions .ffw-btn {
    width: auto !important;
  }

  .ffw-site .ffw-interior-scene {
    width: min(100%, 560px) !important;
    min-height: clamp(300px, 46vw, 390px) !important;
    margin-inline: auto !important;
  }

  .ffw-site .ffw-audience-snapshot,
  .ffw-site .ffw-service-snapshot,
  .ffw-site .ffw-pricing-summary-grid,
  .ffw-site .ffw-service-process,
  .ffw-site .ffw-outcome-grid,
  .ffw-site .ffw-next-steps-grid,
  .ffw-site .ffw-partner-flow__steps,
  .ffw-site .ffw-referral-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ffw-site .ffw-section-head--split,
  .ffw-site .ffw-section-head--inline {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    justify-content: start !important;
    gap: 16px !important;
  }

  .ffw-site .ffw-section-head--inline .ffw-btn,
  .ffw-site .ffw-section-head--split .ffw-btn {
    width: fit-content !important;
  }

  .ffw-site .ffw-service-software,
  .ffw-site .ffw-audience-highlight,
  .ffw-site .ffw-pricing-missing {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
  }

  .ffw-site .ffw-pricing-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .ffw-site .ffw-pricing-tabs a,
  .ffw-site .ffw-pricing-tabs span {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .ffw-site .ffw-footer__top {
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
  }
}

@media (max-width: 900px) {
  .ffw-site .ffw-card-grid--service,
  .ffw-site .ffw-card-grid--service-inclusion,
  .ffw-site .ffw-card-grid--service-hub,
  .ffw-site .ffw-card-grid--resource-topic,
  .ffw-site .ffw-card-grid--resource-posts,
  .ffw-site .ffw-card-grid--partner,
  .ffw-site .ffw-card-grid--referral-route,
  .ffw-site .ffw-card-grid--related,
  .ffw-site .ffw-card-grid--thank-you-related,
  .ffw-site .ffw-card-grid--pricing-addon,
  .ffw-site .ffw-pricing-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ffw-site .ffw-price-card--featured {
    transform: none !important;
  }

  .ffw-site .ffw-table-scroll {
    margin-inline: calc((100vw - min(100vw, 100%)) / 2) !important;
    padding-bottom: 10px !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) {
    padding-top: 42px !important;
    padding-bottom: 34px !important;
  }

  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1,
  .ffw-site .ffw-thank-you-hero h1,
  .ffw-site .ffw-referral-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.045em !important;
  }

  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-lead,
  .ffw-site .ffw-thank-you-hero .ffw-lead,
  .ffw-site .ffw-referral-hero .ffw-lead {
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }

  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-actions,
  .ffw-site .ffw-thank-you-hero .ffw-actions,
  .ffw-site .ffw-referral-hero .ffw-actions,
  .ffw-site .ffw-service-software .ffw-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) .ffw-actions .ffw-btn,
  .ffw-site .ffw-thank-you-hero .ffw-actions .ffw-btn,
  .ffw-site .ffw-referral-hero .ffw-actions .ffw-btn,
  .ffw-site .ffw-service-software .ffw-actions .ffw-btn,
  .ffw-site .ffw-section-head--inline .ffw-btn,
  .ffw-site .ffw-section-head--split .ffw-btn,
  .ffw-site .ffw-placeholder-panel .ffw-btn,
  .ffw-site .ffw-download-box .ffw-btn,
  .ffw-site .ffw-form button {
    width: 100% !important;
    justify-content: center !important;
  }

  .ffw-site .ffw-interior-scene {
    min-height: clamp(250px, 62vw, 330px) !important;
    margin-top: 0 !important;
  }

  .ffw-site .ffw-interior-scene__arch {
    left: 6% !important;
    right: auto !important;
    width: 58% !important;
    height: 82% !important;
  }

  .ffw-site .ffw-interior-scene__coral {
    right: -8% !important;
    width: 62% !important;
    height: 66% !important;
  }

  .ffw-site .ffw-interior-scene__tree {
    right: 30% !important;
    bottom: 0 !important;
    width: min(48%, 190px) !important;
    max-height: 88% !important;
  }

  .ffw-site .ffw-interior-scene__card {
    right: 2% !important;
    bottom: 14px !important;
    width: min(235px, 70%) !important;
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .ffw-site .ffw-interior-scene__card strong {
    font-size: clamp(1.15rem, 6vw, 1.55rem) !important;
  }

  .ffw-site .ffw-interior-scene__card p {
    display: none !important;
  }

  .ffw-site .ffw-trust-strip:not(.ffw-trust-strip--hero) .ffw-container {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: min(100% - 28px, 560px) !important;
    padding: 14px 0 !important;
  }

  .ffw-site .ffw-trust-strip:not(.ffw-trust-strip--hero) .ffw-trust-item {
    justify-content: flex-start !important;
    padding: 8px 10px !important;
    border: 1px solid rgba(54, 75, 57, 0.10) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.62) !important;
  }

  .ffw-site .ffw-audience-snapshot,
  .ffw-site .ffw-service-snapshot,
  .ffw-site .ffw-pricing-summary-grid,
  .ffw-site .ffw-service-process,
  .ffw-site .ffw-outcome-grid,
  .ffw-site .ffw-next-steps-grid,
  .ffw-site .ffw-partner-flow__steps,
  .ffw-site .ffw-referral-steps,
  .ffw-site .ffw-pricing-tabs {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ffw-site .ffw-section:not(.ffw-section--mockup-services):not(.ffw-section--mockup-routes):not(.ffw-section--home-proof):not(.ffw-section--home-pricing):not(.ffw-section--home-resources):not(.ffw-home-trust-proof) {
    padding-top: clamp(46px, 11vw, 66px) !important;
    padding-bottom: clamp(46px, 11vw, 66px) !important;
  }

  .ffw-site .ffw-copy-card,
  .ffw-site .ffw-list-panel,
  .ffw-site .ffw-form,
  .ffw-site .ffw-form-shell,
  .ffw-site .ffw-placeholder-panel,
  .ffw-site .ffw-final-content-panel,
  .ffw-site .ffw-resource-featured,
  .ffw-site .ffw-resource-featured__panel,
  .ffw-site .ffw-pricing-missing,
  .ffw-site .ffw-audience-highlight,
  .ffw-site .ffw-service-software,
  .ffw-site .ffw-conversion-panel,
  .ffw-site .ffw-referral-card,
  .ffw-site .ffw-download-box,
  .ffw-site .ffw-source-summary {
    padding: 24px 20px !important;
    border-radius: 18px !important;
  }

  .ffw-site .ffw-card-grid--service .ffw-card,
  .ffw-site .ffw-card-grid--service-inclusion .ffw-card,
  .ffw-site .ffw-card-grid--service-hub .ffw-card,
  .ffw-site .ffw-card-grid--resource-topic .ffw-card,
  .ffw-site .ffw-card-grid--resource-posts .ffw-card,
  .ffw-site .ffw-card-grid--partner .ffw-card,
  .ffw-site .ffw-card-grid--referral-route .ffw-card,
  .ffw-site .ffw-card-grid--related .ffw-card,
  .ffw-site .ffw-card-grid--thank-you-related .ffw-card,
  .ffw-site .ffw-card-grid--pricing-addon .ffw-card,
  .ffw-site .ffw-price-card,
  .ffw-site .ffw-outcome-card,
  .ffw-site .ffw-next-step-card,
  .ffw-site .ffw-pricing-summary-card,
  .ffw-site .ffw-audience-snapshot__item,
  .ffw-site .ffw-service-snapshot__item,
  .ffw-site .ffw-service-process article,
  .ffw-site .ffw-partner-flow__steps article,
  .ffw-site .ffw-referral-steps article {
    min-height: 0 !important;
    padding: 22px 20px !important;
    border-radius: 18px !important;
  }

  .ffw-site .ffw-section-head,
  .ffw-site .ffw-section-head--split,
  .ffw-site .ffw-section-head--inline {
    margin-bottom: 26px !important;
  }

  .ffw-site .ffw-section-head h2,
  .ffw-site .ffw-audience-intro__copy h2,
  .ffw-site .ffw-service-intro__copy h2,
  .ffw-site .ffw-copy-card h2,
  .ffw-site .ffw-list-panel h2,
  .ffw-site .ffw-resource-featured h2,
  .ffw-site .ffw-pricing-missing h2,
  .ffw-site .ffw-audience-highlight h2,
  .ffw-site .ffw-service-software h2,
  .ffw-site .ffw-placeholder-panel h2,
  .ffw-site .ffw-form h2 {
    font-size: clamp(1.95rem, 9.5vw, 2.85rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.044em !important;
  }

  .ffw-site .ffw-card h3,
  .ffw-site .ffw-price-card h3,
  .ffw-site .ffw-outcome-card h3,
  .ffw-site .ffw-next-step-card h3,
  .ffw-site .ffw-service-process h3,
  .ffw-site .ffw-partner-flow__steps h3,
  .ffw-site .ffw-referral-steps h3 {
    font-size: clamp(1.25rem, 6.2vw, 1.65rem) !important;
    line-height: 1.12 !important;
  }

  .ffw-site .ffw-form-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .ffw-site .ffw-form input,
  .ffw-site .ffw-form select,
  .ffw-site .ffw-form textarea,
  .ffw-site .ffw-form-shell input,
  .ffw-site .ffw-form-shell select,
  .ffw-site .ffw-form-shell textarea {
    min-height: 50px !important;
    font-size: 16px !important;
  }

  .ffw-site .ffw-form textarea {
    min-height: 128px !important;
  }

  .ffw-site .ffw-resource-featured__panel {
    min-height: 0 !important;
  }

  .ffw-site .ffw-resource-featured__panel strong {
    max-width: none !important;
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
  }

  .ffw-site .ffw-conversion-panel dl {
    gap: 10px !important;
  }

  .ffw-site .ffw-conversion-panel dl div {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 4px !important;
  }

  .ffw-site .ffw-download-box {
    align-items: stretch !important;
  }

  .ffw-site .ffw-footer {
    padding-top: 48px !important;
  }

  .ffw-site .ffw-footer__top {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
  }

  .ffw-site .ffw-footer__brand {
    max-width: none !important;
  }

  .ffw-site .ffw-footer__trust {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .ffw-site .ffw-footer__trust span {
    justify-content: flex-start !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
  }

  .ffw-site .ffw-footer__bottom {
    display: grid !important;
    gap: 10px !important;
    text-align: left !important;
  }
}

@media (max-width: 420px) {
  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1,
  .ffw-site .ffw-thank-you-hero h1,
  .ffw-site .ffw-referral-hero h1 {
    font-size: clamp(2.22rem, 13.8vw, 3.05rem) !important;
  }

  .ffw-site .ffw-interior-scene {
    min-height: clamp(220px, 64vw, 285px) !important;
  }

  .ffw-site .ffw-interior-scene__tree {
    width: min(52%, 165px) !important;
  }

  .ffw-site .ffw-interior-scene__card {
    width: min(215px, 74%) !important;
    padding: 14px !important;
  }

  .ffw-site .ffw-trust-strip:not(.ffw-trust-strip--hero) .ffw-container,
  .ffw-site .ffw-footer__trust {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ffw-site .ffw-copy-card,
  .ffw-site .ffw-list-panel,
  .ffw-site .ffw-form,
  .ffw-site .ffw-form-shell,
  .ffw-site .ffw-placeholder-panel,
  .ffw-site .ffw-final-content-panel,
  .ffw-site .ffw-resource-featured,
  .ffw-site .ffw-resource-featured__panel,
  .ffw-site .ffw-pricing-missing,
  .ffw-site .ffw-audience-highlight,
  .ffw-site .ffw-service-software,
  .ffw-site .ffw-conversion-panel,
  .ffw-site .ffw-referral-card,
  .ffw-site .ffw-download-box,
  .ffw-site .ffw-source-summary,
  .ffw-site .ffw-card-grid--service .ffw-card,
  .ffw-site .ffw-card-grid--service-inclusion .ffw-card,
  .ffw-site .ffw-card-grid--service-hub .ffw-card,
  .ffw-site .ffw-card-grid--resource-topic .ffw-card,
  .ffw-site .ffw-card-grid--resource-posts .ffw-card,
  .ffw-site .ffw-card-grid--partner .ffw-card,
  .ffw-site .ffw-card-grid--referral-route .ffw-card,
  .ffw-site .ffw-card-grid--related .ffw-card,
  .ffw-site .ffw-card-grid--thank-you-related .ffw-card,
  .ffw-site .ffw-card-grid--pricing-addon .ffw-card,
  .ffw-site .ffw-price-card,
  .ffw-site .ffw-outcome-card,
  .ffw-site .ffw-next-step-card,
  .ffw-site .ffw-pricing-summary-card,
  .ffw-site .ffw-audience-snapshot__item,
  .ffw-site .ffw-service-snapshot__item,
  .ffw-site .ffw-service-process article,
  .ffw-site .ffw-partner-flow__steps article,
  .ffw-site .ffw-referral-steps article {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .ffw-site .ffw-price {
    font-size: clamp(1.9rem, 12vw, 2.65rem) !important;
  }
}


/* FF-S23F — final responsive QA + hardening
   Final safety pass for mobile menus, tiny screens, scroll containment and overflow edge cases. */
body.ffw-enfold-blank-shell {
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip !important;
}

body.ffw-enfold-blank-shell #wrap_all,
body.ffw-enfold-blank-shell #main,
body.ffw-enfold-blank-shell .container_wrap,
body.ffw-enfold-blank-shell .container,
body.ffw-enfold-blank-shell .content,
body.ffw-enfold-blank-shell .post-entry,
body.ffw-enfold-blank-shell .entry-content-wrapper,
body.ffw-enfold-blank-shell .entry-content {
  max-width: 100vw !important;
  overflow-x: clip !important;
}

.ffw-site {
  width: 100% !important;
  max-width: 100vw !important;
  scroll-margin-top: 92px;
}

.ffw-site [id] {
  scroll-margin-top: 98px;
}

.ffw-site .ffw-container,
.ffw-site .ffw-header__inner,
.ffw-site .ffw-hero__grid,
.ffw-site .ffw-home-hero__grid,
.ffw-site .ffw-section-head,
.ffw-site .ffw-section-head--split,
.ffw-site .ffw-section-head--inline,
.ffw-site .ffw-card-grid,
.ffw-site .ffw-pricing-grid,
.ffw-site .ffw-route-grid,
.ffw-site .ffw-home-route-grid,
.ffw-site .ffw-home-pricing-grid,
.ffw-site .ffw-home-feature-services,
.ffw-site .ffw-resource-grid,
.ffw-site .ffw-footer__top {
  min-width: 0 !important;
}

.ffw-site .ffw-card,
.ffw-site .ffw-price-card,
.ffw-site .ffw-home-price-card,
.ffw-site .ffw-route-card,
.ffw-site .ffw-resource-card,
.ffw-site .ffw-proof-panel,
.ffw-site .ffw-copy-card,
.ffw-site .ffw-list-panel,
.ffw-site .ffw-form,
.ffw-site .ffw-form-shell,
.ffw-site .ffw-source-summary,
.ffw-site .ffw-download-box,
.ffw-site .ffw-final-content-panel {
  max-width: 100% !important;
}

.ffw-site .ffw-btn,
.ffw-site button,
.ffw-site input,
.ffw-site select,
.ffw-site textarea {
  font: inherit;
}

.ffw-site .ffw-btn,
.ffw-site button {
  min-width: 0 !important;
  white-space: normal !important;
  text-align: center;
}

.ffw-site input,
.ffw-site select,
.ffw-site textarea {
  width: 100%;
  max-width: 100% !important;
}

.ffw-site .ffw-table-scroll {
  border-radius: 18px;
  scrollbar-gutter: stable;
}

.ffw-site .ffw-pricing-table {
  min-width: 720px;
}

@media (min-width: 1081px) {
  .ffw-site .ffw-primary-nav {
    overflow: visible !important;
  }

  .ffw-site .ffw-nav-backdrop,
  .ffw-site .ffw-mobile-menu-head,
  .ffw-site .ffw-mobile-menu-cta,
  .ffw-site .ffw-subnav-toggle {
    display: none !important;
  }
}

@media (max-width: 1080px) {
  .ffw-site {
    scroll-margin-top: 86px;
  }

  .ffw-site [id] {
    scroll-margin-top: 92px;
  }

  .ffw-site .ffw-header {
    width: 100% !important;
  }

  .ffw-site .ffw-header__inner {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  .ffw-site .ffw-primary-nav {
    max-height: calc(100vh - 124px) !important;
    max-height: calc(100svh - 124px) !important;
    max-height: calc(100dvh - 124px) !important;
    padding-bottom: max(14px, env(safe-area-inset-bottom)) !important;
    -webkit-overflow-scrolling: touch;
  }

  .admin-bar .ffw-site .ffw-primary-nav {
    max-height: calc(100vh - 170px) !important;
    max-height: calc(100svh - 170px) !important;
    max-height: calc(100dvh - 170px) !important;
  }

  .ffw-site .ffw-nav-item--has-children:not(.is-subnav-open) > .ffw-subnav {
    display: none !important;
  }

  .ffw-site .ffw-nav-item--has-children.is-subnav-open > .ffw-subnav {
    display: grid !important;
  }

  .ffw-site .ffw-subnav-toggle::before {
    transition: transform 160ms ease;
  }

  .ffw-site .ffw-nav-item--has-children.is-subnav-open > .ffw-subnav-toggle::before {
    transform: rotate(180deg);
  }

  .ffw-site .ffw-mobile-menu-cta,
  .ffw-site .ffw-mobile-menu-close,
  .ffw-site .ffw-nav-link,
  .ffw-site .ffw-subnav__link {
    min-height: 44px !important;
  }

  .ffw-site .ffw-header.is-open .ffw-mobile-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .ffw-site .ffw-header.is-open .ffw-mobile-toggle span:nth-child(2) {
    opacity: 0;
  }

  .ffw-site .ffw-header.is-open .ffw-mobile-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 900px) {
  .ffw-site .ffw-section-head--split,
  .ffw-site .ffw-section-head--inline,
  .ffw-site .ffw-download-box,
  .ffw-site .ffw-source-summary,
  .ffw-site .ffw-final-content-panel {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 18px !important;
  }

  .ffw-site .ffw-section-head--split > *,
  .ffw-site .ffw-section-head--inline > * {
    min-width: 0 !important;
  }

  .ffw-site .ffw-pricing-table {
    min-width: 680px;
  }
}

@media (max-width: 760px) {
  html:has(.ffw-site),
  body.ffw-enfold-blank-shell,
  body.ffw-enfold-blank-shell #wrap_all,
  body.ffw-enfold-blank-shell #main {
    overflow-x: hidden !important;
  }

  .ffw-site .ffw-container,
  .ffw-site .ffw-header__inner,
  .ffw-site .ffw-home-hero__grid,
  .ffw-site .ffw-trust-strip--hero .ffw-container {
    width: min(100% - 28px, 560px) !important;
  }

  .ffw-site .ffw-header__inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .ffw-site .ffw-primary-nav {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  .ffw-site .ffw-badges,
  .ffw-site .ffw-pricing-tabs,
  .ffw-site .ffw-footer__trust,
  .ffw-site .ffw-home-proof__stats,
  .ffw-site .ffw-trust-strip .ffw-container {
    gap: 10px !important;
  }

  .ffw-site .ffw-badges span,
  .ffw-site .ffw-pricing-tabs span,
  .ffw-site .ffw-trust-item,
  .ffw-site .ffw-footer__trust span {
    overflow-wrap: anywhere !important;
  }

  .ffw-site .ffw-pricing-table {
    min-width: 620px;
  }
}

@media (max-width: 390px) {
  .ffw-site .ffw-container,
  .ffw-site .ffw-header__inner,
  .ffw-site .ffw-home-hero__grid,
  .ffw-site .ffw-trust-strip--hero .ffw-container {
    width: min(100% - 20px, 560px) !important;
  }

  .ffw-site .ffw-brand img {
    width: min(136px, 54vw) !important;
  }

  .ffw-site .ffw-mobile-toggle {
    width: 40px !important;
    height: 40px !important;
  }

  .ffw-site .ffw-primary-nav {
    border-radius: 16px !important;
    padding: 10px !important;
  }

  .ffw-site .ffw-nav-link,
  .ffw-site .ffw-subnav__link,
  .ffw-site .ffw-mobile-menu-cta,
  .ffw-site .ffw-mobile-menu-close {
    font-size: 0.94rem !important;
  }

  .ffw-site .ffw-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .ffw-site h1,
  .ffw-site .ffw-home-hero--mockup h1,
  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1 {
    letter-spacing: -0.04em !important;
  }

  .ffw-site .ffw-btn {
    min-height: 48px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 360px) {
  .ffw-site .ffw-container,
  .ffw-site .ffw-header__inner,
  .ffw-site .ffw-home-hero__grid,
  .ffw-site .ffw-trust-strip--hero .ffw-container {
    width: min(100% - 18px, 560px) !important;
  }

  .ffw-site .ffw-brand img {
    width: min(126px, 52vw) !important;
  }

  .ffw-site .ffw-card,
  .ffw-site .ffw-price-card,
  .ffw-site .ffw-home-price-card,
  .ffw-site .ffw-route-card,
  .ffw-site .ffw-resource-card,
  .ffw-site .ffw-copy-card,
  .ffw-site .ffw-list-panel,
  .ffw-site .ffw-form,
  .ffw-site .ffw-form-shell,
  .ffw-site .ffw-placeholder-panel,
  .ffw-site .ffw-final-content-panel,
  .ffw-site .ffw-resource-featured,
  .ffw-site .ffw-pricing-missing,
  .ffw-site .ffw-audience-highlight,
  .ffw-site .ffw-service-software,
  .ffw-site .ffw-conversion-panel,
  .ffw-site .ffw-referral-card,
  .ffw-site .ffw-download-box,
  .ffw-site .ffw-source-summary {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ffw-site *,
  .ffw-site *::before,
  .ffw-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* FF-S25M — CRM frontend form renderer */
.ffw-site .ffw-crm-form {
  position: relative;
}

.ffw-site .ffw-crm-form-section {
  border: 0;
  margin: 22px 0 0;
  padding: 0;
}

.ffw-site .ffw-crm-form-section legend {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  color: var(--ffw-forest, #17463a);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ffw-site .ffw-crm-form .ffw-form-grid {
  margin-top: 0;
}

.ffw-site .ffw-crm-field--textarea,
.ffw-site .ffw-crm-field--checkbox {
  grid-column: 1 / -1;
}

.ffw-site .ffw-crm-company-helper,
.ffw-site .ffw-form-help {
  display: block;
  margin-top: 7px;
  color: rgba(23, 70, 58, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.ffw-site .ffw-crm-form-dev-note {
  margin: 16px 0;
  padding: 13px 15px;
  border: 1px solid rgba(231, 156, 71, 0.55);
  border-radius: 14px;
  background: rgba(255, 248, 238, 0.96);
  color: #5f3b12;
  font-size: 0.92rem;
  line-height: 1.5;
}

.ffw-site .ffw-crm-form input[data-ffw-company-number-field="1"] {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .ffw-site .ffw-crm-form-section {
    margin-top: 18px;
  }

  .ffw-site .ffw-crm-form-section legend {
    font-size: 0.86rem;
  }
}

/* FF-S25N — CRM form validation and anti-spam status states */
.ffw-site .ffw-crm-form .ffw-form-status,
.ffw-site .ffw-form-status.ffw-form-status--success {
  border-color: rgba(54, 75, 57, 0.22);
  background: rgba(54, 75, 57, 0.08);
  color: var(--ff-green);
}

.ffw-site .ffw-form-status.ffw-form-status--error,
.ffw-site .ffw-form-status.ffw-form-status--spam {
  border-color: rgba(223, 114, 95, 0.28);
  background: rgba(223, 114, 95, 0.09);
  color: var(--ff-coral-dark);
}

.ffw-site .ffw-crm-form[data-ffw-crm-render-mode="live"] .ffw-crm-form-dev-note {
  border-color: rgba(54, 75, 57, 0.26);
  background: rgba(54, 75, 57, 0.07);
  color: var(--ff-green);
}

/* FF-S28B — journey-specific public form placement */
.ffw-site .ffw-section--journey-form {
  position: relative;
}

.ffw-site .ffw-journey-form-grid {
  align-items: flex-start;
}

.ffw-site .ffw-journey-form-copy {
  position: sticky;
  top: 96px;
}

.ffw-site .ffw-section--journey-form .ffw-crm-form .ffw-eyebrow,
.ffw-site .ffw-home-hero__mobile-form .ffw-crm-form .ffw-eyebrow {
  color: var(--ffw-coral, #df725f);
}

.ffw-site .ffw-section--journey-form .ffw-crm-form,
.ffw-site .ffw-home-hero__mobile-form .ffw-crm-form {
  box-shadow: 0 22px 65px rgba(23, 70, 58, 0.12);
}

@media (max-width: 980px) {
  .ffw-site .ffw-journey-form-copy {
    position: static;
  }
}

/* FF-S28C — header, footer and legal route hardening */
.ffw-site .ffw-nav-list {
  gap: 2px;
}

.ffw-site .ffw-nav-link {
  padding-inline: 10px;
  font-size: 0.9rem;
}

.ffw-site .ffw-footer__top {
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(132px, 0.65fr));
  gap: clamp(22px, 3.5vw, 46px);
}

.ffw-hero--legal .ffw-interior-scene__card strong::after {
  content: "";
}

.ffw-legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

/* v0.48.5 - full Brand Pack V3.1 alignment.
   This final layer preserves approved copy and behaviour while removing the
   residual coral/glow treatment and restoring a calmer, more spacious rhythm. */
.ffw-site {
  --ff-forest: #364b39;
  --ff-earth: #66513b;
  --ff-stone: #d3cbbf;
  --ff-ivory: #f7f3ea;
  --ff-charcoal: #2d2e2e;
  --ff-green: var(--ff-forest);
  --ff-coral: var(--ff-earth);
  --ff-coral-dark: var(--ff-earth);
  --ff-line: var(--ff-stone);
  --ff-mist: var(--ff-ivory);
  --ff-muted: var(--ff-earth);
  --ffw-forest: var(--ff-forest);
  --ffw-coral: var(--ff-earth);
  --ffw-accent: var(--ff-earth);
  --ffw-ivory: var(--ff-ivory);
  --ffw-ink: var(--ff-charcoal);
  --ff-font-heading: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-font-label: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ff-charcoal) !important;
  background: var(--ff-ivory) !important;
}

.ffw-site h1,
.ffw-site h2,
.ffw-site h3,
.ffw-site h4,
.ffw-site h5,
.ffw-site h6 {
  color: var(--ff-charcoal) !important;
  font-family: var(--ff-font-heading) !important;
  text-wrap: balance;
}

.ffw-site h1 {
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;
}

.ffw-site h2 {
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
}

.ffw-site h3,
.ffw-site h4 {
  line-height: 1.22 !important;
  letter-spacing: -0.025em !important;
}

.ffw-site p,
.ffw-site li {
  line-height: 1.7;
}

.ffw-site .ffw-container {
  width: min(1240px, calc(100% - clamp(40px, 7vw, 96px))) !important;
}

.ffw-site .ffw-section {
  padding-top: clamp(78px, 8vw, 118px) !important;
  padding-bottom: clamp(78px, 8vw, 118px) !important;
}

.ffw-site .ffw-section-head,
.ffw-site .ffw-approved-section {
  display: grid;
  align-content: start;
  row-gap: 0;
}

.ffw-site .ffw-section-head > h2,
.ffw-site .ffw-approved-section > h2 {
  max-width: 900px !important;
  margin: 0 !important;
}

.ffw-site .ffw-section-head > p:not(.ffw-eyebrow),
.ffw-site .ffw-approved-section > p:not(.ffw-eyebrow):not(.ffw-approved-section__statement):not(.ffw-approved-section__closing) {
  max-width: 760px !important;
  margin-top: 22px !important;
  color: rgba(45, 46, 46, 0.78) !important;
  font-size: clamp(1rem, 1.15vw, 1.1rem) !important;
  line-height: 1.72 !important;
}

.ffw-site .ffw-approved-section > p + p {
  margin-top: 18px !important;
}

.ffw-site .ffw-eyebrow,
.ffw-site .ffw-kicker,
.ffw-site [class*="__tag"],
.ffw-site [class*="__label"],
.ffw-site [class*="__badge"] {
  color: var(--ff-earth) !important;
  font-family: var(--ff-font-label) !important;
}

/* Use the current primary horizontal mark throughout the public chrome. */
.ffw-site .ffw-brand {
  width: clamp(210px, 19vw, 278px) !important;
  min-width: 0 !important;
}

.ffw-site .ffw-brand img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 46px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

/* Flat, brand-colour controls: no orange, gradients, glow or lift. */
.ffw-site .ffw-btn,
.ffw-site .ffw-header-cta,
.ffw-site .ffw-mobile-menu-cta,
.ffw-site .ffw-footer__cta,
.ffw-site .ffw-crm-step-next,
.ffw-site .ffw-crm-step-submit,
.ffw-site button[type="submit"] {
  border-radius: 999px !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.ffw-site .ffw-btn--primary,
.ffw-site .ffw-btn--accent,
.ffw-site .ffw-header-cta,
.ffw-site .ffw-mobile-menu-cta,
.ffw-site .ffw-crm-step-next,
.ffw-site .ffw-crm-step-submit,
.ffw-site button[type="submit"] {
  border-color: var(--ff-forest) !important;
  background-color: var(--ff-forest) !important;
  color: var(--ff-ivory) !important;
}

.ffw-site .ffw-btn--primary:hover,
.ffw-site .ffw-btn--primary:focus-visible,
.ffw-site .ffw-btn--accent:hover,
.ffw-site .ffw-btn--accent:focus-visible,
.ffw-site .ffw-header-cta:hover,
.ffw-site .ffw-header-cta:focus-visible,
.ffw-site .ffw-mobile-menu-cta:hover,
.ffw-site .ffw-mobile-menu-cta:focus-visible,
.ffw-site .ffw-crm-step-next:hover,
.ffw-site .ffw-crm-step-next:focus-visible,
.ffw-site .ffw-crm-step-submit:hover,
.ffw-site .ffw-crm-step-submit:focus-visible,
.ffw-site button[type="submit"]:hover,
.ffw-site button[type="submit"]:focus-visible {
  border-color: var(--ff-earth) !important;
  background-color: var(--ff-earth) !important;
  color: var(--ff-ivory) !important;
  box-shadow: none !important;
  transform: none !important;
}

.ffw-site .ffw-btn--ghost,
.ffw-site .ffw-btn--secondary,
.ffw-site .ffw-crm-step-prev {
  border-color: var(--ff-earth) !important;
  background: transparent !important;
  color: var(--ff-earth) !important;
  box-shadow: none !important;
}

.ffw-site .ffw-footer__cta,
.ffw-site .ffw-footer .ffw-footer__cta {
  border-color: var(--ff-ivory) !important;
  background: var(--ff-ivory) !important;
  color: var(--ff-forest) !important;
  box-shadow: none !important;
}

/* Content cards follow the brand guide's 16-24px corner range and use space,
   hierarchy and borders instead of decorative shadows. */
.ffw-site .ffw-card-grid,
.ffw-site .ffw-approved-card-grid {
  gap: clamp(22px, 2.5vw, 32px) !important;
  margin-top: clamp(36px, 4vw, 52px) !important;
  align-items: stretch !important;
}

.ffw-site .ffw-card-grid--home-audience {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.ffw-site .ffw-card-grid--home-service {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ffw-site .ffw-approved-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.ffw-site .ffw-card,
.ffw-site .ffw-approved-card,
.ffw-site .ffw-route-card,
.ffw-site .ffw-resource-card,
.ffw-site .ffw-copy-card,
.ffw-site .ffw-list-panel,
.ffw-site .ffw-proof-panel,
.ffw-site .ffw-home-price-card,
.ffw-site .ffw-price-card,
.ffw-site .ffw-legal-card,
.ffw-site .ffw-legal-summary {
  border: 1px solid var(--ff-stone) !important;
  border-radius: 20px !important;
  background: var(--ff-white) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.ffw-site .ffw-card,
.ffw-site .ffw-approved-card {
  min-height: 0 !important;
  padding: clamp(28px, 3vw, 38px) !important;
}

.ffw-site .ffw-card h3,
.ffw-site .ffw-approved-card h3 {
  margin: 18px 0 0 !important;
  color: var(--ff-forest) !important;
}

.ffw-site .ffw-card h3 + p,
.ffw-site .ffw-approved-card h3 + p {
  margin-top: 16px !important;
}

.ffw-site .ffw-card > a,
.ffw-site .ffw-approved-card > a {
  margin-top: 24px !important;
  color: var(--ff-earth) !important;
}

/* Replace the oversized circle/blob card decoration with one restrained mark. */
.ffw-site .ffw-card__icon {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: var(--ff-earth) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: rotate(45deg) !important;
}

.ffw-site .ffw-card__icon::before,
.ffw-site .ffw-card__icon::after,
.ffw-site .ffw-card::after,
.ffw-site .ffw-route-card::after,
.ffw-site .ffw-audience-intro__copy::after,
.ffw-site .ffw-service-intro__copy::after,
.ffw-site .ffw-home-scene--form::before,
.ffw-site .ffw-home-scene--form::after,
.ffw-site .ffw-hero-form-panel::before,
.ffw-site .ffw-hero-form-panel::after,
.ffw-site .ffw-section--lower-form-integrated::before,
.ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-shell::before,
.ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-support h2::after,
.ffw-site .ffw-section--home-process-polished::before {
  display: none !important;
  content: none !important;
}

.ffw-site .ffw-card__tag {
  width: fit-content !important;
  margin-top: 20px !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--ff-stone) 52%, var(--ff-ivory)) !important;
  color: var(--ff-earth) !important;
}

/* Forms remain prominent but visually calm. */
.ffw-site .ffw-home-scene,
.ffw-site .ffw-interior-scene,
.ffw-site .ffw-form,
.ffw-site .ffw-form-shell,
.ffw-site .ffw-hero-form-panel,
.ffw-site .ffw-lower-form-panel,
.ffw-site .ffw-lower-form-shell {
  border-color: var(--ff-stone) !important;
  background: var(--ff-white) !important;
  background-image: none !important;
  box-shadow: none !important;
}

.ffw-site input:focus,
.ffw-site select:focus,
.ffw-site textarea:focus,
.ffw-site button:focus-visible,
.ffw-site a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--ff-earth) 34%, transparent) !important;
  outline-offset: 3px !important;
  box-shadow: none !important;
}

/* Retain dark brand panels without gradient or coral accent text. */
.ffw-site .ffw-hero--dark,
.ffw-site .ffw-hero--referral,
.ffw-site .ffw-hero--partner-route,
.ffw-site .ffw-cta-band,
.ffw-site .ffw-growth-band,
.ffw-site .ffw-footer,
.ffw-site .ffw-section--home-proof .ffw-proof-panel {
  border-color: var(--ff-forest) !important;
  background: var(--ff-forest) !important;
  background-image: none !important;
  box-shadow: none !important;
}

.ffw-site .ffw-hero--dark *,
.ffw-site .ffw-hero--referral *,
.ffw-site .ffw-hero--partner-route *,
.ffw-site .ffw-cta-band *,
.ffw-site .ffw-growth-band *,
.ffw-site .ffw-footer *,
.ffw-site .ffw-section--home-proof .ffw-proof-panel * {
  --ff-coral: var(--ff-stone);
}

.ffw-site .ffw-interior-scene__coral,
.ffw-site .ffw-home-scene__coral {
  background: var(--ff-earth) !important;
  opacity: 0.12 !important;
}

@media (max-width: 980px) {
  .ffw-site .ffw-card-grid--home-service {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* v0.48.6 staging QA correction: override high-specificity legacy effects. */
.ffw-site.ffw-site .ffw-hero.ffw-hero .ffw-btn.ffw-btn,
.ffw-site.ffw-site .ffw-footer.ffw-footer .ffw-btn.ffw-btn,
.ffw-site.ffw-site .ffw-btn.ffw-btn,
.ffw-site.ffw-site .ffw-header-cta.ffw-header-cta,
.ffw-site.ffw-site .ffw-mobile-menu-cta.ffw-mobile-menu-cta,
.ffw-site.ffw-site button[type="submit"] {
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.ffw-site.ffw-site .ffw-hero:not(.ffw-home-hero) .ffw-hero__visual::before,
.ffw-site.ffw-site .ffw-hero:not(.ffw-home-hero) .ffw-hero__visual::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 900px) {
  .ffw-site.ffw-site .ffw-footer__top.ffw-footer__top {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 30px !important;
  }

  .ffw-site.ffw-site .ffw-footer__column.ffw-footer__column {
    min-width: 0 !important;
  }
}

@media (max-width: 720px) {
  .ffw-site .ffw-container {
    width: min(100% - 32px, 1240px) !important;
  }

  .ffw-site .ffw-section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .ffw-site .ffw-card-grid--home-audience,
  .ffw-site .ffw-card-grid--home-service,
  .ffw-site .ffw-approved-card-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ffw-site .ffw-card,
  .ffw-site .ffw-approved-card {
    padding: 26px !important;
  }

  .ffw-site .ffw-brand {
    width: min(220px, 62vw) !important;
  }
}

/* v0.51.21 form recovery: prevent the generic full-width input rule from
   stretching multi-select checkboxes and collapsing their option labels. */
.ffw-site .ffw-crm-checkbox-option {
  min-width: 0;
  cursor: pointer;
}

.ffw-site .ffw-crm-checkbox-option input[type="checkbox"] {
  box-sizing: border-box;
  width: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  flex: 0 0 20px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  cursor: pointer;
}

.ffw-site .ffw-crm-checkbox-option > span {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: normal;
}

/* v0.50.0 — screenshot-led homepage composition, using the approved brand system. */
.ffw-site[data-ffw-page="home"] {
  --ff-home-max: 1220px;
  background: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-container {
  width: min(var(--ff-home-max), calc(100% - 64px)) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup {
  min-height: 0 !important;
  padding: clamp(64px, 7vw, 108px) 0 0 !important;
  overflow: hidden;
  background: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup::before {
  content: "" !important;
  position: absolute;
  top: -180px;
  right: -130px;
  display: block !important;
  width: clamp(330px, 34vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ff-stone) !important;
  opacity: 0.42;
  pointer-events: none;
}

.ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup .ffw-home-hero__grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr) !important;
  align-items: center !important;
  gap: clamp(48px, 7vw, 100px) !important;
  padding-bottom: clamp(66px, 7vw, 104px);
}

.ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup .ffw-home-hero__copy {
  max-width: 690px !important;
  padding-bottom: 0 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup h1,
.ffw-site[data-ffw-page="home"] .ffw-home-hero__brand-title {
  max-width: 12ch !important;
  margin-top: 20px !important;
  color: var(--ff-charcoal) !important;
  font-size: clamp(3.45rem, 5.2vw, 5.45rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.055em !important;
  line-height: 0.99 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup h1 span {
  color: var(--ff-forest) !important;
  white-space: normal !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup .ffw-lead {
  max-width: 640px !important;
  margin-top: 28px !important;
  color: rgba(45, 46, 46, 0.76) !important;
  font-size: clamp(1rem, 1.2vw, 1.16rem) !important;
  line-height: 1.72 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup .ffw-actions {
  margin-top: 30px !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-hero__chips {
  gap: 8px !important;
  margin-top: 26px !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-hero__chips span {
  position: relative;
  padding: 8px 12px 8px 24px !important;
  border: 1px solid var(--ff-stone) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--ff-charcoal) !important;
  font-family: var(--ff-font-label) !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-hero__chips span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ff-earth);
  transform: translateY(-50%);
}

.ffw-site[data-ffw-page="home"] .ffw-home-scene--form {
  min-height: 0 !important;
  align-self: center;
  border-color: var(--ff-forest) !important;
  border-radius: 22px !important;
  background: var(--ff-forest) !important;
  color: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-hero-form-panel--home-full,
.ffw-site[data-ffw-page="home"] .ffw-home-scene--form .ffw-form {
  border: 0 !important;
  background: transparent !important;
  color: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-scene--form h2,
.ffw-site[data-ffw-page="home"] .ffw-home-scene--form h3,
.ffw-site[data-ffw-page="home"] .ffw-home-scene--form p,
.ffw-site[data-ffw-page="home"] .ffw-home-scene--form label,
.ffw-site[data-ffw-page="home"] .ffw-home-scene--form legend,
.ffw-site[data-ffw-page="home"] .ffw-home-scene--form small,
.ffw-site[data-ffw-page="home"] .ffw-home-scene--form .ffw-eyebrow {
  color: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-scene--form input,
.ffw-site[data-ffw-page="home"] .ffw-home-scene--form select,
.ffw-site[data-ffw-page="home"] .ffw-home-scene--form textarea {
  border-color: rgba(247, 243, 234, 0.48) !important;
  background: var(--ff-ivory) !important;
  color: var(--ff-charcoal) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-scene--form .ffw-crm-stepper {
  border-color: rgba(247, 243, 234, 0.28) !important;
  background: rgba(247, 243, 234, 0.10) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-scene--form .ffw-crm-stepper span {
  background: rgba(247, 243, 234, 0.18) !important;
  color: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-scene--form .ffw-crm-stepper .is-active,
.ffw-site[data-ffw-page="home"] .ffw-home-scene--form button[type="submit"],
.ffw-site[data-ffw-page="home"] .ffw-home-scene--form .ffw-crm-step-next {
  border-color: var(--ff-ivory) !important;
  background: var(--ff-ivory) !important;
  color: var(--ff-charcoal) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-trust-strip--hero {
  border: 0 !important;
  background: var(--ff-forest) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-trust-strip--hero .ffw-container {
  width: min(var(--ff-home-max), calc(100% - 64px)) !important;
  min-height: 88px !important;
}

.ffw-site[data-ffw-page="home"] .ffw-trust-strip--hero .ffw-trust-item {
  border-color: rgba(247, 243, 234, 0.22) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-trust-strip--hero strong,
.ffw-site[data-ffw-page="home"] .ffw-trust-strip--hero em {
  color: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-trust-strip--hero strong {
  background: rgba(247, 243, 234, 0.12) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: clamp(36px, 7vw, 100px);
}

.ffw-site[data-ffw-page="home"] .ffw-home-section-intro h2 {
  max-width: 720px !important;
  margin: 16px 0 0 !important;
  color: var(--ff-charcoal) !important;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem) !important;
  letter-spacing: -0.05em !important;
  line-height: 1.03 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-section-intro > p {
  max-width: 470px !important;
  margin: 0 !important;
  color: rgba(45, 46, 46, 0.72) !important;
  line-height: 1.72 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-trust-proof {
  padding: 0 !important;
  background: #fff !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-trust-proof > .ffw-container {
  width: 100% !important;
  max-width: none !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-trust-proof__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--ff-stone);
}

.ffw-site[data-ffw-page="home"] .ffw-home-trust-proof__grid .ffw-approved-card {
  padding: 30px clamp(22px, 3vw, 46px) !important;
  border: 0 !important;
  border-right: 1px solid var(--ff-stone) !important;
  border-radius: 0 !important;
  background: #fff !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-trust-proof__grid .ffw-approved-card:last-child {
  border-right: 0 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-trust-proof__grid h3 {
  margin: 0 !important;
  color: var(--ff-forest) !important;
  font-size: 1rem !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-trust-proof__grid p {
  margin-top: 7px !important;
  font-family: var(--ff-font-label) !important;
  font-size: 0.67rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.075em !important;
  line-height: 1.35 !important;
  text-transform: uppercase;
}

.ffw-site[data-ffw-page="home"] .ffw-home-trust-proof__review {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  padding: 18px 32px;
  text-align: center;
}

.ffw-site[data-ffw-page="home"] .ffw-home-trust-proof__review p {
  margin: 0 !important;
  font-size: 0.86rem;
}

.ffw-site[data-ffw-page="home"] .ffw-home-audiences,
.ffw-site[data-ffw-page="home"] .ffw-home-environment {
  background: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-card-grid--home-audience {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-card-grid--home-audience .ffw-card:first-child {
  border-color: var(--ff-forest) !important;
  background: var(--ff-forest) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-card-grid--home-audience .ffw-card:first-child * {
  color: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-card-grid--home-audience .ffw-card:first-child .ffw-card__icon {
  background: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-services {
  background: #fff !important;
}

.ffw-site[data-ffw-page="home"] .ffw-card-grid--home-service {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-card-grid--home-audience .ffw-card,
.ffw-site[data-ffw-page="home"] .ffw-card-grid--home-service .ffw-card {
  display: flex;
  min-height: 290px !important;
  flex-direction: column;
  padding: 32px !important;
  border-radius: 16px !important;
}

.ffw-site[data-ffw-page="home"] .ffw-card-grid--home-audience .ffw-card > a,
.ffw-site[data-ffw-page="home"] .ffw-card-grid--home-service .ffw-card > a {
  margin-top: auto !important;
  padding-top: 24px;
}

.ffw-site[data-ffw-page="home"] .ffw-placeholder-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 30px !important;
  padding: 32px 36px !important;
  border-radius: 16px !important;
  background: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-placeholder-panel h3,
.ffw-site[data-ffw-page="home"] .ffw-placeholder-panel p,
.ffw-site[data-ffw-page="home"] .ffw-placeholder-panel .ffw-btn {
  margin: 0 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-reviews {
  background: var(--ff-charcoal) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-reviews .ffw-eyebrow,
.ffw-site[data-ffw-page="home"] .ffw-home-reviews h2,
.ffw-site[data-ffw-page="home"] .ffw-home-reviews .ffw-home-section-intro > p {
  color: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-reviews .ffw-approved-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-reviews .ffw-approved-card {
  border-color: rgba(247, 243, 234, 0.17) !important;
  background: rgba(247, 243, 234, 0.07) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-reviews .ffw-approved-card h3,
.ffw-site[data-ffw-page="home"] .ffw-home-reviews .ffw-approved-card p {
  color: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-relationship {
  background: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-relationship__panel,
.ffw-site[data-ffw-page="home"] .ffw-home-fees__panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(42px, 8vw, 120px);
  padding: clamp(42px, 6vw, 78px) !important;
  border-radius: 18px;
}

.ffw-site[data-ffw-page="home"] .ffw-home-relationship__panel {
  border: 1px solid var(--ff-stone);
  background: #fff;
}

.ffw-site[data-ffw-page="home"] .ffw-home-relationship__panel h2,
.ffw-site[data-ffw-page="home"] .ffw-home-fees__panel h2 {
  margin: 16px 0 0 !important;
  font-size: clamp(2.4rem, 4vw, 4rem) !important;
  letter-spacing: -0.05em !important;
  line-height: 1.04 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-relationship__panel > div:last-child > p:first-child,
.ffw-site[data-ffw-page="home"] .ffw-home-fees__panel > div:last-child > p:first-child {
  margin-top: 0 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-process {
  background: #fff !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-process .ffw-approved-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-process .ffw-approved-card {
  padding: 28px 28px 30px !important;
  border: 0 !important;
  border-top: 1px solid var(--ff-earth) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-process .ffw-approved-card h3 {
  color: var(--ff-charcoal) !important;
  font-size: 1.08rem !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-process .ffw-approved-section__closing {
  margin-top: 34px !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-fees {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
  background: var(--ff-earth) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-fees__panel {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-fees__panel h2,
.ffw-site[data-ffw-page="home"] .ffw-home-fees__panel p,
.ffw-site[data-ffw-page="home"] .ffw-home-fees__panel .ffw-eyebrow {
  color: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-btn--light-outline {
  border: 1px solid rgba(247, 243, 234, 0.72) !important;
  background: transparent !important;
  color: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-faqs {
  background: #fff !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-faqs .ffw-faq-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(380px, 1.22fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.ffw-site[data-ffw-page="home"] .ffw-home-faqs .ffw-section-head {
  grid-row: 1 / span 6;
}

.ffw-site[data-ffw-page="home"] .ffw-home-environment {
  position: relative;
  overflow: hidden;
}

.ffw-site[data-ffw-page="home"] .ffw-home-environment::after {
  content: "";
  position: absolute;
  top: -12%;
  right: -4%;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(54, 75, 57, 0.08);
  border-radius: 46% 54% 61% 39%;
  box-shadow: 0 0 0 34px rgba(54, 75, 57, 0.025), 0 0 0 68px rgba(54, 75, 57, 0.018), 0 0 0 102px rgba(54, 75, 57, 0.012);
  pointer-events: none;
}

.ffw-site[data-ffw-page="home"] .ffw-home-environment__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.ffw-site[data-ffw-page="home"] .ffw-home-environment__counter {
  display: grid;
  width: min(100%, 360px);
  aspect-ratio: 1;
  place-content: center;
  padding: 38px;
  border: 1px solid var(--ff-stone);
  border-radius: 50%;
  background: #fff;
  text-align: center;
}

.ffw-site[data-ffw-page="home"] .ffw-home-environment__counter span {
  font-family: var(--ff-font-label) !important;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ffw-site[data-ffw-page="home"] .ffw-home-environment__counter strong {
  margin: 18px 0 10px;
  color: var(--ff-forest);
  font-family: var(--ff-font-heading);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1;
}

.ffw-site[data-ffw-page="home"] .ffw-home-environment__counter p {
  max-width: 190px;
  margin: 0 auto;
  line-height: 1.45;
}

.ffw-site[data-ffw-page="home"] .ffw-home-environment__copy h2 {
  max-width: 720px !important;
  margin: 16px 0 0 !important;
  color: var(--ff-charcoal) !important;
  font-size: clamp(2.75rem, 4.8vw, 4.8rem) !important;
  letter-spacing: -0.055em !important;
  line-height: 1.02 !important;
}

.ffw-site[data-ffw-page="home"] .ffw-home-environment__copy > p:not(.ffw-eyebrow):not(.ffw-approved-section__statement) {
  max-width: 680px;
  margin-top: 24px;
  line-height: 1.72;
}

.ffw-site[data-ffw-page="home"] .ffw-section--journey-form-lower-home {
  background: #fff !important;
}

.ffw-site[data-ffw-page="home"] .ffw-cta-band {
  padding: 52px 0 !important;
  background: var(--ff-ivory) !important;
}

.ffw-site[data-ffw-page="home"] .ffw-cta-band > .ffw-container {
  border-radius: 18px !important;
  background: var(--ff-forest) !important;
}

@media (max-width: 1050px) {
  .ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup .ffw-home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr) !important;
    gap: 42px !important;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup h1,
  .ffw-site[data-ffw-page="home"] .ffw-home-hero__brand-title {
    font-size: clamp(3.15rem, 5.7vw, 4.65rem) !important;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-process .ffw-approved-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }
}

@media (max-width: 860px) {
  .ffw-site[data-ffw-page="home"] .ffw-container {
    width: min(100% - 40px, 720px) !important;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup .ffw-home-hero__grid,
  .ffw-site[data-ffw-page="home"] .ffw-home-section-intro,
  .ffw-site[data-ffw-page="home"] .ffw-home-relationship__panel,
  .ffw-site[data-ffw-page="home"] .ffw-home-fees__panel,
  .ffw-site[data-ffw-page="home"] .ffw-home-faqs .ffw-faq-wrap,
  .ffw-site[data-ffw-page="home"] .ffw-home-environment__grid {
    grid-template-columns: 1fr !important;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup .ffw-home-hero__copy {
    max-width: 720px !important;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-faqs .ffw-section-head {
    grid-row: auto;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-environment__counter {
    width: min(330px, 76vw);
  }

  .ffw-site[data-ffw-page="home"] .ffw-placeholder-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .ffw-site[data-ffw-page="home"] .ffw-container,
  .ffw-site[data-ffw-page="home"] .ffw-trust-strip--hero .ffw-container {
    width: min(100% - 32px, 560px) !important;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup {
    padding-top: 48px !important;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-hero--mockup h1,
  .ffw-site[data-ffw-page="home"] .ffw-home-hero__brand-title {
    font-size: clamp(2.85rem, 13vw, 4.1rem) !important;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-trust-proof__grid,
  .ffw-site[data-ffw-page="home"] .ffw-card-grid--home-audience,
  .ffw-site[data-ffw-page="home"] .ffw-card-grid--home-service,
  .ffw-site[data-ffw-page="home"] .ffw-home-reviews .ffw-approved-card-grid,
  .ffw-site[data-ffw-page="home"] .ffw-home-process .ffw-approved-card-grid {
    grid-template-columns: 1fr !important;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-trust-proof__grid .ffw-approved-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--ff-stone) !important;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-trust-proof__review {
    display: grid;
  }

  .ffw-site[data-ffw-page="home"] .ffw-card-grid--home-audience .ffw-card,
  .ffw-site[data-ffw-page="home"] .ffw-card-grid--home-service .ffw-card {
    min-height: 0 !important;
  }

  .ffw-site[data-ffw-page="home"] .ffw-home-relationship__panel,
  .ffw-site[data-ffw-page="home"] .ffw-home-fees__panel {
    padding: 34px 28px !important;
  }
}

/* v0.49.3 layout, contrast and sticky-header corrections.
   This is the final public style layer and intentionally leaves approved copy unchanged. */
.ffw-site.ffw-site .ffw-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 10020 !important;
  background-color: var(--ff-ivory) !important;
  background-image: none !important;
}

body.ffw-enfold-blank-shell #wrap_all,
body.ffw-enfold-blank-shell #main {
  overflow: visible !important;
}

.admin-bar .ffw-site.ffw-site .ffw-header {
  top: 32px !important;
}

@media (max-width: 782px) {
  .admin-bar .ffw-site.ffw-site .ffw-header {
    top: 46px !important;
  }
}

@media (min-width: 1041px) {
  .ffw-site.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px) !important;
    gap: clamp(44px, 4.5vw, 68px) !important;
  }

  .ffw-site.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form h1.ffw-home-hero__brand-title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(3.5rem, 4.3vw, 4.85rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.04em !important;
    overflow-wrap: normal !important;
  }
}

@media (max-width: 720px) {
  .ffw-site.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form h1.ffw-home-hero__brand-title {
    font-size: clamp(2.6rem, 11vw, 3.4rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.035em !important;
  }
}

/* Forms on light sections use Forest Green for clear section contrast. */
.ffw-site.ffw-site .ffw-home-hero-full-form,
.ffw-site.ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel--home-full,
.ffw-site.ffw-site .ffw-home-hero-full-form .ffw-crm-form,
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower {
  border-color: var(--ff-forest) !important;
  background-color: var(--ff-forest) !important;
  background-image: none !important;
  color: var(--ff-ivory) !important;
  box-shadow: none !important;
}

.ffw-site.ffw-site .ffw-home-hero-full-form :is(h2, h3, legend, label, .ffw-eyebrow, .ffw-crm-field__label, .ffw-crm-step-count),
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower :is(h2, h3, legend, label, .ffw-eyebrow, .ffw-crm-field__label, .ffw-crm-step-count) {
  color: var(--ff-ivory) !important;
}

.ffw-site.ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel__head p:not(.ffw-eyebrow),
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower > p:not(.ffw-eyebrow),
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-form-help,
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-crm-step-intro,
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-form-smallprint {
  color: var(--ff-stone) !important;
}

.ffw-site.ffw-site .ffw-home-hero-full-form :is(input:not([type="checkbox"]), select, textarea),
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower :is(input:not([type="checkbox"]), select, textarea) {
  border-color: var(--ff-stone) !important;
  background-color: var(--ff-ivory) !important;
  color: var(--ff-charcoal) !important;
}

.ffw-site.ffw-site .ffw-home-hero-full-form .ffw-crm-stepper,
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-crm-stepper {
  border-color: var(--ff-stone) !important;
  background-color: var(--ff-ivory) !important;
}

.ffw-site.ffw-site .ffw-home-hero-full-form .ffw-crm-stepper__dot,
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-crm-stepper__dot {
  background-color: var(--ff-stone) !important;
  color: var(--ff-charcoal) !important;
}

.ffw-site.ffw-site .ffw-home-hero-full-form .ffw-crm-stepper__item.is-active .ffw-crm-stepper__dot,
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-crm-stepper__item.is-active .ffw-crm-stepper__dot {
  background-color: var(--ff-forest) !important;
  color: var(--ff-ivory) !important;
}

.ffw-site.ffw-site .ffw-home-hero-full-form :is(.ffw-crm-step-next, .ffw-crm-step-submit),
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower :is(.ffw-crm-step-next, .ffw-crm-step-submit) {
  border-color: var(--ff-ivory) !important;
  background-color: var(--ff-ivory) !important;
  color: var(--ff-charcoal) !important;
}

.ffw-site.ffw-site .ffw-home-hero-full-form :is(.ffw-crm-step-next, .ffw-crm-step-submit):is(:hover, :focus-visible),
.ffw-site.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower :is(.ffw-crm-step-next, .ffw-crm-step-submit):is(:hover, :focus-visible) {
  border-color: var(--ff-stone) !important;
  background-color: var(--ff-stone) !important;
  color: var(--ff-charcoal) !important;
}

/* Keep labels compact; flex growth previously made short labels into tall bubbles. */
.ffw-site.ffw-site .ffw-card .ffw-card__tag {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  margin-top: 20px !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  background-color: var(--ff-stone) !important;
  color: var(--ff-charcoal) !important;
  line-height: 1.35 !important;
}

.ffw-site.ffw-site .ffw-card .ffw-card__tag::before,
.ffw-site.ffw-site .ffw-card .ffw-card__tag::after {
  display: none !important;
  content: none !important;
}

.ffw-site.ffw-site .ffw-card-grid--home-audience,
.ffw-site.ffw-site .ffw-card-grid--home-service {
  column-gap: clamp(28px, 3vw, 40px) !important;
  row-gap: clamp(36px, 4vw, 48px) !important;
}

.ffw-site.ffw-site #services-overview .ffw-placeholder-panel {
  margin-top: clamp(36px, 4vw, 48px) !important;
}

/* A light closing band separates every final green CTA from the green footer. */
.ffw-site.ffw-site .ffw-cta-band {
  padding-top: clamp(52px, 6vw, 82px) !important;
  padding-bottom: clamp(52px, 6vw, 82px) !important;
  background-color: var(--ff-ivory) !important;
}

.ffw-site.ffw-site .ffw-cta-band > .ffw-container {
  padding: clamp(34px, 5vw, 70px) !important;
  border: 1px solid var(--ff-forest) !important;
  border-radius: 24px !important;
  background-color: var(--ff-forest) !important;
}

.ffw-site.ffw-site .ffw-cta-band .ffw-btn--light {
  border-color: var(--ff-ivory) !important;
  background-color: var(--ff-ivory) !important;
  color: var(--ff-charcoal) !important;
}

.ffw-site.ffw-site .ffw-cta-band .ffw-btn--light:is(:hover, :focus-visible) {
  border-color: var(--ff-stone) !important;
  background-color: var(--ff-stone) !important;
  color: var(--ff-charcoal) !important;
}

.ffw-legal-layout--single {
  grid-template-columns: minmax(0, 820px);
}

.ffw-legal-summary,
.ffw-legal-card {
  border: 1px solid rgba(54, 75, 57, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(45, 46, 46, 0.07);
}

.ffw-legal-summary {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
}

.ffw-legal-summary h2,
.ffw-legal-card h2 {
  margin: 0;
  color: var(--ff-charcoal);
  letter-spacing: -0.03em;
}

.ffw-legal-summary p,
.ffw-legal-card p,
.ffw-legal-card li {
  color: rgba(45, 46, 46, 0.72);
  line-height: 1.65;
}

.ffw-legal-content {
  display: grid;
  gap: 16px;
}

.ffw-legal-intro {
  margin: 0 0 8px;
  color: rgba(45, 46, 46, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}

.ffw-legal-card {
  padding: clamp(22px, 3vw, 34px);
}

.ffw-legal-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
}

@media (max-width: 1320px) {
  .ffw-site .ffw-nav-link {
    padding-inline: 8px;
    font-size: 0.84rem;
  }
}

@media (max-width: 1180px) {
  .ffw-site .ffw-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .ffw-legal-layout,
  .ffw-site .ffw-footer__top {
    grid-template-columns: 1fr;
  }

  .ffw-legal-summary {
    position: static;
  }
}

/* FF-S28D — audience/service page rhythm polish and Monzo-style public handover pass */
.ffw-site[data-ffw-page="sole-traders"],
.ffw-site[data-ffw-page="small-businesses"],
.ffw-site[data-ffw-page="contractors"],
.ffw-site[data-ffw-page="unincorporated-landlords"],
.ffw-site[data-ffw-page="limited-companies"],
.ffw-site[data-ffw-page="making-tax-digital"],
.ffw-site[data-ffw-page="bookkeeping"],
.ffw-site[data-ffw-page="vat-returns"],
.ffw-site[data-ffw-page="payroll"],
.ffw-site[data-ffw-page="company-formation"],
.ffw-site[data-ffw-page="other-services"] {
  --ff-s28d-surface: #fffaf2;
  --ff-s28d-cream: #f7f1e7;
  --ff-s28d-card: rgba(255, 255, 255, 0.86);
  --ff-s28d-line: rgba(54, 75, 57, 0.13);
}

.ffw-site[data-ffw-page="sole-traders"] .ffw-section,
.ffw-site[data-ffw-page="small-businesses"] .ffw-section,
.ffw-site[data-ffw-page="contractors"] .ffw-section,
.ffw-site[data-ffw-page="unincorporated-landlords"] .ffw-section,
.ffw-site[data-ffw-page="limited-companies"] .ffw-section,
.ffw-site[data-ffw-page="making-tax-digital"] .ffw-section,
.ffw-site[data-ffw-page="bookkeeping"] .ffw-section,
.ffw-site[data-ffw-page="vat-returns"] .ffw-section,
.ffw-site[data-ffw-page="payroll"] .ffw-section,
.ffw-site[data-ffw-page="company-formation"] .ffw-section,
.ffw-site[data-ffw-page="other-services"] .ffw-section {
  padding-block: clamp(48px, 6.5vw, 86px);
}

.ffw-site .ffw-hero--audience,
.ffw-site .ffw-hero--service {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(50px, 6vw, 80px);
  background:
    radial-gradient(circle at 78% 10%, rgba(223, 114, 95, 0.16), transparent 28%),
    radial-gradient(circle at 8% 26%, rgba(54, 75, 57, 0.08), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f7f1e7 62%, #eef3e8 100%) !important;
}

.ffw-site .ffw-section--audience-intro,
.ffw-site .ffw-section--service-intro,
.ffw-site .ffw-section--service-inclusions,
.ffw-site .ffw-section--audience-services {
  background: linear-gradient(180deg, var(--ff-s28d-surface, #fffaf2) 0%, #fffefa 100%) !important;
}

.ffw-site .ffw-section--audience-fit,
.ffw-site .ffw-section--service-fit,
.ffw-site .ffw-section--related-routes,
.ffw-site .ffw-section--services-chooser,
.ffw-site .ffw-section--journey-form {
  background:
    radial-gradient(circle at 12% 18%, rgba(223, 114, 95, 0.07), transparent 26%),
    var(--ff-s28d-cream, #f7f1e7) !important;
}

.ffw-site .ffw-audience-intro,
.ffw-site .ffw-service-intro {
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
}

.ffw-site .ffw-audience-intro__copy,
.ffw-site .ffw-service-intro__copy {
  position: relative;
  top: auto;
  align-self: stretch;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--ff-s28d-line, rgba(54, 75, 57, 0.13));
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 54px rgba(45, 46, 46, 0.045);
}

.ffw-site .ffw-audience-intro__copy::after,
.ffw-site .ffw-service-intro__copy::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 76px;
  height: 76px;
  border-radius: 26px;
  background: rgba(223, 114, 95, 0.12);
  transform: rotate(12deg);
}

.ffw-site .ffw-audience-intro__copy > *,
.ffw-site .ffw-service-intro__copy > * {
  position: relative;
  z-index: 1;
}

.ffw-site .ffw-audience-snapshot,
.ffw-site .ffw-service-snapshot {
  gap: 12px;
}

.ffw-site .ffw-audience-snapshot__item,
.ffw-site .ffw-service-snapshot__item,
.ffw-site .ffw-list-panel,
.ffw-site .ffw-outcome-card,
.ffw-site .ffw-service-process article,
.ffw-site .ffw-card-grid--service .ffw-card,
.ffw-site .ffw-card-grid--service-inclusion .ffw-card,
.ffw-site .ffw-card-grid--related .ffw-card,
.ffw-site .ffw-card-grid--service-hub .ffw-card {
  border: 1px solid var(--ff-s28d-line, rgba(54, 75, 57, 0.13));
  border-radius: 24px;
  background: var(--ff-s28d-card, rgba(255, 255, 255, 0.86));
  box-shadow: 0 18px 54px rgba(45, 46, 46, 0.052);
}

.ffw-site .ffw-list-panel {
  padding: clamp(24px, 4vw, 36px);
}

.ffw-site .ffw-list-panel h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  letter-spacing: -0.035em;
}

.ffw-site .ffw-list-panel li {
  font-weight: 720;
}

.ffw-site .ffw-section-head--split {
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
}

.ffw-site .ffw-section-head--split > p,
.ffw-site .ffw-section-head p:last-child {
  max-width: 520px;
  font-weight: 680;
}

.ffw-site .ffw-audience-highlight,
.ffw-site .ffw-service-software {
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(223, 114, 95, 0.24), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #2f4634 0%, #3f5b43 100%) !important;
}

.ffw-site .ffw-placeholder-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(26px, 5vw, 44px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 14%, rgba(223, 114, 95, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.88);
}

.ffw-site .ffw-placeholder-panel .ffw-btn {
  white-space: nowrap;
}

.ffw-site .ffw-section--journey-form .ffw-copy-card,
.ffw-site .ffw-section--journey-form .ffw-form {
  border-radius: 28px;
}

.ffw-site .ffw-card-grid--service .ffw-card a,
.ffw-site .ffw-card-grid--service-inclusion .ffw-card a,
.ffw-site .ffw-card-grid--related .ffw-card a,
.ffw-site .ffw-card-grid--service-hub .ffw-card a {
  margin-top: auto;
}

@media (max-width: 980px) {
  .ffw-site .ffw-audience-intro,
  .ffw-site .ffw-service-intro,
  .ffw-site .ffw-placeholder-panel {
    grid-template-columns: 1fr;
  }

  .ffw-site .ffw-placeholder-panel .ffw-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-audience-intro__copy,
  .ffw-site .ffw-service-intro__copy,
  .ffw-site .ffw-audience-snapshot__item,
  .ffw-site .ffw-service-snapshot__item,
  .ffw-site .ffw-list-panel,
  .ffw-site .ffw-outcome-card,
  .ffw-site .ffw-service-process article,
  .ffw-site .ffw-card-grid--service .ffw-card,
  .ffw-site .ffw-card-grid--service-inclusion .ffw-card,
  .ffw-site .ffw-card-grid--related .ffw-card,
  .ffw-site .ffw-card-grid--service-hub .ffw-card,
  .ffw-site .ffw-placeholder-panel {
    border-radius: 18px;
  }
}

/* FF-S28E — SEO/internal-link journey strip */
.ffw-site .ffw-section--seo-links {
  padding-block: clamp(34px, 5vw, 62px);
  background:
    radial-gradient(circle at 88% 16%, rgba(223, 114, 95, 0.10), transparent 28%),
    linear-gradient(180deg, #fffefa 0%, #f7f1e7 100%);
}

.ffw-site .ffw-seo-link-panel {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(54, 75, 57, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 58px rgba(45, 46, 46, 0.055);
}

.ffw-site .ffw-seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(18px, 3vw, 28px);
}

.ffw-site .ffw-seo-link-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px 48px 20px 20px;
  border: 1px solid rgba(54, 75, 57, 0.12);
  border-radius: 24px;
  background: #fffaf2;
  color: var(--ffw-ink, #17241b);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ffw-site .ffw-seo-link-card:hover,
.ffw-site .ffw-seo-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(54, 75, 57, 0.22);
  box-shadow: 0 18px 46px rgba(45, 46, 46, 0.08);
}

.ffw-site .ffw-seo-link-card span {
  font-size: 1.05rem;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.ffw-site .ffw-seo-link-card small {
  color: rgba(23, 36, 27, 0.72);
  font-size: 0.92rem;
  font-weight: 620;
  line-height: 1.45;
}

.ffw-site .ffw-seo-link-card b {
  position: absolute;
  right: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(54, 75, 57, 0.10);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .ffw-site .ffw-seo-link-grid {
    grid-template-columns: 1fr;
  }

  .ffw-site .ffw-seo-link-card {
    min-height: 0;
  }
}

/* FF-S28G — multi-step CRM form shell */
.ffw-site .ffw-crm-form--multistep {
  overflow: hidden;
}

.ffw-site .ffw-crm-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 18px;
  padding: 10px;
  border: 1px solid rgba(23, 70, 58, 0.1);
  border-radius: 999px;
  background: rgba(247, 244, 237, 0.72);
}

.ffw-site .ffw-crm-stepper__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 11px 6px 7px;
  border-radius: 999px;
  color: rgba(23, 70, 58, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.ffw-site .ffw-crm-stepper__dot {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(23, 70, 58, 0.1);
  color: var(--ffw-forest, #17463a);
  font-size: 0.74rem;
  line-height: 1;
}

.ffw-site .ffw-crm-stepper__item.is-active {
  background: #fff;
  color: var(--ffw-forest, #17463a);
  box-shadow: 0 10px 28px rgba(23, 70, 58, 0.09);
}

.ffw-site .ffw-crm-stepper__item.is-active .ffw-crm-stepper__dot,
.ffw-site .ffw-crm-stepper__item.is-complete .ffw-crm-stepper__dot {
  background: var(--ffw-forest, #17463a);
  color: #fff;
}

.ffw-site .ffw-crm-form[data-ffw-multistep-ready="true"] .ffw-crm-step[hidden],
.ffw-site .ffw-crm-form[data-ffw-multistep-ready="true"] [data-ffw-step-prev][hidden],
.ffw-site .ffw-crm-form[data-ffw-multistep-ready="true"] [data-ffw-step-next][hidden],
.ffw-site .ffw-crm-form[data-ffw-multistep-ready="true"] [data-ffw-step-submit][hidden] {
  display: none !important;
}

.ffw-site .ffw-crm-form[data-ffw-multistep-ready="true"] .ffw-crm-form-section {
  margin-top: 12px;
  animation: ffwCrmStepIn 0.2s ease both;
}

.ffw-site .ffw-crm-step-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.ffw-site .ffw-crm-step-actions .ffw-btn {
  margin: 0;
}

.ffw-site .ffw-crm-step-count {
  flex: 1 1 auto;
  text-align: center;
  color: rgba(23, 70, 58, 0.66);
  font-size: 0.86rem;
  font-weight: 800;
}

.ffw-site .ffw-crm-field--key-business_type select,
.ffw-site .ffw-crm-field--key-company_number input {
  min-height: 52px;
}

@keyframes ffwCrmStepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .ffw-site .ffw-crm-stepper {
    border-radius: 22px;
  }

  .ffw-site .ffw-crm-stepper__label {
    display: none;
  }

  .ffw-site .ffw-crm-step-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ffw-site .ffw-crm-step-count {
    order: -1;
    text-align: left;
  }
}

/* FF-S28H — conditional Companies House form journey */
.ffw-site .ffw-crm-form [data-ffw-conditional-hidden="true"],
.ffw-site .ffw-crm-stepper__item.is-hidden,
.ffw-site .ffw-crm-stepper__item[hidden] {
  display: none !important;
}

.ffw-site .ffw-crm-field--key-companies_house_registered select {
  min-height: 52px;
}

.ffw-site .ffw-crm-field--key-companies_house_registered .ffw-form-help,
.ffw-site .ffw-crm-field--key-company_number .ffw-form-help,
.ffw-site .ffw-crm-company-helper {
  display: block;
  margin-top: 7px;
  color: rgba(23, 70, 58, 0.68);
  font-size: 0.88rem;
  line-height: 1.45;
}

.ffw-site [data-ffw-company-verify-button="1"] {
  box-shadow: 0 14px 34px rgba(23, 70, 58, 0.18);
}

/* FF-S28I — public Companies House verification */
.ffw-site .ffw-crm-company-verification {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(23, 70, 58, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,244,237,0.78));
  box-shadow: 0 16px 42px rgba(23, 70, 58, 0.08);
}

.ffw-site .ffw-crm-company-verification[hidden],
.ffw-site .ffw-crm-company-verification [hidden] {
  display: none !important;
}

.ffw-site .ffw-crm-company-verification__status {
  margin: 0 0 12px;
  padding: 11px 13px;
  border-radius: 16px;
  background: rgba(23, 70, 58, 0.07);
  color: var(--ffw-forest, #17463a);
  font-weight: 800;
  line-height: 1.45;
}

.ffw-site .ffw-crm-company-verification[data-ffw-company-verification-state="success"] .ffw-crm-company-verification__status {
  background: rgba(50, 119, 86, 0.12);
}

.ffw-site .ffw-crm-company-verification[data-ffw-company-verification-state="error"] .ffw-crm-company-verification__status {
  background: rgba(183, 78, 48, 0.11);
  color: #8a351f;
}

.ffw-site .ffw-crm-company-verification[data-ffw-company-verification-state="loading"] .ffw-crm-company-verification__status {
  background: rgba(23, 70, 58, 0.09);
}

.ffw-site .ffw-crm-company-verification__select {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--ffw-forest, #17463a);
  font-weight: 800;
}

.ffw-site .ffw-crm-company-verification__select select {
  width: 100%;
  min-height: 52px;
}

.ffw-site .ffw-crm-company-verification__summary {
  display: grid;
  gap: 5px;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid rgba(23, 70, 58, 0.1);
  border-radius: 18px;
  background: #fff;
  color: rgba(23, 70, 58, 0.76);
  font-size: 0.93rem;
  line-height: 1.45;
}

.ffw-site .ffw-crm-company-verification__summary strong {
  display: block;
  color: var(--ffw-forest, #17463a);
  font-size: 1.02rem;
}

.ffw-site .ffw-crm-company-verification__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ffw-site .ffw-crm-company-verification__actions .ffw-btn {
  margin: 0;
}

@media (max-width: 720px) {
  .ffw-site .ffw-crm-company-verification {
    border-radius: 20px;
    padding: 13px;
  }

  .ffw-site .ffw-crm-company-verification__actions {
    flex-direction: column;
  }
}

/* FF-S28J — Companies House confirmation + CRM enrichment polish */
.ffw-site .ffw-crm-step-intro {
  grid-column: 1 / -1;
  margin: -2px 0 12px;
  max-width: 720px;
  color: rgba(23, 70, 58, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 650;
}

.ffw-site .ffw-crm-company-verification__help {
  margin: -4px 0 12px;
  color: rgba(23, 70, 58, 0.64);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 650;
}

.ffw-site .ffw-crm-company-verification__summary strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.ffw-site .ffw-crm-company-verification__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(50, 119, 86, 0.13);
  color: var(--ffw-forest, #17463a);
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ffw-site .ffw-crm-company-verification__badge--check {
  background: rgba(183, 78, 48, 0.12);
  color: #8a351f;
}

.ffw-site .ffw-crm-company-verification__confirmed {
  display: grid;
  gap: 4px;
  margin: 0 0 14px;
  padding: 13px 14px;
  border: 1px solid rgba(50, 119, 86, 0.18);
  border-radius: 18px;
  background: rgba(50, 119, 86, 0.08);
  color: rgba(23, 70, 58, 0.75);
  font-size: 0.93rem;
  line-height: 1.45;
}

.ffw-site .ffw-crm-company-verification__confirmed strong {
  color: var(--ffw-forest, #17463a);
  font-weight: 950;
}

/* FF-S28M — public form bug-fix, director selection and structural polish */
.ffw-site .ffw-crm-form--multistep {
  gap: 16px;
  padding: clamp(24px, 3.2vw, 38px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,253,248,0.96));
}

.ffw-site .ffw-crm-form--multistep > h2 {
  max-width: 740px;
  margin: -2px 0 0;
  color: var(--ffw-ink, #17241b);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-transform: none;
}

.ffw-site .ffw-crm-form--multistep > p:not(.ffw-eyebrow),
.ffw-site .ffw-crm-step-intro {
  max-width: 700px;
  color: rgba(23, 70, 58, 0.72);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
}

.ffw-site .ffw-crm-form--multistep .ffw-form-grid {
  align-items: start;
  gap: 18px;
}

.ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Business details"] .ffw-form-grid,
.ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Company check"] .ffw-form-grid {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.ffw-site .ffw-crm-form--multistep .ffw-crm-field,
.ffw-site .ffw-crm-form--multistep .ffw-consent {
  align-self: start;
  align-content: start;
}

.ffw-site .ffw-crm-form--multistep label.ffw-crm-field {
  min-height: 0;
}

.ffw-site .ffw-crm-form--multistep input:not([type="checkbox"]),
.ffw-site .ffw-crm-form--multistep select {
  box-sizing: border-box;
  height: 54px;
  min-height: 54px;
  line-height: 1.2;
}

.ffw-site .ffw-crm-form--multistep textarea {
  box-sizing: border-box;
}

.ffw-site .ffw-crm-form--multistep .ffw-crm-form-section legend {
  margin-bottom: 8px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  letter-spacing: -0.02em;
  text-transform: none;
}

.ffw-site .ffw-crm-stepper {
  border-radius: 28px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.ffw-site .ffw-crm-stepper__item {
  white-space: nowrap;
}

.ffw-site .ffw-crm-company-verification__select--officer span {
  color: rgba(23, 70, 58, 0.62);
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 650;
}

.ffw-site .ffw-crm-company-verification__select--officer select {
  background: #fff;
}

.ffw-site .ffw-form-status.ffw-form-status--error {
  margin-bottom: 6px;
  border-radius: 18px;
}

@media (max-width: 860px) {
  .ffw-site .ffw-crm-form--multistep .ffw-form-grid,
  .ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Business details"] .ffw-form-grid,
  .ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Company check"] .ffw-form-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

/* FF-S28N — director prefill bug fix and form structure cleanup */
.ffw-site .ffw-crm-form--multistep .ffw-crm-field__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(23, 36, 27, 0.9);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.25;
}

.ffw-site .ffw-crm-form--multistep .ffw-crm-field__required {
  color: #b74e30;
  font-weight: 950;
}

.ffw-site .ffw-crm-form--multistep input[data-ffw-autofilled="true"] {
  border-color: rgba(50, 119, 86, 0.26);
  background: linear-gradient(180deg, #ffffff 0%, rgba(235, 247, 239, 0.62) 100%);
  box-shadow: inset 0 0 0 1px rgba(50, 119, 86, 0.08);
}

.ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Your details"] .ffw-form-grid,
.ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Support needed"] .ffw-form-grid {
  max-width: 760px;
}

.ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Your details"] .ffw-form-grid {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.ffw-site .ffw-crm-director-prefill-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  max-width: 760px;
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid rgba(50, 119, 86, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(50, 119, 86, 0.10), rgba(255, 255, 255, 0.92));
  color: rgba(23, 70, 58, 0.76);
  box-shadow: 0 14px 34px rgba(23, 70, 58, 0.06);
}

.ffw-site .ffw-crm-director-prefill-card[hidden] {
  display: none !important;
}

.ffw-site .ffw-crm-director-prefill-card strong {
  color: var(--ffw-forest, #17463a);
  font-size: 0.94rem;
  font-weight: 950;
}

.ffw-site .ffw-crm-director-prefill-card span {
  color: var(--ffw-ink, #17241b);
  font-size: 1.02rem;
  font-weight: 850;
}

.ffw-site .ffw-crm-director-prefill-card small {
  color: rgba(23, 70, 58, 0.66);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.ffw-site .ffw-crm-company-verification__select--officer {
  padding: 13px;
  border: 1px solid rgba(23, 70, 58, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.ffw-site .ffw-crm-company-verification__actions {
  margin-top: 4px;
}

.ffw-site .ffw-crm-form--multistep .ffw-crm-step-actions {
  max-width: 760px;
  padding-top: 8px;
  border-top: 1px solid rgba(23, 70, 58, 0.08);
}

.ffw-site .ffw-crm-form--multistep .ffw-form-smallprint {
  max-width: 760px;
}

@media (max-width: 760px) {
  .ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Your details"] .ffw-form-grid,
  .ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Support needed"] .ffw-form-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

/* FF-S28O — page clean-up, form priority and logo hero swap */
.ffw-site {
  --ff-clean-section-y: clamp(64px, 8vw, 106px);
  --ff-clean-tight-y: clamp(42px, 5.8vw, 76px);
}

.ffw-site .ffw-section,
.ffw-site .ffw-section--mockup-routes,
.ffw-site .ffw-section--home-proof,
.ffw-site .ffw-section--home-pricing,
.ffw-site .ffw-section--home-resources,
.ffw-site .ffw-section--split {
  padding-top: var(--ff-clean-section-y) !important;
  padding-bottom: var(--ff-clean-section-y) !important;
}

.ffw-site .ffw-section--journey-form,
.ffw-site .ffw-section--journey-form-high,
.ffw-site .ffw-section--contact-form {
  padding-top: var(--ff-clean-tight-y) !important;
  padding-bottom: var(--ff-clean-tight-y) !important;
  scroll-margin-top: 112px;
}

.ffw-site .ffw-section--journey-form + .ffw-section,
.ffw-site .ffw-section--contact-form + .ffw-section {
  padding-top: clamp(58px, 7vw, 92px) !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) {
  padding-top: clamp(72px, 8vw, 112px) !important;
  padding-bottom: clamp(48px, 6vw, 76px) !important;
}

.ffw-site .ffw-home-hero--mockup {
  padding-top: clamp(76px, 8.5vw, 124px) !important;
  padding-bottom: clamp(22px, 3vw, 38px) !important;
}

.ffw-site h1,
.ffw-site h2,
.ffw-site h3 {
  text-wrap: balance;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1,
.ffw-site .ffw-home-hero--mockup h1 {
  max-width: 860px !important;
  line-height: 0.98 !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1 {
  font-size: clamp(3rem, 6vw, 5.9rem) !important;
}

.ffw-site .ffw-home-hero--mockup h1 {
  font-size: clamp(3.35rem, 7.8vw, 7.4rem) !important;
}

.ffw-site .ffw-lead,
.ffw-site .ffw-section-head p:not(.ffw-eyebrow),
.ffw-site .ffw-section-head--split > p,
.ffw-site .ffw-copy-card > p:not(.ffw-eyebrow),
.ffw-site .ffw-card > p,
.ffw-site .ffw-route-card > p,
.ffw-site .ffw-price-card p,
.ffw-site .ffw-placeholder-panel p,
.ffw-site .ffw-audience-snapshot p,
.ffw-site .ffw-service-snapshot p {
  max-width: 680px;
  line-height: 1.58 !important;
}

.ffw-site .ffw-section-head,
.ffw-site .ffw-section-head--split {
  margin-bottom: clamp(28px, 4vw, 52px) !important;
}

.ffw-site .ffw-section-head h2,
.ffw-site .ffw-section-head--split h2,
.ffw-site .ffw-copy-card h2,
.ffw-site .ffw-placeholder-panel h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.2vw, 4.6rem) !important;
  line-height: 1.02 !important;
}

.ffw-site .ffw-card,
.ffw-site .ffw-list-panel,
.ffw-site .ffw-copy-card,
.ffw-site .ffw-price-card,
.ffw-site .ffw-audience-snapshot__item,
.ffw-site .ffw-service-snapshot__item,
.ffw-site .ffw-outcome-card {
  padding: clamp(24px, 3vw, 36px) !important;
}

.ffw-site .ffw-card-grid,
.ffw-site .ffw-two-col,
.ffw-site .ffw-audience-intro,
.ffw-site .ffw-service-intro,
.ffw-site .ffw-pricing-grid {
  gap: clamp(22px, 3.2vw, 42px) !important;
}

.ffw-site .ffw-actions {
  margin-top: clamp(24px, 3.2vw, 36px) !important;
}

.ffw-site .ffw-home-scene__tree,
.ffw-site .ffw-interior-scene__tree {
  object-fit: contain !important;
  height: auto !important;
  max-height: none !important;
  opacity: 0.98 !important;
  filter: drop-shadow(0 26px 48px rgba(23, 70, 58, 0.18)) !important;
}

.ffw-site .ffw-home-scene__tree {
  right: 50% !important;
  bottom: 14% !important;
  width: min(260px, 38%) !important;
  transform: translateX(50%) !important;
}

.ffw-site .ffw-interior-scene__tree {
  right: 50% !important;
  bottom: 28% !important;
  width: min(230px, 46%) !important;
  transform: translateX(50%) !important;
}

.ffw-site .ffw-home-scene__ground {
  left: 22% !important;
  right: 22% !important;
  bottom: 11% !important;
  height: 16px !important;
  border-radius: 999px !important;
  background: rgba(54, 75, 57, 0.12) !important;
}

.ffw-site .ffw-journey-form-grid,
.ffw-site .ffw-section--contact-form .ffw-two-col {
  align-items: start !important;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr) !important;
}

.ffw-site .ffw-section--journey-form .ffw-crm-form,
.ffw-site .ffw-section--contact-form .ffw-crm-form {
  position: relative;
  z-index: 2;
}

.ffw-site .ffw-section--journey-form .ffw-copy-card h2,
.ffw-site .ffw-section--contact-form .ffw-copy-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.5rem) !important;
}

.ffw-site .ffw-section--journey-form .ffw-steps-list,
.ffw-site .ffw-section--contact-form .ffw-steps-list {
  margin-top: 22px !important;
}

@media (max-width: 980px) {
  .ffw-site .ffw-journey-form-grid,
  .ffw-site .ffw-section--contact-form .ffw-two-col {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-home-scene__tree {
    bottom: 14% !important;
    width: min(220px, 42%) !important;
  }

  .ffw-site .ffw-interior-scene__tree {
    width: min(200px, 42%) !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-section,
  .ffw-site .ffw-section--mockup-routes,
  .ffw-site .ffw-section--home-proof,
  .ffw-site .ffw-section--home-pricing,
  .ffw-site .ffw-section--home-resources,
  .ffw-site .ffw-section--split {
    padding-top: clamp(48px, 12vw, 70px) !important;
    padding-bottom: clamp(48px, 12vw, 70px) !important;
  }

  .ffw-site .ffw-home-hero--mockup h1,
  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1 {
    font-size: clamp(2.95rem, 14vw, 4.5rem) !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: 310px !important;
  }

  .ffw-site .ffw-home-scene__tree {
    width: min(175px, 46%) !important;
  }

  .ffw-site .ffw-interior-scene {
    min-height: 280px !important;
  }
}

/* FF-S28P — global typography, spacing and hero system reset
   This slice responds to the visual review screenshots: homepage hero heading too large,
   hero logo scale inconsistent, headings too tight, and overall page rhythm needing more air. */
.ffw-site {
  --ff-s28p-heading-tracking: -0.034em;
  --ff-s28p-heading-tracking-tight: -0.044em;
  --ff-s28p-heading-line: 1.08;
  --ff-s28p-section-y: clamp(72px, 8.4vw, 122px);
  --ff-s28p-section-y-tight: clamp(54px, 6.4vw, 88px);
  --ff-s28p-card-gap: clamp(24px, 3vw, 38px);
}

.ffw-site h1,
.ffw-site h2,
.ffw-site h3,
.ffw-site .ffw-section-head h2,
.ffw-site .ffw-section-head--split h2,
.ffw-site .ffw-copy-card h2,
.ffw-site .ffw-placeholder-panel h2,
.ffw-site .ffw-growth-band h2,
.ffw-site .ffw-cta-band h2,
.ffw-site .ffw-home-price-card h3,
.ffw-site .ffw-card h3,
.ffw-site .ffw-route-card h3,
.ffw-site .ffw-price-card h3,
.ffw-site .ffw-process h3 {
  letter-spacing: var(--ff-s28p-heading-tracking) !important;
  line-height: var(--ff-s28p-heading-line) !important;
  text-wrap: balance;
}

.ffw-site .ffw-eyebrow {
  margin-bottom: clamp(10px, 1.4vw, 16px) !important;
  letter-spacing: 0.12em !important;
  line-height: 1.3 !important;
}

.ffw-site .ffw-lead,
.ffw-site .ffw-section-head p:not(.ffw-eyebrow),
.ffw-site .ffw-section-head--split > p,
.ffw-site .ffw-card p,
.ffw-site .ffw-route-card p,
.ffw-site .ffw-copy-card p,
.ffw-site .ffw-price-card p,
.ffw-site .ffw-outcome-card p,
.ffw-site .ffw-next-step-card p {
  line-height: 1.64 !important;
}

.ffw-site .ffw-section,
.ffw-site .ffw-section--mockup-services,
.ffw-site .ffw-section--mockup-growth,
.ffw-site .ffw-section--mockup-routes,
.ffw-site .ffw-section--home-proof,
.ffw-site .ffw-section--home-pricing,
.ffw-site .ffw-section--home-resources,
.ffw-site .ffw-section--split,
.ffw-site .ffw-section--audience-intro,
.ffw-site .ffw-section--service-intro,
.ffw-site .ffw-section--service-inclusions,
.ffw-site .ffw-section--audience-services,
.ffw-site .ffw-section--related-routes,
.ffw-site .ffw-section--services-chooser {
  padding-top: var(--ff-s28p-section-y) !important;
  padding-bottom: var(--ff-s28p-section-y) !important;
}

.ffw-site .ffw-section--journey-form,
.ffw-site .ffw-section--journey-form-high,
.ffw-site .ffw-section--contact-form,
.ffw-site .ffw-section--mockup-growth {
  padding-top: var(--ff-s28p-section-y-tight) !important;
  padding-bottom: var(--ff-s28p-section-y-tight) !important;
}

.ffw-site .ffw-section-head,
.ffw-site .ffw-section-head--split {
  margin-bottom: clamp(32px, 4.4vw, 58px) !important;
}

.ffw-site .ffw-card-grid,
.ffw-site .ffw-route-grid,
.ffw-site .ffw-two-col,
.ffw-site .ffw-audience-intro,
.ffw-site .ffw-service-intro,
.ffw-site .ffw-pricing-grid,
.ffw-site .ffw-home-price-grid,
.ffw-site .ffw-process,
.ffw-site .ffw-outcome-grid,
.ffw-site .ffw-next-steps-grid,
.ffw-site .ffw-service-process,
.ffw-site .ffw-audience-snapshot,
.ffw-site .ffw-service-snapshot {
  gap: var(--ff-s28p-card-gap) !important;
}

/* Homepage hero: make the message cleaner and the logo a supporting brand mark. */
.ffw-site .ffw-home-hero--mockup {
  min-height: clamp(520px, 56vw, 690px) !important;
  padding-top: clamp(58px, 6.4vw, 96px) !important;
  padding-bottom: clamp(14px, 2.5vw, 28px) !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.88fr) !important;
  gap: clamp(34px, 5.4vw, 82px) !important;
  align-items: end !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
  max-width: 610px !important;
  padding-bottom: clamp(82px, 9vw, 138px) !important;
}

.ffw-site .ffw-home-hero--mockup h1 {
  max-width: 590px !important;
  color: var(--ff-green) !important;
  font-size: clamp(3.05rem, 5.05vw, 5.65rem) !important;
  font-weight: 500 !important;
  letter-spacing: var(--ff-s28p-heading-tracking-tight) !important;
  line-height: 1.05 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-lead {
  max-width: 520px !important;
  margin-top: clamp(18px, 2.2vw, 26px) !important;
  font-size: clamp(1rem, 1.18vw, 1.17rem) !important;
  line-height: 1.68 !important;
}

.ffw-site .ffw-home-hero--mockup .ffw-actions {
  margin-top: clamp(24px, 3vw, 34px) !important;
}

.ffw-site .ffw-home-scene {
  min-height: clamp(430px, 42vw, 590px) !important;
}

.ffw-site .ffw-home-scene__arch {
  right: 26% !important;
  width: min(405px, 54%) !important;
  height: 82% !important;
}

.ffw-site .ffw-home-scene__coral {
  right: -2% !important;
  width: min(430px, 55%) !important;
  height: 68% !important;
}

.ffw-site .ffw-home-scene__tree {
  right: 50% !important;
  bottom: 17% !important;
  width: min(205px, 30%) !important;
  max-width: 205px !important;
  max-height: 58% !important;
  transform: translateX(50%) !important;
  filter: drop-shadow(0 18px 36px rgba(23, 70, 58, 0.16)) !important;
}

.ffw-site .ffw-home-scene__ground {
  left: 31% !important;
  right: 31% !important;
  bottom: 14% !important;
  height: 10px !important;
  opacity: 0.72 !important;
}

/* Interior heroes: make logo presence stronger and heading rhythm calmer. */
.ffw-site .ffw-hero--audience,
.ffw-site .ffw-hero--service {
  padding-top: clamp(58px, 6.8vw, 98px) !important;
  padding-bottom: clamp(48px, 5.8vw, 78px) !important;
}

.ffw-site .ffw-hero--audience .ffw-hero__grid,
.ffw-site .ffw-hero--service .ffw-hero__grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.78fr) !important;
  gap: clamp(34px, 5.2vw, 76px) !important;
}

.ffw-site .ffw-hero--audience h1,
.ffw-site .ffw-hero--service h1 {
  max-width: 700px !important;
  font-size: clamp(2.7rem, 4.65vw, 4.95rem) !important;
  font-weight: 500 !important;
  letter-spacing: var(--ff-s28p-heading-tracking) !important;
  line-height: 1.07 !important;
}

.ffw-site .ffw-hero--audience .ffw-lead,
.ffw-site .ffw-hero--service .ffw-lead {
  max-width: 570px !important;
  margin-top: clamp(18px, 2vw, 24px) !important;
  font-size: clamp(1rem, 1.18vw, 1.16rem) !important;
  line-height: 1.68 !important;
}

.ffw-site .ffw-hero--audience .ffw-actions,
.ffw-site .ffw-hero--service .ffw-actions {
  margin-top: clamp(22px, 2.8vw, 32px) !important;
}

.ffw-site .ffw-hero--audience .ffw-badges,
.ffw-site .ffw-hero--service .ffw-badges {
  margin-top: clamp(22px, 2.8vw, 30px) !important;
}

.ffw-site .ffw-hero--audience .ffw-interior-scene,
.ffw-site .ffw-hero--service .ffw-interior-scene {
  min-height: clamp(340px, 34vw, 470px) !important;
  border-radius: 24px !important;
}

.ffw-site .ffw-hero--audience .ffw-interior-scene__arch,
.ffw-site .ffw-hero--service .ffw-interior-scene__arch {
  right: 24% !important;
  width: min(310px, 54%) !important;
  height: 76% !important;
}

.ffw-site .ffw-hero--audience .ffw-interior-scene__coral,
.ffw-site .ffw-hero--service .ffw-interior-scene__coral {
  right: -8% !important;
  width: min(320px, 56%) !important;
  height: 61% !important;
}

.ffw-site .ffw-hero--audience .ffw-interior-scene__tree,
.ffw-site .ffw-hero--service .ffw-interior-scene__tree {
  right: 50% !important;
  bottom: 24% !important;
  width: min(295px, 54%) !important;
  max-width: 295px !important;
  max-height: 62% !important;
  transform: translateX(50%) !important;
  filter: drop-shadow(0 20px 40px rgba(23, 70, 58, 0.16)) !important;
}

.ffw-site .ffw-hero--audience .ffw-interior-scene__card,
.ffw-site .ffw-hero--service .ffw-interior-scene__card {
  right: clamp(16px, 4vw, 32px) !important;
  bottom: clamp(18px, 4vw, 36px) !important;
  width: min(255px, 68%) !important;
  padding: 16px 18px !important;
}

/* Section headings and cards: remove the crushed feeling across page families. */
.ffw-site .ffw-section-head h2,
.ffw-site .ffw-section-head--split h2,
.ffw-site .ffw-copy-card h2,
.ffw-site .ffw-placeholder-panel h2,
.ffw-site .ffw-proof-panel h2,
.ffw-site .ffw-split-card h2,
.ffw-site .ffw-cta-band h2 {
  max-width: 720px !important;
  font-size: clamp(2.1rem, 3.55vw, 3.85rem) !important;
  line-height: 1.1 !important;
  letter-spacing: var(--ff-s28p-heading-tracking) !important;
}

.ffw-site .ffw-card h3,
.ffw-site .ffw-route-card h3,
.ffw-site .ffw-price-card h3,
.ffw-site .ffw-outcome-card h3,
.ffw-site .ffw-next-step-card h3,
.ffw-site .ffw-process h3,
.ffw-site .ffw-service-process h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.022em !important;
}

.ffw-site .ffw-growth-band h2 {
  font-size: clamp(2rem, 3vw, 3.2rem) !important;
  line-height: 1.1 !important;
}

.ffw-site .ffw-card,
.ffw-site .ffw-route-card,
.ffw-site .ffw-home-price-card,
.ffw-site .ffw-price-card,
.ffw-site .ffw-process article,
.ffw-site .ffw-outcome-card,
.ffw-site .ffw-next-step-card,
.ffw-site .ffw-copy-card,
.ffw-site .ffw-list-panel,
.ffw-site .ffw-placeholder-panel {
  padding: clamp(24px, 2.6vw, 34px) !important;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .ffw-site .ffw-home-hero--mockup h1 {
    font-size: clamp(3rem, 5.4vw, 4.85rem) !important;
  }

  .ffw-site .ffw-home-scene__tree {
    width: min(190px, 30%) !important;
  }

  .ffw-site .ffw-hero--audience h1,
  .ffw-site .ffw-hero--service h1 {
    font-size: clamp(2.65rem, 4.7vw, 4.45rem) !important;
  }
}

@media (max-width: 980px) {
  .ffw-site .ffw-home-hero--mockup {
    min-height: 0 !important;
    padding-top: clamp(44px, 8vw, 68px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__grid,
  .ffw-site .ffw-hero--audience .ffw-hero__grid,
  .ffw-site .ffw-hero--service .ffw-hero__grid {
    grid-template-columns: 1fr !important;
    gap: clamp(26px, 5vw, 42px) !important;
  }

  .ffw-site .ffw-home-hero--mockup .ffw-home-hero__copy {
    max-width: 720px !important;
    padding-bottom: 0 !important;
  }

  .ffw-site .ffw-home-hero--mockup h1 {
    max-width: 640px !important;
    font-size: clamp(3rem, 9.4vw, 4.5rem) !important;
    line-height: 1.06 !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: clamp(300px, 46vw, 420px) !important;
  }

  .ffw-site .ffw-home-scene__tree {
    bottom: 17% !important;
    width: min(180px, 30%) !important;
  }

  .ffw-site .ffw-hero--audience h1,
  .ffw-site .ffw-hero--service h1 {
    max-width: 720px !important;
    font-size: clamp(2.6rem, 8.4vw, 4rem) !important;
    line-height: 1.08 !important;
  }

  .ffw-site .ffw-hero--audience .ffw-interior-scene,
  .ffw-site .ffw-hero--service .ffw-interior-scene {
    min-height: clamp(300px, 46vw, 400px) !important;
  }

  .ffw-site .ffw-hero--audience .ffw-interior-scene__tree,
  .ffw-site .ffw-hero--service .ffw-interior-scene__tree {
    width: min(245px, 46%) !important;
  }
}

@media (max-width: 760px) {
  .ffw-site {
    --ff-s28p-section-y: clamp(52px, 12vw, 72px);
    --ff-s28p-section-y-tight: clamp(42px, 10vw, 62px);
  }

  .ffw-site .ffw-home-hero--mockup h1,
  .ffw-site .ffw-hero--audience h1,
  .ffw-site .ffw-hero--service h1 {
    font-size: clamp(2.55rem, 12.2vw, 3.9rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.032em !important;
  }

  .ffw-site .ffw-section-head h2,
  .ffw-site .ffw-section-head--split h2,
  .ffw-site .ffw-copy-card h2,
  .ffw-site .ffw-placeholder-panel h2,
  .ffw-site .ffw-proof-panel h2,
  .ffw-site .ffw-split-card h2,
  .ffw-site .ffw-cta-band h2 {
    font-size: clamp(1.95rem, 9vw, 3rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
  }

  .ffw-site .ffw-home-scene {
    min-height: clamp(250px, 66vw, 320px) !important;
  }

  .ffw-site .ffw-home-scene__tree {
    bottom: 18% !important;
    width: min(150px, 34%) !important;
    max-height: 58% !important;
  }

  .ffw-site .ffw-home-scene__ground {
    left: 34% !important;
    right: 34% !important;
  }

  .ffw-site .ffw-hero--audience .ffw-interior-scene,
  .ffw-site .ffw-hero--service .ffw-interior-scene {
    min-height: clamp(255px, 66vw, 330px) !important;
  }

  .ffw-site .ffw-hero--audience .ffw-interior-scene__tree,
  .ffw-site .ffw-hero--service .ffw-interior-scene__tree {
    bottom: 23% !important;
    width: min(205px, 50%) !important;
    max-height: 64% !important;
  }

  .ffw-site .ffw-hero--audience .ffw-interior-scene__card,
  .ffw-site .ffw-hero--service .ffw-interior-scene__card {
    width: min(220px, 70%) !important;
  }
}

@media (max-width: 420px) {
  .ffw-site .ffw-home-hero--mockup h1,
  .ffw-site .ffw-hero--audience h1,
  .ffw-site .ffw-hero--service h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem) !important;
  }

  .ffw-site .ffw-home-scene__tree {
    width: min(132px, 36%) !important;
  }

  .ffw-site .ffw-hero--audience .ffw-interior-scene__tree,
  .ffw-site .ffw-hero--service .ffw-interior-scene__tree {
    width: min(180px, 52%) !important;
  }
}


/* FF-S28Q — form layout and CTA behaviour refinement
   Slice 2: make early-page forms feel lighter, improve anchor scrolling,
   and reduce the visual weight of the CRM multi-step form without moving it lower. */
.ffw-site {
  --ff-s28q-form-max: 720px;
  --ff-s28q-form-radius: 24px;
  --ff-s28q-form-gap: clamp(18px, 2.4vw, 30px);
  --ff-s28q-input-h: 46px;
}

.ffw-site .ffw-section--journey-form,
.ffw-site .ffw-section--journey-form-high,
.ffw-site .ffw-section--contact-form {
  padding-top: clamp(34px, 4.6vw, 62px) !important;
  padding-bottom: clamp(42px, 5.6vw, 78px) !important;
  scroll-margin-top: 116px !important;
}

.ffw-site .ffw-section--journey-form .ffw-container,
.ffw-site .ffw-section--contact-form .ffw-container {
  width: min(1080px, calc(100% - 40px)) !important;
}

.ffw-site .ffw-journey-form-grid,
.ffw-site .ffw-section--contact-form .ffw-two-col {
  grid-template-columns: minmax(250px, 0.66fr) minmax(420px, 0.98fr) !important;
  gap: var(--ff-s28q-form-gap) !important;
  align-items: start !important;
}

.ffw-site .ffw-section--journey-form .ffw-copy-card,
.ffw-site .ffw-section--contact-form .ffw-copy-card {
  padding: clamp(22px, 2.8vw, 32px) !important;
  border-radius: 22px !important;
  box-shadow: 0 14px 38px rgba(45, 46, 46, 0.045) !important;
}

.ffw-site .ffw-journey-form-copy {
  top: 88px !important;
}

.ffw-site .ffw-section--journey-form .ffw-copy-card h2,
.ffw-site .ffw-section--contact-form .ffw-copy-card h2 {
  max-width: 460px !important;
  font-size: clamp(1.65rem, 2.45vw, 2.55rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.028em !important;
}

.ffw-site .ffw-section--journey-form .ffw-copy-card p:not(.ffw-eyebrow),
.ffw-site .ffw-section--contact-form .ffw-copy-card p:not(.ffw-eyebrow) {
  max-width: 440px !important;
  margin-top: 12px !important;
  font-size: 0.98rem !important;
  line-height: 1.58 !important;
}

.ffw-site .ffw-section--journey-form .ffw-steps-list,
.ffw-site .ffw-section--contact-form .ffw-steps-list {
  display: grid !important;
  gap: 8px !important;
  margin-top: 18px !important;
  padding-left: 0 !important;
  list-style: none !important;
}

.ffw-site .ffw-section--journey-form .ffw-steps-list li,
.ffw-site .ffw-section--contact-form .ffw-steps-list li {
  position: relative !important;
  padding: 9px 10px 9px 34px !important;
  border: 1px solid rgba(54, 75, 57, 0.10) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.58) !important;
  color: rgba(23, 36, 27, 0.72) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.ffw-site .ffw-section--journey-form .ffw-steps-list li::before,
.ffw-site .ffw-section--contact-form .ffw-steps-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 13px !important;
  top: 16px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: var(--ff-green) !important;
}

.ffw-site .ffw-section--journey-form .ffw-crm-form,
.ffw-site .ffw-section--contact-form .ffw-crm-form,
.ffw-site .ffw-home-hero__mobile-form .ffw-crm-form {
  justify-self: end !important;
  width: 100% !important;
  max-width: var(--ff-s28q-form-max) !important;
  padding: clamp(20px, 2.5vw, 30px) !important;
  border-radius: var(--ff-s28q-form-radius) !important;
  box-shadow: 0 18px 52px rgba(23, 70, 58, 0.095) !important;
}

.ffw-site .ffw-crm-form--multistep {
  gap: 12px !important;
}

.ffw-site .ffw-crm-form--multistep > .ffw-eyebrow {
  margin-bottom: 0 !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.13em !important;
}

.ffw-site .ffw-crm-form--multistep > h2 {
  max-width: 560px !important;
  margin-top: 0 !important;
  font-size: clamp(1.35rem, 1.95vw, 1.9rem) !important;
  line-height: 1.13 !important;
  letter-spacing: -0.03em !important;
}

.ffw-site .ffw-crm-form--multistep > p:not(.ffw-eyebrow),
.ffw-site .ffw-crm-step-intro {
  max-width: 560px !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

.ffw-site .ffw-crm-stepper {
  gap: 6px !important;
  margin: 4px 0 2px !important;
  padding: 7px !important;
  border-radius: 18px !important;
  background: rgba(247, 241, 231, 0.72) !important;
}

.ffw-site .ffw-crm-stepper__item {
  min-height: 34px !important;
  padding: 6px 8px !important;
  border-radius: 12px !important;
}

.ffw-site .ffw-crm-stepper__dot {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  font-size: 0.72rem !important;
}

.ffw-site .ffw-crm-stepper__label {
  font-size: 0.76rem !important;
  line-height: 1.2 !important;
}

.ffw-site .ffw-crm-form--multistep .ffw-crm-form-section {
  margin-top: 6px !important;
}

.ffw-site .ffw-crm-form--multistep .ffw-crm-form-section legend {
  margin-bottom: 5px !important;
  font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
  line-height: 1.2 !important;
}

.ffw-site .ffw-crm-form--multistep .ffw-form-grid,
.ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Business details"] .ffw-form-grid,
.ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Company check"] .ffw-form-grid,
.ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Your details"] .ffw-form-grid,
.ffw-site .ffw-crm-form--multistep .ffw-crm-step[data-ffw-step-label="Support needed"] .ffw-form-grid {
  gap: 12px !important;
  max-width: 620px !important;
}

.ffw-site .ffw-crm-form--multistep .ffw-crm-field__label {
  margin-bottom: 6px !important;
  font-size: 0.82rem !important;
  line-height: 1.25 !important;
}

.ffw-site .ffw-crm-form--multistep input:not([type="checkbox"]),
.ffw-site .ffw-crm-form--multistep select,
.ffw-site .ffw-crm-form--multistep .ffw-crm-field--key-business_type select,
.ffw-site .ffw-crm-form--multistep .ffw-crm-field--key-company_number input,
.ffw-site .ffw-crm-form--multistep .ffw-crm-field--key-companies_house_registered select,
.ffw-site .ffw-form input,
.ffw-site .ffw-form select,
.ffw-site .ffw-form-shell input,
.ffw-site .ffw-form-shell select {
  height: var(--ff-s28q-input-h) !important;
  min-height: var(--ff-s28q-input-h) !important;
  padding: 10px 12px !important;
  border-radius: 11px !important;
  font-size: 0.92rem !important;
}

.ffw-site .ffw-crm-form--multistep textarea,
.ffw-site .ffw-form textarea,
.ffw-site .ffw-form-shell textarea {
  min-height: 108px !important;
  padding: 11px 12px !important;
  border-radius: 12px !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}

.ffw-site .ffw-crm-company-helper,
.ffw-site .ffw-form-help,
.ffw-site .ffw-crm-company-verification__help,
.ffw-site .ffw-crm-company-verification__select--officer span {
  font-size: 0.8rem !important;
  line-height: 1.4 !important;
}

.ffw-site .ffw-crm-company-verification {
  margin-top: 6px !important;
  padding: 12px !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 30px rgba(23, 70, 58, 0.065) !important;
}

.ffw-site .ffw-crm-company-verification__status,
.ffw-site .ffw-crm-company-verification__summary,
.ffw-site .ffw-crm-company-verification__confirmed,
.ffw-site .ffw-crm-company-verification__select--officer {
  border-radius: 14px !important;
  padding: 10px 11px !important;
  font-size: 0.86rem !important;
}

.ffw-site .ffw-crm-step-actions {
  max-width: 620px !important;
  margin-top: 14px !important;
  padding-top: 12px !important;
  gap: 10px !important;
}

.ffw-site .ffw-crm-step-actions .ffw-btn,
.ffw-site .ffw-crm-company-verification__actions .ffw-btn,
.ffw-site .ffw-form button,
.ffw-site .ffw-form-shell button {
  min-height: 44px !important;
  padding: 12px 16px !important;
  border-radius: 11px !important;
  font-size: 0.9rem !important;
}

.ffw-site .ffw-crm-step-count {
  font-size: 0.8rem !important;
}

.ffw-site .ffw-form-smallprint,
.ffw-site .ffw-crm-form--multistep .ffw-form-smallprint,
.ffw-site .ffw-consent {
  max-width: 620px !important;
  font-size: 0.76rem !important;
  line-height: 1.42 !important;
}

.ffw-site .ffw-form-status,
.ffw-site .ffw-form-status.ffw-form-status--success,
.ffw-site .ffw-form-status.ffw-form-status--error {
  padding: 10px 12px !important;
  border-radius: 14px !important;
  font-size: 0.88rem !important;
  line-height: 1.4 !important;
}

.ffw-site .ffw-btn[href^="#"] {
  scroll-margin-top: 116px !important;
}

@media (max-width: 1100px) and (min-width: 981px) {
  .ffw-site .ffw-journey-form-grid,
  .ffw-site .ffw-section--contact-form .ffw-two-col {
    grid-template-columns: minmax(230px, 0.58fr) minmax(390px, 1fr) !important;
  }
}

@media (max-width: 980px) {
  .ffw-site .ffw-journey-form-grid,
  .ffw-site .ffw-section--contact-form .ffw-two-col {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-journey-form-copy {
    position: static !important;
  }

  .ffw-site .ffw-section--journey-form .ffw-crm-form,
  .ffw-site .ffw-section--contact-form .ffw-crm-form {
    justify-self: stretch !important;
    max-width: none !important;
  }
}

@media (max-width: 720px) {
  .ffw-site .ffw-section--journey-form,
  .ffw-site .ffw-section--journey-form-high,
  .ffw-site .ffw-section--contact-form {
    padding-top: clamp(30px, 9vw, 48px) !important;
  }

  .ffw-site .ffw-section--journey-form .ffw-container,
  .ffw-site .ffw-section--contact-form .ffw-container {
    width: min(100% - 26px, 1080px) !important;
  }

  .ffw-site .ffw-section--journey-form .ffw-copy-card,
  .ffw-site .ffw-section--contact-form .ffw-copy-card,
  .ffw-site .ffw-section--journey-form .ffw-crm-form,
  .ffw-site .ffw-section--contact-form .ffw-crm-form {
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .ffw-site .ffw-section--journey-form .ffw-copy-card h2,
  .ffw-site .ffw-section--contact-form .ffw-copy-card h2 {
    font-size: clamp(1.55rem, 7vw, 2.15rem) !important;
  }

  .ffw-site .ffw-crm-stepper__label {
    display: none !important;
  }

  .ffw-site .ffw-crm-step-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .ffw-site .ffw-crm-step-count {
    order: -1 !important;
    text-align: left !important;
  }
}

/* FF-S28R — page structure and copy tightening
   Cleans page hierarchy after the homepage/service/industry review: calmer headings,
   shorter page sections, consistent card rhythm and less overwhelming conversion blocks. */
.ffw-site {
  --ff-s28r-heading-tracking: -0.012em;
  --ff-s28r-section-y: clamp(66px, 7.2vw, 108px);
  --ff-s28r-tight-y: clamp(42px, 5.2vw, 72px);
  --ff-s28r-card-pad: clamp(22px, 2.6vw, 32px);
}

.ffw-site .ffw-section,
.ffw-site .ffw-section--mockup-services,
.ffw-site .ffw-section--mockup-routes,
.ffw-site .ffw-section--home-proof,
.ffw-site .ffw-section--home-pricing,
.ffw-site .ffw-section--home-resources,
.ffw-site .ffw-section--audience-intro,
.ffw-site .ffw-section--audience-services,
.ffw-site .ffw-section--service-intro,
.ffw-site .ffw-section--service-inclusions,
.ffw-site .ffw-section--related-routes,
.ffw-site .ffw-section--split {
  padding-top: var(--ff-s28r-section-y) !important;
  padding-bottom: var(--ff-s28r-section-y) !important;
}

.ffw-site .ffw-section--journey-form,
.ffw-site .ffw-section--journey-form-high,
.ffw-site .ffw-section--contact-form,
.ffw-site .ffw-section--mockup-growth {
  padding-top: var(--ff-s28r-tight-y) !important;
  padding-bottom: var(--ff-s28r-tight-y) !important;
}

.ffw-site h1,
.ffw-site h2,
.ffw-site h3,
.ffw-site .ffw-section-head h2,
.ffw-site .ffw-section-head--split h2,
.ffw-site .ffw-copy-card h2,
.ffw-site .ffw-placeholder-panel h2,
.ffw-site .ffw-growth-band h2,
.ffw-site .ffw-cta-band h2,
.ffw-site .ffw-audience-highlight h2,
.ffw-site .ffw-service-software h2 {
  letter-spacing: var(--ff-s28r-heading-tracking) !important;
  line-height: 1.12 !important;
  word-spacing: 0.015em !important;
  text-transform: none !important;
}

.ffw-site .ffw-home-hero--mockup h1 {
  max-width: 560px !important;
  font-size: clamp(2.75rem, 4.65vw, 5.05rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.01em !important;
}

.ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1 {
  max-width: 720px !important;
  font-size: clamp(2.6rem, 4.75vw, 4.95rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.01em !important;
}

.ffw-site .ffw-section-head h2,
.ffw-site .ffw-section-head--split h2,
.ffw-site .ffw-copy-card h2,
.ffw-site .ffw-placeholder-panel h2 {
  max-width: 690px !important;
  font-size: clamp(2rem, 3.45vw, 3.75rem) !important;
}

.ffw-site .ffw-section-head,
.ffw-site .ffw-section-head--split {
  margin-bottom: clamp(28px, 3.8vw, 48px) !important;
}

.ffw-site .ffw-section-head--split > p,
.ffw-site .ffw-section-head p:not(.ffw-eyebrow),
.ffw-site .ffw-lead,
.ffw-site .ffw-copy-card p,
.ffw-site .ffw-card p,
.ffw-site .ffw-route-card p,
.ffw-site .ffw-price-card p,
.ffw-site .ffw-outcome-card p,
.ffw-site .ffw-service-snapshot p,
.ffw-site .ffw-audience-snapshot p {
  max-width: 560px !important;
  line-height: 1.58 !important;
}

.ffw-site .ffw-card,
.ffw-site .ffw-route-card,
.ffw-site .ffw-copy-card,
.ffw-site .ffw-list-panel,
.ffw-site .ffw-price-card,
.ffw-site .ffw-home-price-card,
.ffw-site .ffw-outcome-card,
.ffw-site .ffw-audience-snapshot__item,
.ffw-site .ffw-service-snapshot__item {
  padding: var(--ff-s28r-card-pad) !important;
  border-radius: 22px !important;
}

.ffw-site .ffw-card h3,
.ffw-site .ffw-route-card h3,
.ffw-site .ffw-price-card h3,
.ffw-site .ffw-home-price-card h3,
.ffw-site .ffw-outcome-card h3,
.ffw-site .ffw-process h3,
.ffw-site .ffw-service-process h3 {
  font-size: clamp(1.18rem, 1.55vw, 1.55rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.006em !important;
}

.ffw-site .ffw-card p,
.ffw-site .ffw-route-card p,
.ffw-site .ffw-price-card p,
.ffw-site .ffw-home-price-card p,
.ffw-site .ffw-outcome-card p,
.ffw-site .ffw-service-process p {
  font-size: 0.95rem !important;
}

.ffw-site .ffw-home-scene__tree {
  width: min(210px, 30%) !important;
  bottom: 16% !important;
}

.ffw-site .ffw-hero--audience .ffw-interior-scene__tree,
.ffw-site .ffw-hero--service .ffw-interior-scene__tree {
  width: min(270px, 54%) !important;
  bottom: 23% !important;
}

.ffw-site .ffw-hero--audience .ffw-interior-scene,
.ffw-site .ffw-hero--service .ffw-interior-scene {
  min-height: clamp(340px, 31vw, 470px) !important;
}

.ffw-site .ffw-section--journey-form .ffw-container,
.ffw-site .ffw-section--contact-form .ffw-container {
  width: min(1020px, calc(100% - 40px)) !important;
}

.ffw-site .ffw-journey-form-grid,
.ffw-site .ffw-section--contact-form .ffw-two-col {
  grid-template-columns: minmax(240px, 0.7fr) minmax(380px, 0.9fr) !important;
}

.ffw-site .ffw-section--journey-form .ffw-crm-form,
.ffw-site .ffw-section--contact-form .ffw-crm-form {
  max-width: 660px !important;
}

.ffw-site .ffw-audience-highlight,
.ffw-site .ffw-service-software,
.ffw-site .ffw-growth-band,
.ffw-site .ffw-placeholder-panel,
.ffw-site .ffw-cta-band .ffw-container {
  border-radius: 24px !important;
}

.ffw-site .ffw-audience-highlight h2,
.ffw-site .ffw-service-software h2,
.ffw-site .ffw-growth-band h2,
.ffw-site .ffw-placeholder-panel h2 {
  font-size: clamp(2rem, 3.35vw, 3.6rem) !important;
}

.ffw-site .ffw-audience-highlight p:not(.ffw-eyebrow),
.ffw-site .ffw-service-software p:not(.ffw-eyebrow),
.ffw-site .ffw-growth-band p,
.ffw-site .ffw-placeholder-panel p {
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

@media (max-width: 980px) {
  .ffw-site .ffw-home-hero--mockup h1,
  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1 {
    font-size: clamp(2.45rem, 8.5vw, 4rem) !important;
  }

  .ffw-site .ffw-home-scene__tree {
    width: min(185px, 38%) !important;
  }

  .ffw-site .ffw-hero--audience .ffw-interior-scene__tree,
  .ffw-site .ffw-hero--service .ffw-interior-scene__tree {
    width: min(220px, 46%) !important;
  }

  .ffw-site .ffw-journey-form-grid,
  .ffw-site .ffw-section--contact-form .ffw-two-col {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .ffw-site .ffw-section,
  .ffw-site .ffw-section--mockup-services,
  .ffw-site .ffw-section--mockup-routes,
  .ffw-site .ffw-section--home-proof,
  .ffw-site .ffw-section--home-pricing,
  .ffw-site .ffw-section--home-resources,
  .ffw-site .ffw-section--audience-intro,
  .ffw-site .ffw-section--audience-services,
  .ffw-site .ffw-section--service-intro,
  .ffw-site .ffw-section--service-inclusions,
  .ffw-site .ffw-section--related-routes,
  .ffw-site .ffw-section--split {
    padding-top: clamp(48px, 12vw, 68px) !important;
    padding-bottom: clamp(48px, 12vw, 68px) !important;
  }

  .ffw-site .ffw-home-hero--mockup h1,
  .ffw-site .ffw-hero:not(.ffw-home-hero--mockup) h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.45rem) !important;
    line-height: 1.1 !important;
  }

  .ffw-site .ffw-section-head h2,
  .ffw-site .ffw-section-head--split h2,
  .ffw-site .ffw-copy-card h2,
  .ffw-site .ffw-placeholder-panel h2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
  }

  .ffw-site .ffw-home-scene__tree {
    width: min(160px, 42%) !important;
  }

  .ffw-site .ffw-hero--audience .ffw-interior-scene__tree,
  .ffw-site .ffw-hero--service .ffw-interior-scene__tree {
    width: min(190px, 48%) !important;
  }
}

/* FF-S28S — compact thank-you page redesign */
.ffw-site .ffw-thank-you-hero--compact {
  width: min(980px, calc(100% - 40px)) !important;
  margin: clamp(34px, 5vw, 58px) auto clamp(10px, 2vw, 22px) !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--ff-green) !important;
  overflow: visible !important;
}

.ffw-site .ffw-thank-you-hero--compact .ffw-container {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}

.ffw-site .ffw-thank-you-confirmation {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(34px, 5vw, 62px) clamp(22px, 5vw, 74px) !important;
  border: 1px solid rgba(54, 75, 57, 0.10);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 12%, rgba(223, 114, 95, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(251,250,245,0.96));
  box-shadow: 0 24px 80px rgba(45, 46, 46, 0.08);
}

.ffw-site .ffw-thank-you-confirmation__mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--ff-green);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(54, 75, 57, 0.18);
}

.ffw-site .ffw-thank-you-hero--compact .ffw-eyebrow {
  color: var(--ff-coral) !important;
  margin-bottom: 12px !important;
}

.ffw-site .ffw-thank-you-hero--compact h1 {
  max-width: 720px;
  margin: 0 auto !important;
  color: var(--ff-green) !important;
  font-size: clamp(2.35rem, 5.2vw, 4.6rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.035em !important;
}

.ffw-site .ffw-thank-you-hero--compact .ffw-lead {
  max-width: 560px;
  margin: 18px auto 0 !important;
  color: var(--ff-muted) !important;
  font-size: clamp(1rem, 1.35vw, 1.14rem) !important;
  line-height: 1.6 !important;
}

.ffw-site .ffw-thank-you-hero--compact .ffw-actions {
  justify-content: center !important;
  margin-top: 24px !important;
}

.ffw-site .ffw-thank-you-hero--compact .ffw-btn--light {
  background: var(--ff-coral) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(223, 114, 95, 0.20) !important;
}

.ffw-site .ffw-thank-you-hero--compact .ffw-btn--dark-ghost {
  border-color: rgba(54, 75, 57, 0.22) !important;
  background: rgba(255,255,255,0.62) !important;
  color: var(--ff-green) !important;
}

.ffw-site .ffw-section-head--center {
  max-width: 680px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.ffw-site .ffw-section-head--compact {
  margin-bottom: clamp(20px, 3vw, 34px) !important;
}

.ffw-site .ffw-section-head--compact h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.032em !important;
}

.ffw-site .ffw-section-head--compact p:not(.ffw-eyebrow) {
  max-width: 600px;
  font-size: 1rem !important;
  line-height: 1.58 !important;
}

.ffw-site .ffw-section-head--center p:not(.ffw-eyebrow) {
  margin-inline: auto !important;
}

.ffw-site .ffw-section--thank-next {
  padding-top: clamp(42px, 6vw, 74px) !important;
  padding-bottom: clamp(34px, 5vw, 62px) !important;
}

.ffw-site .ffw-next-steps-grid--compact {
  gap: clamp(14px, 2vw, 22px) !important;
}

.ffw-site .ffw-next-steps-grid--compact .ffw-next-step-card {
  padding: clamp(20px, 2.6vw, 30px) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 52px rgba(45, 46, 46, 0.055) !important;
}

.ffw-site .ffw-next-steps-grid--compact .ffw-next-step-card span {
  width: 34px !important;
  height: 34px !important;
  font-size: 0.82rem !important;
}

.ffw-site .ffw-next-steps-grid--compact .ffw-next-step-card h3 {
  margin-top: 18px !important;
  margin-bottom: 7px !important;
  font-size: clamp(1.18rem, 1.6vw, 1.4rem) !important;
  letter-spacing: -0.02em !important;
}

.ffw-site .ffw-next-steps-grid--compact .ffw-next-step-card p {
  font-size: 0.94rem !important;
  line-height: 1.52 !important;
}

.ffw-site .ffw-section--thank-related {
  padding-top: clamp(28px, 5vw, 54px) !important;
  padding-bottom: clamp(38px, 6vw, 74px) !important;
}

.ffw-site .ffw-card-grid--thank-you-related {
  gap: clamp(14px, 2vw, 22px) !important;
}

.ffw-site .ffw-card-grid--thank-you-related .ffw-card {
  min-height: 0 !important;
  padding: clamp(20px, 2.4vw, 30px) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 52px rgba(45, 46, 46, 0.055) !important;
}

.ffw-site .ffw-card-grid--thank-you-related .ffw-card h3 {
  font-size: clamp(1.18rem, 1.6vw, 1.38rem) !important;
  line-height: 1.18 !important;
}

.ffw-site .ffw-card-grid--thank-you-related .ffw-card p {
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
}

.ffw-site .ffw-section--thank-reassurance {
  padding-top: 0 !important;
  padding-bottom: clamp(58px, 7vw, 96px) !important;
}

.ffw-site .ffw-thank-reassurance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 3.2vw, 38px);
  border-radius: 22px;
  background: linear-gradient(135deg, #2f4634 0%, #23402d 100%);
  color: #fff;
  box-shadow: 0 24px 70px rgba(54,75,57,0.16);
}

.ffw-site .ffw-thank-reassurance .ffw-eyebrow,
.ffw-site .ffw-thank-reassurance h2 {
  color: #fff !important;
}

.ffw-site .ffw-thank-reassurance h2 {
  max-width: 760px;
  margin: 0 !important;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.026em !important;
}

.ffw-site .ffw-section--download-ready {
  padding-top: clamp(24px, 4vw, 42px) !important;
  padding-bottom: clamp(24px, 4vw, 42px) !important;
}

@media (max-width: 760px) {
  .ffw-site .ffw-thank-you-hero--compact {
    width: min(100% - 24px, 980px) !important;
    margin-top: 24px !important;
  }

  .ffw-site .ffw-thank-you-confirmation {
    border-radius: 22px !important;
    padding: 30px 20px !important;
  }

  .ffw-site .ffw-thank-you-hero--compact h1 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    line-height: 1.08 !important;
  }

  .ffw-site .ffw-thank-you-hero--compact .ffw-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .ffw-site .ffw-thank-reassurance {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-thank-reassurance .ffw-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}


/* FF-S31B — Forest Finance whimsical 404 renderer */
.ffw-site--404 .ffw-page-body--404 {
  background: radial-gradient(circle at 16% 10%, rgba(200, 232, 199, 0.58), transparent 32%), linear-gradient(180deg, #f7fbf2 0%, #ffffff 52%, #f5f8ef 100%);
}

.ffw-site .ffw-section--404-hero {
  padding-top: clamp(56px, 7vw, 96px) !important;
  padding-bottom: clamp(34px, 5vw, 62px) !important;
  overflow: hidden;
}

.ffw-site .ffw-404-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.ffw-site .ffw-404-hero__copy h1 {
  max-width: 760px;
  margin-bottom: 18px !important;
  font-size: clamp(2.85rem, 6vw, 6.2rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
}

.ffw-site .ffw-404-hero__copy .ffw-hero-text {
  max-width: 660px;
  font-size: clamp(1rem, 1.35vw, 1.22rem) !important;
  line-height: 1.62 !important;
}

.ffw-site .ffw-404-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ffw-site .ffw-404-badges span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(63, 110, 66, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #24402b;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.ffw-site .ffw-404-hero__art {
  position: relative;
  min-height: clamp(320px, 42vw, 470px);
  border: 1px solid rgba(54, 75, 57, 0.14);
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(236, 248, 227, 0.92) 100%);
  box-shadow: 0 28px 90px rgba(45, 64, 42, 0.13);
  overflow: hidden;
}

.ffw-site .ffw-404-sign {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: clamp(132px, 16vw, 180px);
  min-height: clamp(132px, 16vw, 180px);
  border: 10px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #31553a 0%, #19301f 100%);
  color: #fff;
  box-shadow: 0 22px 50px rgba(25, 48, 31, 0.23);
  text-align: center;
  padding: 18px 12px;
}

.ffw-site .ffw-404-sign span {
  display: block;
  font-size: clamp(2.45rem, 4.9vw, 4.55rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.ffw-site .ffw-404-sign small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}



.ffw-site .ffw-404-hiker {
  position: absolute;
  right: clamp(20px, 3vw, 34px);
  bottom: clamp(18px, 2.5vw, 28px);
  z-index: 3;
  width: clamp(210px, 31vw, 370px);
  max-width: 64%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 35px rgba(26, 48, 31, 0.14));
}

.ffw-site .ffw-404-path {
  position: absolute;
  right: -12%;
  bottom: -26%;
  width: 85%;
  height: 68%;
  border-radius: 50% 0 0 0;
  background: linear-gradient(135deg, rgba(172, 130, 57, 0.13), rgba(92, 133, 74, 0.18));
  transform: rotate(-12deg);
}

.ffw-site .ffw-404-path span {
  position: absolute;
  left: 22%;
  width: 54%;
  height: 12px;
  border-radius: 999px;
  background: rgba(49, 85, 58, 0.17);
}

.ffw-site .ffw-404-path span:nth-child(1) { top: 24%; }
.ffw-site .ffw-404-path span:nth-child(2) { top: 44%; width: 42%; }
.ffw-site .ffw-404-path span:nth-child(3) { top: 64%; width: 60%; }

.ffw-site .ffw-404-tree {
  position: absolute;
  bottom: 42px;
  width: 74px;
  height: 128px;
}

.ffw-site .ffw-404-tree::before,
.ffw-site .ffw-404-tree::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.ffw-site .ffw-404-tree::before {
  bottom: 0;
  width: 13px;
  height: 70px;
  border-radius: 999px;
  background: #8a6038;
}

.ffw-site .ffw-404-tree::after {
  bottom: 42px;
  width: 86px;
  height: 86px;
  border-radius: 52% 48% 56% 44%;
  background: linear-gradient(135deg, #7aa35d 0%, #365c3d 100%);
  box-shadow: 0 18px 35px rgba(54, 92, 61, 0.22);
}

.ffw-site .ffw-404-tree--one { left: 28px; bottom: 34px; transform: scale(0.86); opacity: 0.96; }
.ffw-site .ffw-404-tree--two { right: 16px; bottom: 64px; transform: scale(0.58); opacity: 0.84; }

.ffw-site .ffw-404-art-message {
  position: absolute;
  top: 30px;
  left: clamp(180px, 20vw, 250px);
  right: 34px;
  z-index: 4;
  max-width: 420px;
  margin: 0;
  color: #24402b;
  font-weight: 800;
  font-size: clamp(0.9rem, 1.12vw, 1.02rem);
  line-height: 1.28;
  text-wrap: balance;
}


@media (max-width: 900px) {
  .ffw-site .ffw-404-hero {
    grid-template-columns: 1fr;
  }

  .ffw-site .ffw-404-hero__art {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-404-hero__art {
    min-height: 390px;
    border-radius: 26px;
  }

  .ffw-site .ffw-404-sign {
    top: 18px;
    left: 18px;
    width: 116px;
    min-height: 116px;
    border-width: 7px;
  }

  .ffw-site .ffw-404-sign span {
    font-size: 2.25rem;
  }

  .ffw-site .ffw-404-sign small {
    font-size: 0.62rem;
  }

  .ffw-site .ffw-404-hiker {
    width: 250px;
    max-width: 72%;
    right: 8px;
    bottom: 14px;
  }

  .ffw-site .ffw-404-art-message {
    top: 22px;
    left: 134px;
    right: 16px;
    max-width: 210px;
    font-size: 0.82rem;
    line-height: 1.24;
  }
}

.ffw-site .ffw-section--404-routes {
  padding-top: clamp(22px, 3vw, 42px) !important;
}

.ffw-site .ffw-card-grid--404-routes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ffw-site .ffw-404-route-card {
  text-decoration: none !important;
}

.ffw-site .ffw-404-route-card strong {
  display: inline-flex;
  margin-top: auto;
  color: #31553a;
  font-size: 0.9rem;
}

.ffw-site .ffw-section--404-reassurance {
  padding-top: clamp(24px, 4vw, 50px) !important;
  padding-bottom: clamp(58px, 7vw, 96px) !important;
}

.ffw-site .ffw-404-reassurance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 24px;
  align-items: center;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 42px);
  background: #24402b;
  color: #fff;
  box-shadow: 0 24px 70px rgba(36, 64, 43, 0.14);
}

.ffw-site .ffw-404-reassurance .ffw-eyebrow,
.ffw-site .ffw-404-reassurance h2,
.ffw-site .ffw-404-reassurance p {
  color: #fff !important;
}

.ffw-site .ffw-404-reassurance ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ffw-site .ffw-404-reassurance li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 11px 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .ffw-site .ffw-404-hero,
  .ffw-site .ffw-404-reassurance {
    grid-template-columns: 1fr;
  }
  .ffw-site .ffw-card-grid--404-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ffw-site .ffw-section--404-hero {
    padding-top: 34px !important;
  }
  .ffw-site .ffw-404-hero__copy h1 {
    font-size: clamp(2.35rem, 14vw, 3.65rem) !important;
  }
  .ffw-site .ffw-404-hero__art {
    min-height: 300px;
    border-radius: 26px;
  }
  .ffw-site .ffw-card-grid--404-routes {
    grid-template-columns: 1fr;
  }
  .ffw-site .ffw-404-reassurance {
    border-radius: 22px;
  }
}

/* FF-S31C — 404 editor QA polish */
.ffw-site .ffw-404-route-card:focus-visible,
.ffw-site .ffw-section--404-hero .ffw-btn:focus-visible {
  outline: 3px solid rgba(47, 100, 71, 0.32);
  outline-offset: 4px;
}

.ffw-site .ffw-404-route-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ffw-site .ffw-404-route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 100, 71, 0.24);
}

@media (prefers-reduced-motion: reduce) {
  .ffw-site .ffw-404-route-card {
    transition: none;
  }
  .ffw-site .ffw-404-route-card:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-section--404-routes .ffw-section-head--split {
    gap: 12px;
  }
  .ffw-site .ffw-404-route-card {
    padding: 22px;
  }
  .ffw-site .ffw-404-reassurance ul {
    grid-template-columns: 1fr;
  }
}

/* FF-S32B: partner route pages */
.ffw-site .ffw-hero--partner-route {
  padding-bottom: clamp(42px, 6vw, 84px) !important;
}

.ffw-site .ffw-partner-route-hero__grid {
  align-items: stretch;
}

.ffw-site .ffw-partner-route-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(49, 85, 58, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(231, 111, 90, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(247,250,241,0.96));
  box-shadow: 0 24px 70px rgba(47, 59, 43, 0.1);
  padding: clamp(24px, 4vw, 44px);
}

.ffw-site .ffw-partner-route-card > span {
  align-self: flex-start;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(49, 85, 58, 0.08);
  color: #31553a;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ffw-site .ffw-partner-route-card h2 {
  margin: 0 !important;
  color: #24402b;
  font-size: clamp(1.8rem, 3vw, 3rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}

.ffw-site .ffw-partner-route-card p {
  margin: 0;
  color: rgba(36, 64, 43, 0.76);
  line-height: 1.58;
}

.ffw-site .ffw-partner-route-note {
  border-left: 4px solid #e76f5a;
  border-radius: 14px;
  background: rgba(231, 111, 90, 0.08);
  color: #24402b;
  padding: 14px 16px;
  font-weight: 800;
}

.ffw-site .ffw-partner-route-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
}

.ffw-site .ffw-cta-band--partner-route .ffw-container {
  align-items: center;
}

.ffw-site .ffw-actions--stacked {
  justify-content: flex-end;
}

.ffw-site .ffw-btn--outline-light {
  border: 1px solid rgba(255,255,255,0.66);
  background: rgba(255,255,255,0.12);
  color: #fff !important;
}

.ffw-site .ffw-partner-route-pending {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  color: #fff;
  padding: 12px 18px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .ffw-site .ffw-partner-route-grid,
  .ffw-site .ffw-partner-route-hero__grid {
    grid-template-columns: 1fr;
  }

  .ffw-site .ffw-actions--stacked {
    justify-content: flex-start;
  }
}

/* FF-S32D: referral route page deployment/content polish */
.ffw-site--partner-route .ffw-page-body--partner-route {
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 48%, #f7fbf2 100%);
}

.ffw-site .ffw-section--partner-steps {
  padding-top: clamp(22px, 3vw, 44px) !important;
}

.ffw-site .ffw-partner-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.ffw-site .ffw-partner-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(49, 85, 58, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(47, 59, 43, 0.08);
  padding: clamp(18px, 2.4vw, 26px);
}

.ffw-site .ffw-partner-step span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #31553a;
  color: #fff;
  font-weight: 900;
}

.ffw-site .ffw-partner-step p {
  margin: 0;
  color: rgba(36, 64, 43, 0.78);
  line-height: 1.55;
}

.ffw-site .ffw-partner-disclosure {
  border: 1px solid rgba(231, 111, 90, 0.24);
  border-left: 5px solid #e76f5a;
  border-radius: 18px;
  background: rgba(231, 111, 90, 0.08);
  color: #24402b;
  padding: 18px 20px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .ffw-site .ffw-partner-step-grid {
    grid-template-columns: 1fr;
  }
}

/* FF-S33A: Partner route feature content expansion */
.ffw-site .ffw-section--partner-answer {
  padding-top: clamp(22px, 3vw, 42px) !important;
  padding-bottom: clamp(22px, 3vw, 42px) !important;
}

.ffw-site .ffw-partner-answer-card {
  border: 1px solid rgba(49, 85, 58, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(231, 111, 90, 0.10), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,250,241,0.92));
  box-shadow: 0 22px 62px rgba(47, 59, 43, 0.08);
  padding: clamp(24px, 4vw, 42px);
}

.ffw-site .ffw-partner-answer-card h2 {
  max-width: 760px;
  margin: 0 0 12px !important;
  color: #24402b;
  font-size: clamp(1.9rem, 3.2vw, 3.35rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
}

.ffw-site .ffw-partner-answer-card p:last-child {
  max-width: 900px;
  margin-bottom: 0;
  color: rgba(36, 64, 43, 0.78);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.65;
}

.ffw-site .ffw-partner-feature-grid,
.ffw-site .ffw-partner-fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.ffw-site .ffw-partner-feature-card,
.ffw-site .ffw-partner-fit-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  border: 1px solid rgba(49, 85, 58, 0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 18px 48px rgba(47, 59, 43, 0.07);
  padding: clamp(18px, 2.4vw, 26px);
}

.ffw-site .ffw-partner-feature-card span {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(231, 111, 90, 0.10);
  color: #b84b3a;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ffw-site .ffw-partner-feature-card h3,
.ffw-site .ffw-partner-fit-card h3 {
  margin: 0 !important;
  color: #24402b;
  font-size: 1.08rem !important;
  line-height: 1.18 !important;
}

.ffw-site .ffw-partner-feature-card p,
.ffw-site .ffw-partner-fit-card p {
  margin: 0;
  color: rgba(36, 64, 43, 0.76);
  line-height: 1.55;
}

.ffw-site .ffw-section--partner-fit {
  padding-top: clamp(18px, 3vw, 38px) !important;
}

.ffw-site .ffw-section--partner-faq .ffw-faq-wrap {
  max-width: 980px;
}

.ffw-site .ffw-section--partner-faq .ffw-faq {
  border-color: rgba(49, 85, 58, 0.14);
  box-shadow: 0 12px 34px rgba(47, 59, 43, 0.055);
}


.ffw-site .ffw-section--partner-topic-hub {
  padding-top: clamp(28px, 4vw, 54px) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(231, 111, 90, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(247,250,241,0.45), rgba(255,255,255,0.96));
}

.ffw-site .ffw-partner-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.ffw-site .ffw-partner-topic-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  text-decoration: none !important;
  border: 1px solid rgba(49, 85, 58, 0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 48px rgba(47, 59, 43, 0.07);
  padding: clamp(18px, 2.4vw, 26px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ffw-site .ffw-partner-topic-card:hover,
.ffw-site .ffw-partner-topic-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(49, 85, 58, 0.28);
  box-shadow: 0 24px 64px rgba(47, 59, 43, 0.11);
}

.ffw-site .ffw-partner-topic-card span {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(49, 85, 58, 0.10);
  color: #31553a;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ffw-site .ffw-partner-topic-card h3 {
  margin: 0 !important;
  color: #24402b;
  font-size: 1.1rem !important;
  line-height: 1.18 !important;
}

.ffw-site .ffw-partner-topic-card p {
  margin: 0;
  color: rgba(36, 64, 43, 0.76);
  line-height: 1.55;
}

.ffw-site .ffw-partner-content-roadmap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(20px, 3vw, 34px);
}

.ffw-site .ffw-partner-roadmap-card {
  border: 1px solid rgba(49, 85, 58, 0.14);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,250,241,0.94));
  box-shadow: 0 22px 56px rgba(47, 59, 43, 0.075);
  padding: clamp(20px, 3vw, 32px);
}

.ffw-site .ffw-partner-roadmap-card h3 {
  margin: 0 0 14px !important;
  color: #24402b;
  font-size: clamp(1.2rem, 2vw, 1.72rem) !important;
  line-height: 1.12 !important;
}

.ffw-site .ffw-partner-roadmap-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ffw-site .ffw-partner-roadmap-card li {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(49, 85, 58, 0.10);
  padding-bottom: 10px;
}

.ffw-site .ffw-partner-roadmap-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ffw-site .ffw-partner-roadmap-card li span {
  color: rgba(36, 64, 43, 0.64);
  font-size: 0.9rem;
}

.ffw-site .ffw-partner-question-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ffw-site .ffw-partner-question-list span {
  display: inline-flex;
  border: 1px solid rgba(49, 85, 58, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #24402b;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .ffw-site .ffw-partner-feature-grid,
  .ffw-site .ffw-partner-fit-grid,
  .ffw-site .ffw-partner-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ffw-site .ffw-partner-content-roadmap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-partner-feature-grid,
  .ffw-site .ffw-partner-fit-grid,
  .ffw-site .ffw-partner-topic-grid {
    grid-template-columns: 1fr;
  }
}

/* FF-S40A: reusable form placement architecture.
   Keeps the protected CRM renderer intact while allowing each page to support
   a compact hero form and a fuller lower-page form in later rollout slices. */
.ffw-site [data-ffw-form-placement="lower"].ffw-section--journey-form,
.ffw-site [data-ffw-form-placement="lower"].ffw-section--contact-form {
  position: relative;
  overflow: hidden;
}

.ffw-site [data-ffw-form-placement="lower"].ffw-section--journey-form::before,
.ffw-site [data-ffw-form-placement="lower"].ffw-section--contact-form::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 50%;
  width: min(520px, 44vw);
  height: min(520px, 44vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 133, 94, 0.12), rgba(92, 133, 94, 0));
  transform: translateX(-12%);
  pointer-events: none;
}

.ffw-site .ffw-journey-form-grid,
.ffw-site .ffw-section--contact-form .ffw-two-col {
  position: relative;
  z-index: 1;
  align-items: start;
  gap: clamp(22px, 4vw, 46px);
}

.ffw-site .ffw-crm-form--placement-lower {
  border: 1px solid rgba(49, 85, 58, 0.13) !important;
  border-radius: 30px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,252,247,0.98)) !important;
  box-shadow: 0 26px 70px rgba(36, 64, 43, 0.11) !important;
  padding: clamp(20px, 3vw, 34px) !important;
}

.ffw-site .ffw-crm-form--placement-lower > .ffw-eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(49, 85, 58, 0.12);
  border-radius: 999px;
  background: rgba(247, 250, 241, 0.86);
  padding: 7px 11px;
  margin-bottom: 10px !important;
}

.ffw-site .ffw-crm-form--placement-lower > h2 {
  max-width: 680px;
  margin-bottom: 8px !important;
}

.ffw-site .ffw-crm-form--placement-lower > p:not(.ffw-eyebrow) {
  max-width: 680px;
  color: rgba(36, 64, 43, 0.68) !important;
}

.ffw-site .ffw-hero-form-panel {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 30px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 28px 80px rgba(36, 64, 43, 0.14);
  backdrop-filter: blur(14px);
  padding: clamp(16px, 2vw, 24px);
}

.ffw-site .ffw-hero-form-panel__head {
  margin-bottom: 14px;
}

.ffw-site .ffw-hero-form-panel__head h2 {
  margin: 0 0 6px !important;
  color: #24402b;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem) !important;
  line-height: 1.08 !important;
}

.ffw-site .ffw-hero-form-panel__head p:not(.ffw-eyebrow) {
  margin: 0 !important;
  color: rgba(36, 64, 43, 0.68);
  font-size: 0.96rem;
}

.ffw-site .ffw-crm-form--placement-hero {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ffw-site .ffw-crm-form--placement-hero > .ffw-eyebrow,
.ffw-site .ffw-crm-form--placement-hero > h2,
.ffw-site .ffw-crm-form--placement-hero > p:not(.ffw-form-smallprint),
.ffw-site .ffw-crm-form--placement-hero > .ffw-form-smallprint {
  display: none !important;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-stepper {
  margin-bottom: 12px;
  gap: 6px;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-stepper__label {
  display: none;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-form-section {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-form-section legend {
  font-size: 0.95rem !important;
  margin-bottom: 10px !important;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-form-grid,
.ffw-site .ffw-crm-form--placement-hero .ffw-crm-step[data-ffw-step-label="Business details"] .ffw-form-grid,
.ffw-site .ffw-crm-form--placement-hero .ffw-crm-step[data-ffw-step-label="Company check"] .ffw-form-grid {
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

.ffw-site .ffw-crm-form--placement-hero input:not([type="checkbox"]),
.ffw-site .ffw-crm-form--placement-hero select,
.ffw-site .ffw-crm-form--placement-hero textarea {
  min-height: 46px !important;
  padding: 11px 13px !important;
  font-size: 0.95rem !important;
}

.ffw-site .ffw-crm-form--placement-hero textarea {
  min-height: 96px !important;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-step-actions {
  margin-top: 14px !important;
  gap: 8px !important;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-step-count {
  flex: 1 1 100%;
  order: -1;
  margin: 0 0 2px !important;
  text-align: left;
}

@media (max-width: 900px) {
  .ffw-site .ffw-hero-form-panel {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-crm-form--placement-lower,
  .ffw-site .ffw-hero-form-panel {
    border-radius: 22px !important;
    padding: 18px !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-step-actions .ffw-btn,
  .ffw-site .ffw-crm-form--placement-lower .ffw-crm-step-actions .ffw-btn {
    width: 100%;
  }
}

/* FF-S40B: homepage, contact and consultation hero-form rollout.
   Keeps the lower supported form in place, while the hero version becomes the fast start. */
.ffw-site .ffw-hero--with-form .ffw-hero__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr) !important;
  align-items: center !important;
  gap: clamp(24px, 4vw, 56px) !important;
}

.ffw-site .ffw-hero--with-form .ffw-hero__copy {
  max-width: 680px;
}

.ffw-site .ffw-hero__form-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.ffw-site .ffw-hero--with-form .ffw-badges {
  max-width: 640px;
}

.ffw-site .ffw-home-hero--with-form .ffw-home-hero__grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr) !important;
  align-items: center !important;
}

.ffw-site .ffw-home-hero--with-form .ffw-home-hero__copy {
  max-width: 700px !important;
}

.ffw-site .ffw-home-scene--form {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.ffw-site .ffw-home-scene--form::before,
.ffw-site .ffw-home-scene--form::after {
  display: none !important;
}

.ffw-site .ffw-home-scene--form .ffw-hero-form-panel {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.ffw-site .ffw-home-hero--with-form .ffw-trust-strip--hero {
  margin-top: clamp(18px, 3vw, 36px) !important;
}

.ffw-site .ffw-section--journey-form-lower-home {
  margin-top: 0;
}

.ffw-site .ffw-section--journey-form-lower-home .ffw-journey-form-copy h2::after,
.ffw-site .ffw-section--contact-form .ffw-copy-card h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #31553a, #9fb36b);
}

.ffw-site .ffw-hero-form-panel .ffw-crm-step-intro {
  display: none !important;
}

.ffw-site .ffw-hero-form-panel .ffw-crm-stepper__dot {
  width: 24px !important;
  height: 24px !important;
  font-size: 0.78rem !important;
}

.ffw-site .ffw-hero-form-panel .ffw-crm-field__label {
  font-size: 0.84rem !important;
}

.ffw-site .ffw-hero-form-panel .ffw-crm-step-actions {
  align-items: center;
}

.ffw-site .ffw-hero-form-panel .ffw-crm-step-actions .ffw-btn {
  min-height: 44px !important;
  padding: 11px 16px !important;
}

@media (max-width: 1040px) {
  .ffw-site .ffw-hero--with-form .ffw-hero__grid,
  .ffw-site .ffw-home-hero--with-form .ffw-home-hero__grid {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-home-scene--form .ffw-hero-form-panel,
  .ffw-site .ffw-hero__form-wrap .ffw-hero-form-panel {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .ffw-site .ffw-home-hero--with-form .ffw-home-hero__grid,
  .ffw-site .ffw-hero--with-form .ffw-hero__grid {
    gap: 18px !important;
  }

  .ffw-site .ffw-hero-form-panel__head h2 {
    font-size: 1.22rem !important;
  }

  .ffw-site .ffw-hero-form-panel__head p:not(.ffw-eyebrow) {
    font-size: 0.9rem !important;
  }
}

/* FF-S40C: audience hero-form rollout.
   Audience pages now start the correct enquiry in the hero, with the supported duplicate placed later after the main support explanation. */
.ffw-site .ffw-hero--audience.ffw-hero--with-form {
  padding-bottom: clamp(42px, 6vw, 76px) !important;
}

.ffw-site .ffw-hero--audience.ffw-hero--with-form .ffw-hero-form-panel {
  max-width: 540px;
  margin-left: auto;
}

.ffw-site .ffw-section--journey-form-lower-audience {
  margin-top: 0 !important;
  border-top: 1px solid rgba(49, 85, 58, 0.08);
}

.ffw-site .ffw-section--journey-form-lower-audience .ffw-journey-form-copy h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #31553a, #9fb36b);
}

.ffw-site [data-ffw-page="sole-traders"] .ffw-hero-form-panel__head,
.ffw-site [data-ffw-page="small-businesses"] .ffw-hero-form-panel__head,
.ffw-site [data-ffw-page="contractors"] .ffw-hero-form-panel__head,
.ffw-site [data-ffw-page="unincorporated-landlords"] .ffw-hero-form-panel__head,
.ffw-site [data-ffw-page="limited-companies"] .ffw-hero-form-panel__head {
  margin-bottom: 12px;
}

@media (max-width: 1040px) {
  .ffw-site .ffw-hero--audience.ffw-hero--with-form .ffw-hero-form-panel {
    max-width: none;
    margin-left: 0;
  }
}


/* Slice 4 service page form placement rollout v0.40.3 */
.ffw-site .ffw-hero--service.ffw-hero--with-form .ffw-hero__grid {
  align-items: center;
}

.ffw-site .ffw-hero--service.ffw-hero--with-form .ffw-hero-form-panel {
  max-width: 520px;
}

.ffw-site .ffw-section--journey-form-lower-service {
  position: relative;
}

.ffw-site .ffw-section--journey-form-lower-service .ffw-journey-form-copy h2 {
  max-width: 680px;
}

.ffw-site [data-ffw-page="making-tax-digital"] .ffw-hero-form-panel__head,
.ffw-site [data-ffw-page="bookkeeping"] .ffw-hero-form-panel__head,
.ffw-site [data-ffw-page="vat-returns"] .ffw-hero-form-panel__head,
.ffw-site [data-ffw-page="payroll"] .ffw-hero-form-panel__head,
.ffw-site [data-ffw-page="company-formation"] .ffw-hero-form-panel__head {
  margin-bottom: 14px;
}

@media (max-width: 760px) {
  .ffw-site .ffw-hero--service.ffw-hero--with-form .ffw-hero-form-panel {
    max-width: none;
  }
}

/* Slice 5 pricing and referral page form placement rollout v0.40.4 */
.ffw-site [data-ffw-page="pricing-packages"] .ffw-hero--with-form .ffw-hero__grid {
  align-items: center;
}

.ffw-site [data-ffw-page="pricing-packages"] .ffw-hero-form-panel {
  max-width: 540px;
  margin-left: auto;
}

.ffw-site .ffw-section--journey-form-lower-pricing {
  margin-top: clamp(10px, 2vw, 22px) !important;
  border-top: 1px solid rgba(54, 75, 57, 0.08);
}

.ffw-site .ffw-section--journey-form-lower-pricing .ffw-journey-form-copy h2 {
  max-width: 700px;
}

.ffw-site .ffw-section--journey-form-lower-pricing .ffw-steps-list {
  margin-top: 20px;
}

.ffw-site .ffw-hero--referral-with-form {
  padding-bottom: clamp(54px, 7vw, 92px) !important;
}

.ffw-site .ffw-hero--referral-with-form .ffw-referral-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px) !important;
  align-items: center;
}

.ffw-site .ffw-referral-card--hero-form {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel {
  max-width: 520px;
  margin-left: auto;
}

.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel,
.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel h2,
.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel h3,
.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel p,
.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel label,
.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel li,
.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel .ffw-crm-step-intro,
.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel .ffw-crm-field__label {
  color: var(--ff-charcoal) !important;
}

.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel .ffw-eyebrow,
.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel .ffw-crm-stepper__dot {
  color: var(--ff-green) !important;
}

.ffw-site .ffw-section--referral-form-lower {
  border-top: 1px solid rgba(54, 75, 57, 0.08);
}

@media (max-width: 1040px) {
  .ffw-site [data-ffw-page="pricing-packages"] .ffw-hero-form-panel,
  .ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel {
    max-width: none;
    margin-left: 0;
  }

  .ffw-site .ffw-hero--referral-with-form .ffw-referral-hero__grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .ffw-site .ffw-hero--referral-with-form {
    padding-top: 48px !important;
  }

  .ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel {
    border-radius: 24px !important;
  }
}


/* Slice 7 final QA polish v0.40.6
   Anchor, mobile and duplicate-form polish after the full form placement rollout. */
.ffw-site .ffw-hero-form-panel,
.ffw-site .ffw-section--form-placement-lower,
.ffw-site #services-overview,
.ffw-site #choose-your-route,
.ffw-site #ffw-service-routes,
.ffw-site #ffw-resource-categories,
.ffw-site #ffw-partner-routes {
  scroll-margin-top: clamp(88px, 10vw, 132px);
}

.ffw-site .ffw-hero-form-panel:target,
.ffw-site .ffw-section--form-placement-lower:target {
  outline: 3px solid rgba(159, 179, 107, 0.42);
  outline-offset: 8px;
}

.ffw-site[data-ffw-has-hero-form="1"] .ffw-hero-form-panel .ffw-crm-stepper,
.ffw-site[data-ffw-has-lower-form="1"] .ffw-crm-form--placement-lower .ffw-crm-stepper {
  min-width: 0;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-company-verification {
  margin-top: 10px !important;
  padding: 12px !important;
  border-radius: 18px !important;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-company-verification__status,
.ffw-site .ffw-crm-form--placement-hero .ffw-crm-company-verification__help,
.ffw-site .ffw-crm-form--placement-hero .ffw-crm-company-verification__select span,
.ffw-site .ffw-crm-form--placement-hero .ffw-crm-company-helper,
.ffw-site .ffw-crm-form--placement-hero .ffw-form-help {
  font-size: 0.82rem !important;
  line-height: 1.42 !important;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-company-verification__actions {
  gap: 8px !important;
}

.ffw-site .ffw-crm-form--placement-lower .ffw-crm-field,
.ffw-site .ffw-crm-form--placement-hero .ffw-crm-field {
  min-width: 0;
}

@media (max-width: 640px) {
  .ffw-site .ffw-hero-form-panel:target,
  .ffw-site .ffw-section--form-placement-lower:target {
    outline-offset: 4px;
  }

  .ffw-site .ffw-hero-form-panel__head {
    margin-bottom: 12px !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-stepper {
    flex-wrap: wrap;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-stepper__item {
    flex: 0 0 auto;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-company-verification__actions .ffw-btn,
  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-step-actions .ffw-btn,
  .ffw-site .ffw-crm-form--placement-lower .ffw-crm-step-actions .ffw-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .ffw-site .ffw-hero-form-panel {
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .ffw-site .ffw-hero-form-panel__head h2 {
    font-size: 1.14rem !important;
    letter-spacing: -0.025em !important;
  }

  .ffw-site .ffw-crm-form--placement-hero input:not([type="checkbox"]),
  .ffw-site .ffw-crm-form--placement-hero select,
  .ffw-site .ffw-crm-form--placement-hero textarea {
    font-size: 16px !important;
  }
}

/* FF-S3 — approved Brand Guide v1 component application.
   This final scoped layer intentionally leaves structure and form behaviour intact. */
.ffw-site {
  --ff-green: var(--ff-forest);
  --ff-coral: var(--ff-earth);
  --ff-coral-dark: var(--ff-forest);
  --ff-soft-cream: var(--ff-ivory);
  --ff-warm-cream: var(--ff-ivory);
  --ff-pale-green: var(--ff-stone);
  --ff-line: var(--ff-stone);
  --ff-muted: var(--ff-earth);
  --ff-paper: var(--ff-white);
  --ff-soft-paper: var(--ff-white);
  --ff-section-cream: var(--ff-ivory);
  --ff-cream-soft: var(--ff-ivory);
  --ff-cream-deep: var(--ff-stone);
  --ff-font-heading: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-font-label: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ff-ivory);
  color: var(--ff-charcoal);
}

.ffw-site h1,
.ffw-site h2,
.ffw-site h3,
.ffw-site h4,
.ffw-site h5,
.ffw-site h6 {
  color: var(--ff-charcoal);
  font-family: var(--ff-font-heading);
}

.ffw-site,
.ffw-site p,
.ffw-site a,
.ffw-site input,
.ffw-site select,
.ffw-site textarea,
.ffw-site button {
  font-family: var(--ff-font-body);
}

.ffw-site label,
.ffw-site small,
.ffw-site .ffw-eyebrow,
.ffw-site .ffw-kicker,
.ffw-site [class*="__tag"],
.ffw-site [class*="__label"],
.ffw-site [class*="__badge"],
.ffw-site [class*="__price"],
.ffw-site .ffw-crm-stepper {
  font-family: var(--ff-font-label);
}

.ffw-site .ffw-eyebrow,
.ffw-site .ffw-kicker,
.ffw-site [class*="__tag"] {
  color: var(--ff-earth) !important;
}

/* Flat surfaces replace every decorative gradient in public components. */
.ffw-site,
.ffw-site *,
.ffw-site *::before,
.ffw-site *::after {
  background-image: none !important;
}

.ffw-site .ffw-section,
.ffw-site .ffw-section--split,
.ffw-site .ffw-section--mist,
.ffw-site .ffw-hero,
.ffw-site .ffw-home-hero,
.ffw-site .ffw-home-hero--premium,
.ffw-site .ffw-home-hero--mockup,
.ffw-site .ffw-home-scene,
.ffw-site .ffw-interior-scene,
.ffw-site .ffw-card,
.ffw-site .ffw-route-card,
.ffw-site .ffw-home-price-card,
.ffw-site .ffw-price-card,
.ffw-site .ffw-resource-card,
.ffw-site .ffw-copy-card,
.ffw-site .ffw-list-panel,
.ffw-site .ffw-proof-panel,
.ffw-site .ffw-form,
.ffw-site .ffw-form-shell,
.ffw-site .ffw-hero-form-panel,
.ffw-site .ffw-lower-form-panel,
.ffw-site .ffw-lower-form-shell,
.ffw-site .ffw-legal-summary,
.ffw-site .ffw-legal-card,
.ffw-site .ffw-cta-band,
.ffw-site .ffw-growth-band,
.ffw-site .ffw-footer {
  background-image: none !important;
}

.ffw-site .ffw-section,
.ffw-site .ffw-section--split,
.ffw-site .ffw-home-hero,
.ffw-site .ffw-home-hero--premium,
.ffw-site .ffw-home-hero--mockup {
  background-color: var(--ff-ivory) !important;
}

.ffw-site .ffw-section--mist {
  background-color: color-mix(in srgb, var(--ff-stone) 42%, var(--ff-ivory)) !important;
}

.ffw-site .ffw-hero:not(.ffw-hero--dark):not(.ffw-hero--referral):not(.ffw-hero--partner-route),
.ffw-site .ffw-home-scene,
.ffw-site .ffw-interior-scene {
  background-color: var(--ff-white) !important;
}

.ffw-site .ffw-hero--dark,
.ffw-site .ffw-hero--referral,
.ffw-site .ffw-hero--partner-route,
.ffw-site .ffw-cta-band,
.ffw-site .ffw-growth-band,
.ffw-site .ffw-footer {
  background-color: var(--ff-forest) !important;
}

.ffw-site .ffw-card,
.ffw-site .ffw-route-card,
.ffw-site .ffw-home-price-card,
.ffw-site .ffw-price-card,
.ffw-site .ffw-resource-card,
.ffw-site .ffw-copy-card,
.ffw-site .ffw-list-panel,
.ffw-site .ffw-proof-panel,
.ffw-site .ffw-form,
.ffw-site .ffw-form-shell,
.ffw-site .ffw-hero-form-panel,
.ffw-site .ffw-lower-form-panel,
.ffw-site .ffw-lower-form-shell,
.ffw-site .ffw-legal-summary,
.ffw-site .ffw-legal-card {
  border-color: var(--ff-stone) !important;
  background-color: var(--ff-white) !important;
  box-shadow: 0 14px 36px rgba(45, 46, 46, 0.07) !important;
}

.ffw-site .ffw-header {
  border-bottom-color: var(--ff-stone) !important;
  background: color-mix(in srgb, var(--ff-ivory) 94%, transparent) !important;
}

.ffw-site .ffw-nav-link {
  color: var(--ff-charcoal) !important;
}

.ffw-site .ffw-nav-link:hover,
.ffw-site .ffw-nav-link:focus-visible,
.ffw-site .ffw-nav-item.is-active > .ffw-nav-link {
  background: color-mix(in srgb, var(--ff-stone) 40%, transparent) !important;
  color: var(--ff-forest) !important;
}

.ffw-site .ffw-btn,
.ffw-site .ffw-header-cta,
.ffw-site .ffw-footer__cta,
.ffw-site .ffw-crm-step-next,
.ffw-site .ffw-crm-step-submit {
  border-radius: 10px;
  background-image: none !important;
  box-shadow: none !important;
}

.ffw-site .ffw-btn--primary,
.ffw-site .ffw-btn--accent,
.ffw-site .ffw-header-cta,
.ffw-site .ffw-footer__cta,
.ffw-site .ffw-crm-step-next,
.ffw-site .ffw-crm-step-submit {
  border-color: var(--ff-forest) !important;
  background-color: var(--ff-forest) !important;
  color: var(--ff-white) !important;
}

.ffw-site .ffw-btn--primary:hover,
.ffw-site .ffw-btn--primary:focus-visible,
.ffw-site .ffw-btn--accent:hover,
.ffw-site .ffw-btn--accent:focus-visible,
.ffw-site .ffw-header-cta:hover,
.ffw-site .ffw-header-cta:focus-visible,
.ffw-site .ffw-footer__cta:hover,
.ffw-site .ffw-footer__cta:focus-visible,
.ffw-site .ffw-crm-step-next:hover,
.ffw-site .ffw-crm-step-next:focus-visible,
.ffw-site .ffw-crm-step-submit:hover,
.ffw-site .ffw-crm-step-submit:focus-visible {
  background-color: var(--ff-earth) !important;
  border-color: var(--ff-earth) !important;
  transform: none !important;
}

.ffw-site .ffw-btn--ghost,
.ffw-site .ffw-btn--secondary,
.ffw-site .ffw-crm-step-prev {
  border-color: var(--ff-stone) !important;
  background-color: var(--ff-white) !important;
  color: var(--ff-forest) !important;
}

.ffw-site .ffw-interior-scene__coral,
.ffw-site .ffw-home-scene__coral {
  background: var(--ff-earth) !important;
  opacity: 0.22;
  mix-blend-mode: multiply;
}

.ffw-site input,
.ffw-site select,
.ffw-site textarea {
  border-color: var(--ff-stone) !important;
  background-color: var(--ff-white) !important;
  color: var(--ff-charcoal) !important;
}

.ffw-site input:focus,
.ffw-site select:focus,
.ffw-site textarea:focus {
  border-color: var(--ff-forest) !important;
  box-shadow: 0 0 0 3px rgba(54, 75, 57, 0.13) !important;
}

.ffw-site .ffw-footer h2,
.ffw-site .ffw-footer h3,
.ffw-site .ffw-footer p,
.ffw-site .ffw-footer a,
.ffw-site .ffw-cta-band h2,
.ffw-site .ffw-cta-band p,
.ffw-site .ffw-growth-band h2,
.ffw-site .ffw-growth-band p {
  color: var(--ff-white) !important;
}

/* Retain only functional transitions; remove decorative lift and step animation. */
.ffw-site .ffw-card:hover,
.ffw-site .ffw-route-card:hover,
.ffw-site .ffw-home-price-card:hover,
.ffw-site .ffw-price-card:hover,
.ffw-site .ffw-resource-card:hover,
.ffw-site .ffw-btn:hover {
  transform: none !important;
}

.ffw-site .ffw-crm-step.is-active {
  animation: none !important;
}

.ffw-site .ffw-card,
.ffw-site .ffw-route-card,
.ffw-site .ffw-home-price-card,
.ffw-site .ffw-price-card,
.ffw-site .ffw-resource-card,
.ffw-site .ffw-btn {
  transition-duration: 120ms !important;
}

/* FF-S41D: homepage quick-start hero compression.
   Replaces the long homepage CRM form on first landing with a one-question-at-a-time chooser. */
.ffw-site .ffw-home-scene--quick-start {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 560px !important;
  min-height: 0 !important;
  height: auto !important;
  margin-left: auto !important;
  padding: clamp(18px, 2.2vw, 28px) !important;
  border: 1px solid rgba(255,255,255,0.74) !important;
  border-radius: 32px !important;
  background: rgba(255,255,255,0.92) !important;
  box-shadow: 0 28px 80px rgba(36,64,43,0.14) !important;
  backdrop-filter: blur(14px);
  overflow: hidden !important;
}

.ffw-site .ffw-home-scene--quick-start::before,
.ffw-site .ffw-home-scene--quick-start::after {
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  border-radius: 999px !important;
}

.ffw-site .ffw-home-scene--quick-start::before {
  width: 210px !important;
  height: 210px !important;
  right: -92px !important;
  top: -116px !important;
  background: rgba(231,116,96,0.11) !important;
}

.ffw-site .ffw-home-scene--quick-start::after {
  width: 180px !important;
  height: 180px !important;
  left: -110px !important;
  bottom: -110px !important;
  background: rgba(54,75,57,0.08) !important;
}

.ffw-site .ffw-home-quick-start__head,
.ffw-site .ffw-home-quick-start__form {
  position: relative;
  z-index: 1;
}

.ffw-site .ffw-home-quick-start__head {
  margin-bottom: 16px;
}

.ffw-site .ffw-home-quick-start__head h2 {
  margin: 0 0 8px !important;
  color: #24402b;
  font-family: var(--ff-font-heading);
  font-size: clamp(1.45rem, 2.25vw, 2rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em;
}

.ffw-site .ffw-home-quick-start__head p:not(.ffw-eyebrow) {
  max-width: 430px;
  margin: 0 !important;
  color: rgba(36,64,43,0.68);
  font-size: 0.98rem;
  line-height: 1.5;
}

.ffw-site .ffw-home-quick-start__form {
  display: grid;
  gap: 14px;
}

.ffw-site .ffw-home-quick-start__progress {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px;
  border: 1px solid rgba(54,75,57,0.12);
  border-radius: 999px;
  background: rgba(54,75,57,0.045);
}

.ffw-site .ffw-home-quick-start__progress span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: rgba(36,64,43,0.64);
  font-size: 0.82rem;
  font-weight: 900;
}

.ffw-site .ffw-home-quick-start__progress span.is-active {
  background: #24402b;
  color: #fffefa;
  box-shadow: 0 10px 22px rgba(36,64,43,0.22);
}

.ffw-site .ffw-home-quick-start__progress span.is-complete {
  background: rgba(36,64,43,0.12);
  color: #24402b;
}

.ffw-site .ffw-home-quick-start__status {
  margin: -4px 0 0 !important;
  padding: 10px 12px;
  border: 1px solid rgba(231,116,96,0.26);
  border-radius: 14px;
  background: rgba(231,116,96,0.08);
  color: #9f3c2d;
  font-size: 0.88rem;
  font-weight: 800;
}

.ffw-site .ffw-home-quick-start__step {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  min-inline-size: 0;
}

.ffw-site .ffw-home-quick-start__step legend {
  display: block;
  width: 100%;
  margin: 0 0 12px !important;
  padding: 0 !important;
  color: #24402b;
  font-size: 1rem !important;
  font-weight: 900;
  line-height: 1.25;
}

.ffw-site .ffw-home-quick-start__options {
  display: grid;
  gap: 10px;
}

.ffw-site .ffw-home-quick-start__options--service {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ffw-site .ffw-home-quick-start__options--business {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ffw-site .ffw-home-quick-option {
  display: block;
  cursor: pointer;
}

.ffw-site .ffw-home-quick-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ffw-site .ffw-home-quick-option span {
  display: block;
  min-height: 62px;
  padding: 12px 13px;
  border: 1px solid rgba(36,64,43,0.14);
  border-radius: 18px;
  background: rgba(255,254,250,0.8);
  color: #24402b;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ffw-site .ffw-home-quick-option strong {
  display: block;
  margin: 0 0 4px;
  font-size: 0.93rem;
  font-weight: 900;
  line-height: 1.18;
}

.ffw-site .ffw-home-quick-option small {
  display: block;
  color: rgba(36,64,43,0.62);
  font-size: 0.78rem;
  line-height: 1.35;
}

.ffw-site .ffw-home-quick-option input:focus-visible + span,
.ffw-site .ffw-home-quick-option:hover span {
  border-color: rgba(36,64,43,0.32);
  box-shadow: 0 12px 28px rgba(36,64,43,0.08);
  transform: translateY(-1px);
}

.ffw-site .ffw-home-quick-option input:checked + span {
  border-color: rgba(36,64,43,0.78);
  background: rgba(54,75,57,0.08);
  box-shadow: inset 0 0 0 1px rgba(36,64,43,0.38), 0 14px 32px rgba(36,64,43,0.10);
}

.ffw-site .ffw-home-quick-start__summary {
  padding: 18px;
  border: 1px solid rgba(36,64,43,0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(54,75,57,0.075), rgba(231,116,96,0.08));
}

.ffw-site .ffw-home-quick-start__summary-kicker {
  margin: 0 0 6px !important;
  color: #e46f5c;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ffw-site .ffw-home-quick-start__summary h3 {
  margin: 0 0 8px !important;
  color: #24402b;
  font-family: var(--ff-font-heading);
  font-size: 1.35rem !important;
  line-height: 1.1 !important;
}

.ffw-site .ffw-home-quick-start__summary p:not(.ffw-home-quick-start__summary-kicker) {
  margin: 0 0 14px !important;
  color: rgba(36,64,43,0.68);
  font-size: 0.94rem;
  line-height: 1.45;
}

.ffw-site .ffw-home-quick-start__summary dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.ffw-site .ffw-home-quick-start__summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid rgba(36,64,43,0.10);
}

.ffw-site .ffw-home-quick-start__summary dt,
.ffw-site .ffw-home-quick-start__summary dd {
  margin: 0;
}

.ffw-site .ffw-home-quick-start__summary dt {
  color: rgba(36,64,43,0.58);
  font-size: 0.82rem;
  font-weight: 800;
}

.ffw-site .ffw-home-quick-start__summary dd {
  color: #24402b;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: right;
}

.ffw-site .ffw-home-quick-start__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.ffw-site .ffw-home-quick-start__actions .ffw-btn {
  min-height: 46px;
  padding: 12px 18px !important;
}

.ffw-site .ffw-home-quick-start__smallprint {
  margin: -2px 0 0 !important;
  color: rgba(36,64,43,0.56);
  font-size: 0.82rem;
  line-height: 1.35;
}

.ffw-site .ffw-home-quick-start:target {
  outline: 3px solid rgba(231,116,96,0.22);
  outline-offset: 4px;
}

.ffw-site .ffw-home-hero--with-form .ffw-trust-strip--hero {
  margin-top: clamp(14px, 2vw, 26px) !important;
}

@media (max-width: 1040px) {
  .ffw-site .ffw-home-scene--quick-start {
    max-width: none !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 720px) {
  .ffw-site .ffw-home-scene--quick-start {
    border-radius: 24px !important;
    padding: 18px !important;
  }

  .ffw-site .ffw-home-quick-start__options--service,
  .ffw-site .ffw-home-quick-start__options--business {
    grid-template-columns: 1fr;
  }

  .ffw-site .ffw-home-quick-option span {
    min-height: 0;
  }

  .ffw-site .ffw-home-quick-start__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ffw-site .ffw-home-quick-start__actions .ffw-btn {
    width: 100%;
  }
}

/* FF-S41E: homepage full hero form compression.
   Keeps the real CRM form in the homepage hero, but makes the first view feel short. */
.ffw-site .ffw-home-hero-full-form {
  position: relative !important;
  z-index: 2 !important;
}

.ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel--home-full {
  max-width: 520px !important;
  margin-left: auto !important;
  padding: clamp(16px, 2vw, 22px) !important;
  border-radius: 30px !important;
  overflow: hidden !important;
}

.ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel__head {
  margin-bottom: 12px !important;
}

.ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel__head h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.035em !important;
}

.ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel__head p:not(.ffw-eyebrow) {
  max-width: 420px !important;
  font-size: 0.92rem !important;
  line-height: 1.42 !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-stepper {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 10px !important;
  padding: 6px !important;
  border: 1px solid rgba(36,64,43,0.12) !important;
  border-radius: 999px !important;
  background: rgba(54,75,57,0.045) !important;
  overflow-x: auto !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-stepper__item {
  flex: 0 0 auto !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-stepper__dot {
  width: 26px !important;
  height: 26px !important;
  font-size: 0.78rem !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-form-section legend {
  margin-bottom: 8px !important;
  font-size: 0.96rem !important;
  line-height: 1.2 !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-form-grid {
  gap: 9px !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-field {
  gap: 5px !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-field__label {
  font-size: 0.82rem !important;
  line-height: 1.25 !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact input:not([type="checkbox"]),
.ffw-site .ffw-crm-form--variant-home_full_compact select,
.ffw-site .ffw-crm-form--variant-home_full_compact textarea {
  min-height: 43px !important;
  padding: 10px 12px !important;
  border-radius: 13px !important;
  font-size: 0.92rem !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact textarea {
  min-height: 78px !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-form-help,
.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-step-intro {
  display: none !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-step-actions {
  margin-top: 11px !important;
  padding-top: 11px !important;
  border-top: 1px solid rgba(36,64,43,0.09) !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-step-actions .ffw-btn {
  min-height: 43px !important;
  padding: 10px 15px !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-step-count {
  color: rgba(36,64,43,0.62) !important;
  font-size: 0.78rem !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-company-verification {
  margin-top: 8px !important;
  padding: 11px !important;
  border-radius: 16px !important;
}

@media (max-width: 1040px) {
  .ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel--home-full {
    max-width: none !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 720px) {
  .ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel--home-full {
    border-radius: 24px !important;
    padding: 18px !important;
  }
}

/* FF-S41F: homepage true wizard hero form fix.
   The real CRM form remains in the homepage hero, but inactive sections are hidden immediately
   so the landing view behaves as a compact wizard rather than a tall stacked form. */
.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-step[hidden],
.ffw-site .ffw-crm-form--variant-home_full_compact [data-ffw-step-prev][hidden],
.ffw-site .ffw-crm-form--variant-home_full_compact [data-ffw-step-next][hidden],
.ffw-site .ffw-crm-form--variant-home_full_compact [data-ffw-step-submit][hidden] {
  display: none !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact[data-ffw-current-step="1"] .ffw-crm-step-actions {
  justify-content: flex-end !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-form-section[data-ffw-step-active="false"] {
  display: none !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-form-section[data-ffw-step-active="true"] {
  display: block !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-form-smallprint {
  margin-top: 10px !important;
  font-size: 0.76rem !important;
  line-height: 1.35 !important;
}

/* FF-S41H: consent checkbox alignment polish v0.41.8
   Keeps checkbox consent fields readable in the hero wizard and lower CRM forms. */
.ffw-site .ffw-consent {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 12px !important;
  row-gap: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ffw-site .ffw-consent input[type="checkbox"] {
  grid-column: 1 !important;
  grid-row: 1 !important;
  appearance: none;
  -webkit-appearance: none;
  display: block !important;
  width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  border: 1.5px solid rgba(23, 70, 58, 0.34) !important;
  border-radius: 5px !important;
  background: #fffefa !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.ffw-site .ffw-consent input[type="checkbox"]:checked {
  border-color: var(--ffw-forest, #17463a) !important;
  background:
    linear-gradient(135deg, transparent 42%, #fffefa 42% 58%, transparent 58%) center/62% 62% no-repeat,
    linear-gradient(45deg, transparent 42%, #fffefa 42% 58%, transparent 58%) center/62% 62% no-repeat,
    var(--ffw-forest, #17463a) !important;
}

.ffw-site .ffw-consent input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(231, 116, 96, 0.28) !important;
  outline-offset: 3px !important;
}

.ffw-site .ffw-consent > span {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(23, 36, 27, 0.9) !important;
  font-size: 0.9rem !important;
  font-weight: 750 !important;
  line-height: 1.38 !important;
  text-align: left !important;
}

.ffw-site .ffw-consent > span strong {
  display: inline !important;
  margin-left: 3px !important;
  color: var(--ffw-forest, #17463a) !important;
  font-weight: 950 !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-consent {
  padding: 13px 14px !important;
  border-radius: 14px !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-consent > span {
  font-size: 0.86rem !important;
  line-height: 1.34 !important;
}

.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-step[data-ffw-step-label="Consent"] .ffw-form-grid {
  gap: 10px !important;
}

@media (max-width: 640px) {
  .ffw-site .ffw-consent {
    grid-template-columns: 20px minmax(0, 1fr) !important;
    column-gap: 10px !important;
    padding: 13px !important;
  }

  .ffw-site .ffw-consent input[type="checkbox"] {
    width: 19px !important;
    min-width: 19px !important;
    height: 19px !important;
    min-height: 19px !important;
    margin-top: 1px !important;
  }

  .ffw-site .ffw-consent > span {
    font-size: 0.84rem !important;
    line-height: 1.35 !important;
  }
}

/* FF-S41I: universal hero form step system v0.41.9
   All hero CRM forms now use one compact six-step visual system.
   Page intent stays specific, but the hero form rhythm, stepper and buttons match sitewide. */
.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-stepper {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 10px !important;
  padding: 6px !important;
  border: 1px solid rgba(36,64,43,0.12) !important;
  border-radius: 999px !important;
  background: rgba(54,75,57,0.045) !important;
  overflow-x: auto !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-stepper__item {
  flex: 0 0 auto !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-stepper__dot {
  width: 26px !important;
  height: 26px !important;
  font-size: 0.78rem !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-form-section legend {
  margin-bottom: 8px !important;
  font-size: 0.96rem !important;
  line-height: 1.2 !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-form-grid {
  grid-template-columns: 1fr !important;
  gap: 9px !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-field {
  gap: 5px !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-field__label {
  font-size: 0.82rem !important;
  line-height: 1.25 !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal input:not([type="checkbox"]),
.ffw-site .ffw-crm-form--variant-hero_universal select,
.ffw-site .ffw-crm-form--variant-hero_universal textarea {
  min-height: 43px !important;
  padding: 10px 12px !important;
  border-radius: 13px !important;
  font-size: 0.92rem !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal textarea {
  min-height: 78px !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-form-help,
.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-step-intro {
  display: none !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-step-actions {
  margin-top: 11px !important;
  padding-top: 11px !important;
  border-top: 1px solid rgba(36,64,43,0.09) !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-step-actions .ffw-btn {
  min-height: 43px !important;
  padding: 10px 15px !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-step-count {
  color: rgba(36,64,43,0.62) !important;
  font-size: 0.78rem !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-company-verification {
  margin-top: 8px !important;
  padding: 11px !important;
  border-radius: 16px !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-step[hidden],
.ffw-site .ffw-crm-form--variant-hero_universal [data-ffw-step-prev][hidden],
.ffw-site .ffw-crm-form--variant-hero_universal [data-ffw-step-next][hidden],
.ffw-site .ffw-crm-form--variant-hero_universal [data-ffw-step-submit][hidden] {
  display: none !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal[data-ffw-current-step="1"] .ffw-crm-step-actions {
  justify-content: flex-end !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-form-section[data-ffw-step-active="false"] {
  display: none !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-form-section[data-ffw-step-active="true"] {
  display: block !important;
}

.ffw-site .ffw-crm-form--variant-hero_universal .ffw-form-smallprint {
  margin-top: 10px !important;
  font-size: 0.76rem !important;
  line-height: 1.35 !important;
}

/* FF-S42A: homepage hero alignment with internal page hero system v0.42.0
   Keeps the full six-step hero form, but aligns homepage spacing, chips and form rhythm with the audience/service pages. */
.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form {
  padding: clamp(84px, 7.2vw, 124px) 0 clamp(34px, 4.8vw, 66px) !important;
  min-height: auto !important;
}

.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-home-hero__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.78fr) !important;
  align-items: center !important;
  gap: clamp(32px, 5vw, 72px) !important;
}

.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-home-hero__copy {
  align-self: center !important;
  max-width: 720px !important;
  padding-bottom: 0 !important;
}

.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-eyebrow {
  margin-bottom: 20px !important;
}

.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form h1 {
  max-width: 720px !important;
  font-size: clamp(4rem, 5.4vw, 6.3rem) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.044em !important;
}

.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-lead {
  margin-top: 24px !important;
  max-width: 560px !important;
}

.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-actions {
  margin-top: 30px !important;
}

.ffw-site .ffw-home-hero__chips {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 26px !important;
  max-width: 620px !important;
}

.ffw-site .ffw-home-hero__chips span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  min-height: 38px !important;
  padding: 9px 15px !important;
  border: 1px solid rgba(36, 64, 43, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: rgba(36, 64, 43, 0.74) !important;
  font-family: var(--ff-font-body) !important;
  font-size: 0.88rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: 0 14px 34px rgba(36, 64, 43, 0.055) !important;
}

.ffw-site .ffw-home-hero__chips span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: var(--ff-green) !important;
  opacity: 0.85;
}

.ffw-site .ffw-home-hero-full-form {
  display: flex !important;
  align-items: center !important;
  align-self: center !important;
  min-height: 0 !important;
}

.ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel--home-full {
  width: 100% !important;
  max-width: 520px !important;
  margin-left: auto !important;
}

.ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel__head .ffw-eyebrow {
  color: rgba(45, 46, 46, 0.72) !important;
  margin-bottom: 12px !important;
}

.ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel__head h2 {
  font-size: clamp(1.45rem, 2.15vw, 2rem) !important;
}

.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-trust-strip--hero {
  margin-top: clamp(28px, 4vw, 54px) !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-home-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr) !important;
    gap: clamp(28px, 4vw, 52px) !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form h1 {
    font-size: clamp(3.6rem, 5.6vw, 5.4rem) !important;
  }
}

@media (max-width: 1040px) {
  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form {
    padding-top: clamp(58px, 8vw, 86px) !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-home-hero__grid {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel--home-full {
    max-width: none !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 720px) {
  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form {
    padding-top: 42px !important;
    padding-bottom: 34px !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form h1 {
    font-size: clamp(3.1rem, 14vw, 4.5rem) !important;
    white-space: normal !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form h1 span {
    white-space: normal !important;
  }

  .ffw-site .ffw-home-hero__chips {
    gap: 8px !important;
    margin-top: 22px !important;
  }

  .ffw-site .ffw-home-hero__chips span {
    min-height: 34px !important;
    padding: 8px 12px !important;
    font-size: 0.82rem !important;
  }
}

/* Slice 22: homepage SEO/AEO heading refinement. Keep the homepage H1 clear, three-line and balanced against the hero form. */
.ffw-site .ffw-home-hero--mockup h1.ffw-home-hero__seo-title {
  max-width: 760px !important;
  font-size: clamp(3.75rem, 4.85vw, 5.55rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.062em !important;
}

.ffw-site .ffw-home-hero--mockup h1.ffw-home-hero__seo-title span {
  display: inline-block;
}

@media (max-width: 1120px) {
  .ffw-site .ffw-home-hero--mockup h1.ffw-home-hero__seo-title {
    max-width: 94vw !important;
    font-size: clamp(3.3rem, 7.4vw, 4.9rem) !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-home-hero--mockup h1.ffw-home-hero__seo-title {
    font-size: clamp(2.8rem, 12.4vw, 4.25rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.055em !important;
  }
}

/* FF-S42B: hero form shadow polish v0.42.2
   Removes the heavy grey/cream glow around hero form cards and keeps the hero forms cleaner across the site. */
.ffw-site .ffw-hero-form-panel,
.ffw-site .ffw-home-scene--form .ffw-hero-form-panel,
.ffw-site .ffw-hero__form-wrap .ffw-hero-form-panel,
.ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel--home-full,
.ffw-site .ffw-hero--audience.ffw-hero--with-form .ffw-hero-form-panel,
.ffw-site .ffw-hero--service.ffw-hero--with-form .ffw-hero-form-panel,
.ffw-site [data-ffw-page="pricing-packages"] .ffw-hero-form-panel,
.ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel {
  border: 1px solid rgba(36, 64, 43, 0.10) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 14px 34px rgba(36, 64, 43, 0.045) !important;
  backdrop-filter: none !important;
}

.ffw-site .ffw-hero-form-panel::before,
.ffw-site .ffw-hero-form-panel::after {
  box-shadow: none !important;
  filter: none !important;
}

.ffw-site .ffw-crm-form--placement-hero,
.ffw-site .ffw-crm-form--variant-hero_universal,
.ffw-site .ffw-crm-form--variant-home_full_compact {
  box-shadow: none !important;
  filter: none !important;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-stepper,
.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-stepper,
.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-stepper,
.ffw-site[data-ffw-has-hero-form="1"] .ffw-hero-form-panel .ffw-crm-stepper {
  border-color: rgba(36, 64, 43, 0.10) !important;
  background: rgba(54, 75, 57, 0.035) !important;
  box-shadow: none !important;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-stepper__item.is-active,
.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-stepper__item.is-active,
.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-stepper__item.is-active {
  box-shadow: 0 6px 16px rgba(36, 64, 43, 0.055) !important;
}

.ffw-site .ffw-crm-form--placement-hero .ffw-crm-company-verification,
.ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-company-verification,
.ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-company-verification {
  box-shadow: 0 10px 24px rgba(36, 64, 43, 0.035) !important;
}

/* FF-S42C: mobile hero form layout polish v0.42.3
   Keeps the universal six-step hero form, but gives it a dedicated mobile layout so cards,
   steppers, fields and buttons stay contained on iPhone/small Android screens. */
@media (max-width: 720px) {
  .ffw-site .ffw-hero--with-form,
  .ffw-site .ffw-home-hero--with-form,
  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form,
  .ffw-site .ffw-hero--audience.ffw-hero--with-form,
  .ffw-site .ffw-hero--service.ffw-hero--with-form,
  .ffw-site .ffw-referral-hero.ffw-hero--referral-with-form {
    overflow-x: hidden !important;
  }

  .ffw-site .ffw-hero--with-form .ffw-container,
  .ffw-site .ffw-home-hero--with-form .ffw-container,
  .ffw-site .ffw-referral-hero.ffw-hero--referral-with-form .ffw-container {
    width: min(100% - 28px, var(--ff-page-max, 1400px)) !important;
  }

  .ffw-site .ffw-home-hero--with-form .ffw-home-hero__grid,
  .ffw-site .ffw-hero--with-form .ffw-hero__grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: start !important;
  }

  .ffw-site .ffw-home-hero-full-form,
  .ffw-site .ffw-home-scene--form,
  .ffw-site .ffw-hero__form-wrap,
  .ffw-site .ffw-referral-card--hero-form {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

  .ffw-site .ffw-hero-form-panel,
  .ffw-site .ffw-home-scene--form .ffw-hero-form-panel,
  .ffw-site .ffw-hero__form-wrap .ffw-hero-form-panel,
  .ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel--home-full,
  .ffw-site .ffw-hero--audience.ffw-hero--with-form .ffw-hero-form-panel,
  .ffw-site .ffw-hero--service.ffw-hero--with-form .ffw-hero-form-panel,
  .ffw-site [data-ffw-page="pricing-packages"] .ffw-hero-form-panel,
  .ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 22px 18px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .ffw-site .ffw-hero-form-panel__head {
    margin-bottom: 16px !important;
  }

  .ffw-site .ffw-hero-form-panel__head .ffw-eyebrow {
    margin-bottom: 10px !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.14em !important;
  }

  .ffw-site .ffw-hero-form-panel__head h2,
  .ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel__head h2 {
    font-size: clamp(1.72rem, 8vw, 2.08rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    max-width: 100% !important;
  }

  .ffw-site .ffw-hero-form-panel__head p:not(.ffw-eyebrow) {
    max-width: 100% !important;
    font-size: 0.98rem !important;
    line-height: 1.42 !important;
  }

  .ffw-site .ffw-crm-form--placement-hero,
  .ffw-site .ffw-crm-form--variant-hero_universal,
  .ffw-site .ffw-crm-form--variant-home_full_compact {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-stepper,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-stepper,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-stepper,
  .ffw-site[data-ffw-has-hero-form="1"] .ffw-hero-form-panel .ffw-crm-stepper {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    align-items: center !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 4px !important;
    padding: 7px !important;
    margin: 14px 0 20px !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-stepper__item,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-stepper__item,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-stepper__item,
  .ffw-site[data-ffw-has-hero-form="1"] .ffw-hero-form-panel .ffw-crm-stepper__item {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 36px !important;
    justify-content: center !important;
    padding: 0 !important;
    border-radius: 999px !important;
    gap: 0 !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-stepper__dot,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-stepper__dot,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-stepper__dot,
  .ffw-site[data-ffw-has-hero-form="1"] .ffw-hero-form-panel .ffw-crm-stepper__dot {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    font-size: 0.82rem !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-form-section,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-form-section,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-form-section {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-form-section legend,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-form-section legend,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-form-section legend {
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
    margin-bottom: 9px !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-form-grid,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-form-grid,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-form-grid {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 14px !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-field,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-field,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-field {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-field__label,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-field__label,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-field__label {
    font-size: 0.96rem !important;
    line-height: 1.28 !important;
    margin-bottom: 8px !important;
  }

  .ffw-site .ffw-crm-form--placement-hero input:not([type="checkbox"]),
  .ffw-site .ffw-crm-form--placement-hero select,
  .ffw-site .ffw-crm-form--placement-hero textarea,
  .ffw-site .ffw-crm-form--variant-hero_universal input:not([type="checkbox"]),
  .ffw-site .ffw-crm-form--variant-hero_universal select,
  .ffw-site .ffw-crm-form--variant-hero_universal textarea,
  .ffw-site .ffw-crm-form--variant-home_full_compact input:not([type="checkbox"]),
  .ffw-site .ffw-crm-form--variant-home_full_compact select,
  .ffw-site .ffw-crm-form--variant-home_full_compact textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 50px !important;
    height: auto !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
  }

  .ffw-site .ffw-crm-form--placement-hero textarea,
  .ffw-site .ffw-crm-form--variant-hero_universal textarea,
  .ffw-site .ffw-crm-form--variant-home_full_compact textarea {
    min-height: 104px !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-step-actions,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-step-actions,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-step-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 10px !important;
    margin-top: 18px !important;
    padding-top: 16px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-step-count,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-step-count,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-step-count {
    order: -1 !important;
    width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: 0.86rem !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-step-actions .ffw-btn,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-step-actions .ffw-btn,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-step-actions .ffw-btn,
  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-company-verification__actions .ffw-btn,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-company-verification__actions .ffw-btn,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-company-verification__actions .ffw-btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 50px !important;
    margin: 0 !important;
    padding: 13px 16px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-company-verification,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-company-verification,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-company-verification,
  .ffw-site .ffw-crm-form--placement-hero .ffw-consent,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-consent,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-consent {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 420px) {
  .ffw-site .ffw-hero--with-form .ffw-container,
  .ffw-site .ffw-home-hero--with-form .ffw-container,
  .ffw-site .ffw-referral-hero.ffw-hero--referral-with-form .ffw-container {
    width: min(100% - 24px, var(--ff-page-max, 1400px)) !important;
  }

  .ffw-site .ffw-hero-form-panel,
  .ffw-site .ffw-home-scene--form .ffw-hero-form-panel,
  .ffw-site .ffw-hero__form-wrap .ffw-hero-form-panel,
  .ffw-site .ffw-home-hero-full-form .ffw-hero-form-panel--home-full,
  .ffw-site .ffw-hero--audience.ffw-hero--with-form .ffw-hero-form-panel,
  .ffw-site .ffw-hero--service.ffw-hero--with-form .ffw-hero-form-panel,
  .ffw-site [data-ffw-page="pricing-packages"] .ffw-hero-form-panel,
  .ffw-site .ffw-referral-card--hero-form .ffw-hero-form-panel {
    padding: 20px 16px !important;
    border-radius: 22px !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-stepper,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-stepper,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-stepper,
  .ffw-site[data-ffw-has-hero-form="1"] .ffw-hero-form-panel .ffw-crm-stepper {
    gap: 3px !important;
    padding: 6px !important;
  }

  .ffw-site .ffw-crm-form--placement-hero .ffw-crm-stepper__dot,
  .ffw-site .ffw-crm-form--variant-hero_universal .ffw-crm-stepper__dot,
  .ffw-site .ffw-crm-form--variant-home_full_compact .ffw-crm-stepper__dot,
  .ffw-site[data-ffw-has-hero-form="1"] .ffw-hero-form-panel .ffw-crm-stepper__dot {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
  }
}

/* FF-S42D: homepage mobile form clipping fix v0.42.4
   The homepage hero form uses the same .ffw-home-scene class that was previously used
   for fixed-height hero artwork. On phones, those old scene-height rules were still
   winning and clipping the live six-step CRM form before the current step finished.
   This mobile-only layer lets the homepage form column expand naturally before the
   hero trust strip renders. */
@media (max-width: 720px) {
  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form {
    overflow: visible !important;
    padding-bottom: 28px !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-home-hero__grid {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
    align-items: start !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-home-scene--form,
  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-home-hero-full-form {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    align-self: stretch !important;
    contain: none !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-home-scene--form .ffw-hero-form-panel,
  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-home-hero-full-form .ffw-hero-form-panel--home-full {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-crm-form--variant-home_full_compact {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-crm-form--variant-home_full_compact .ffw-crm-form-section[data-ffw-step-active="true"],
  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-crm-form--variant-home_full_compact .ffw-crm-step-actions {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-trust-strip--hero {
    margin-top: 24px !important;
  }
}

@media (max-width: 420px) {
  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form {
    padding-bottom: 24px !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-trust-strip--hero {
    margin-top: 22px !important;
  }
}

/* FF-S42E: homepage trust strip docking v0.42.5
   The form-led homepage hero now has a larger live CRM panel. This layer locks the
   trust rail to the bottom of the hero instead of letting it read like a floating
   band between the hero and the services section. It is visual/layout-only. */
.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form {
  padding-bottom: 0 !important;
}

.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-home-hero__grid {
  margin-bottom: 0 !important;
}

.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-trust-strip--hero {
  display: block !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: 100% !important;
  margin: clamp(30px, 3.6vw, 48px) 0 0 !important;
  padding: 0 !important;
  border-top: 1px solid rgba(36, 64, 43, 0.10) !important;
  border-bottom: 1px solid rgba(36, 64, 43, 0.08) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-trust-strip--hero .ffw-container {
  min-height: 68px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form + .ffw-section {
  margin-top: 0 !important;
}

@media (max-width: 720px) {
  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form {
    padding-bottom: 0 !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-trust-strip--hero {
    margin-top: 22px !important;
  }

  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-trust-strip--hero .ffw-container {
    min-height: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
}

@media (max-width: 420px) {
  .ffw-site .ffw-home-hero--mockup.ffw-home-hero--with-form .ffw-trust-strip--hero {
    margin-top: 20px !important;
  }
}

/* FF-S42F: Who we help route card polish v0.42.6
   Visual-only polish for the homepage/audience route chooser. This fixes the unreadable
   featured card caused by earlier overlapping card overrides and changes the route cards
   from a squeezed five-across row into a more premium 3+2 decision layout. */
.ffw-site .ffw-section--mockup-routes {
  padding-top: clamp(64px, 7vw, 96px) !important;
  padding-bottom: clamp(58px, 6.5vw, 88px) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-section-head--split {
  align-items: end !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr) !important;
  gap: clamp(20px, 4vw, 52px) !important;
  margin-bottom: clamp(26px, 3.5vw, 42px) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-section-head--split > p {
  justify-self: end !important;
  max-width: 520px !important;
  padding: 16px 20px !important;
  border: 1px solid rgba(54, 75, 57, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.58) !important;
  color: rgba(45, 46, 46, 0.78) !important;
  font-size: clamp(0.96rem, 1vw, 1.06rem) !important;
  line-height: 1.35 !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.2vw, 26px) !important;
  align-items: stretch !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card {
  grid-column: span 2 !important;
  min-height: 238px !important;
  padding: clamp(24px, 2.6vw, 32px) !important;
  border: 1px solid rgba(54, 75, 57, 0.14) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--ff-charcoal) !important;
  box-shadow: 0 18px 50px rgba(36, 64, 43, 0.055) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card:nth-child(4) {
  grid-column: 2 / span 2 !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card:nth-child(5) {
  grid-column: 4 / span 2 !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card::after {
  right: -46px !important;
  bottom: -52px !important;
  width: 140px !important;
  height: 140px !important;
  border-radius: 46px !important;
  background: rgba(54, 75, 57, 0.055) !important;
  opacity: 1 !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card:hover,
.ffw-site .ffw-section--mockup-routes .ffw-route-card:focus-visible {
  border-color: rgba(229, 107, 90, 0.42) !important;
  background: #ffffff !important;
  box-shadow: 0 24px 70px rgba(36, 64, 43, 0.11) !important;
  transform: translateY(-4px) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured {
  border-color: rgba(54, 75, 57, 0.38) !important;
  background: linear-gradient(135deg, #2f4634 0%, #173f33 100%) !important;
  color: #fff9ef !important;
  box-shadow: 0 24px 70px rgba(23, 63, 51, 0.18) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured::after {
  background: rgba(255, 255, 255, 0.105) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured:hover,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured:focus-visible {
  border-color: rgba(242, 160, 146, 0.72) !important;
  background: linear-gradient(135deg, #34503b 0%, #173f33 100%) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured h3,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured p,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured strong,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured .ffw-route-card__number {
  color: #fff9ef !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured p {
  color: rgba(255, 249, 239, 0.84) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured .ffw-route-card__tag {
  background: rgba(255, 249, 239, 0.16) !important;
  color: #fff9ef !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card h3 {
  margin: 2px 0 0 !important;
  color: var(--ff-green) !important;
  font-size: clamp(1.42rem, 1.75vw, 1.95rem) !important;
  line-height: 1.06 !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card p {
  color: rgba(45, 46, 46, 0.74) !important;
  font-size: clamp(0.96rem, 1vw, 1.05rem) !important;
  line-height: 1.55 !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card strong {
  color: var(--ff-coral) !important;
  font-weight: 900 !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card__number {
  color: rgba(54, 75, 57, 0.76) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card__tag {
  background: rgba(54, 75, 57, 0.08) !important;
  color: var(--ff-green) !important;
}

@media (max-width: 1100px) {
  .ffw-site .ffw-section--mockup-routes .ffw-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ffw-site .ffw-section--mockup-routes .ffw-route-card,
  .ffw-site .ffw-section--mockup-routes .ffw-route-card:nth-child(4),
  .ffw-site .ffw-section--mockup-routes .ffw-route-card:nth-child(5) {
    grid-column: auto !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-section--mockup-routes .ffw-section-head--split {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .ffw-site .ffw-section--mockup-routes .ffw-section-head--split > p {
    justify-self: start !important;
    width: 100% !important;
    border-radius: 22px !important;
  }

  .ffw-site .ffw-section--mockup-routes .ffw-route-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .ffw-site .ffw-section--mockup-routes .ffw-route-card {
    min-height: 0 !important;
    padding: 24px !important;
    border-radius: 20px !important;
  }
}

/* Slice 28: Who We Help contrast + section balance
   Keep all route cards consistent by default. The first card must not look selected or disabled. */
.ffw-site .ffw-section--mockup-routes {
  padding-top: clamp(76px, 7.5vw, 110px) !important;
  padding-bottom: clamp(52px, 5.6vw, 78px) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-section-head--split {
  display: grid !important;
  grid-template-columns: minmax(0, 760px) !important;
  align-items: start !important;
  justify-content: start !important;
  gap: 16px !important;
  margin-bottom: clamp(28px, 3.3vw, 40px) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-section-head--split > p {
  justify-self: start !important;
  max-width: 560px !important;
  width: auto !important;
  padding: 13px 18px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.66) !important;
  border-color: rgba(54, 75, 57, 0.14) !important;
  color: rgba(45, 46, 46, 0.78) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-grid {
  row-gap: clamp(22px, 2.4vw, 30px) !important;
  column-gap: clamp(18px, 2.2vw, 28px) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured {
  display: flex !important;
  flex-direction: column !important;
  min-height: 232px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--ff-charcoal) !important;
  border: 1px solid rgba(54, 75, 57, 0.14) !important;
  box-shadow: 0 18px 50px rgba(36, 64, 43, 0.055) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card:hover,
.ffw-site .ffw-section--mockup-routes .ffw-route-card:focus-visible,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured:hover,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured:focus-visible {
  background: #ffffff !important;
  border-color: rgba(229, 107, 90, 0.42) !important;
  box-shadow: 0 24px 70px rgba(36, 64, 43, 0.11) !important;
  transform: translateY(-4px) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card h3,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured h3 {
  color: var(--ff-green) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card p,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured p {
  color: rgba(45, 46, 46, 0.76) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card strong,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured strong {
  color: var(--ff-coral) !important;
  margin-top: auto !important;
  padding-top: 18px !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card__number,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured .ffw-route-card__number {
  color: rgba(54, 75, 57, 0.72) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card__tag,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured .ffw-route-card__tag {
  background: rgba(54, 75, 57, 0.08) !important;
  color: var(--ff-green) !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card::after,
.ffw-site .ffw-section--mockup-routes .ffw-route-card--featured::after {
  background: rgba(54, 75, 57, 0.038) !important;
  opacity: 1 !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card:nth-child(4) {
  grid-column: 2 / span 2 !important;
}

.ffw-site .ffw-section--mockup-routes .ffw-route-card:nth-child(5) {
  grid-column: 4 / span 2 !important;
}

@media (max-width: 1100px) {
  .ffw-site .ffw-section--mockup-routes .ffw-route-card,
  .ffw-site .ffw-section--mockup-routes .ffw-route-card:nth-child(4),
  .ffw-site .ffw-section--mockup-routes .ffw-route-card:nth-child(5) {
    grid-column: auto !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-section--mockup-routes {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .ffw-site .ffw-section--mockup-routes .ffw-section-head--split {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .ffw-site .ffw-section--mockup-routes .ffw-section-head--split > p {
    width: 100% !important;
    border-radius: 20px !important;
  }

  .ffw-site .ffw-section--mockup-routes .ffw-route-card,
  .ffw-site .ffw-section--mockup-routes .ffw-route-card--featured {
    min-height: 0 !important;
  }
}

/* FF-S42.8 / Slice 29: universal lower body form section foundation.
   This makes lower-page forms feel like designed conversion modules instead of
   dropped-in form blocks. It does not change CRM submission logic. */
.ffw-site .ffw-section--lower-form-integrated {
  position: relative !important;
  overflow: visible !important;
  padding-top: clamp(42px, 5.5vw, 78px) !important;
  padding-bottom: clamp(46px, 6vw, 86px) !important;
  background:
    radial-gradient(circle at 18% 16%, rgba(221, 111, 92, 0.08), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(49, 85, 58, 0.10), transparent 36%),
    linear-gradient(180deg, #fbf7ef 0%, #f6f0e6 100%) !important;
}

.ffw-site .ffw-section--lower-form-integrated::before {
  opacity: 0.55 !important;
  filter: blur(2px) !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-shell {
  position: relative !important;
  isolation: isolate !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.78fr) minmax(460px, 1.12fr) !important;
  align-items: start !important;
  gap: clamp(22px, 4vw, 48px) !important;
  width: min(1180px, calc(100% - 40px)) !important;
  padding: clamp(22px, 3.4vw, 44px) !important;
  border: 1px solid rgba(49, 85, 58, 0.12) !important;
  border-radius: clamp(26px, 3vw, 38px) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(250, 247, 239, 0.94)),
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.95), transparent 34%) !important;
  box-shadow: 0 24px 70px rgba(36, 64, 43, 0.075) !important;
  overflow: hidden !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-shell::before {
  content: "";
  position: absolute;
  inset: auto -92px -108px auto;
  width: 290px;
  height: 290px;
  border-radius: 999px;
  background: rgba(49, 85, 58, 0.06);
  pointer-events: none;
  z-index: -1;
}

.ffw-site .ffw-lower-form-support-stack {
  display: grid !important;
  gap: 14px !important;
  min-width: 0 !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-support {
  position: sticky !important;
  top: 100px !important;
  align-self: start !important;
  padding: clamp(22px, 2.8vw, 34px) !important;
  border: 1px solid rgba(49, 85, 58, 0.12) !important;
  border-radius: 26px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 16px 42px rgba(36, 64, 43, 0.055) !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-support h2 {
  max-width: 500px !important;
  margin-bottom: 12px !important;
  color: #24402b !important;
  font-size: clamp(1.75rem, 2.5vw, 2.7rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-support h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: #31553a;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-support p:not(.ffw-eyebrow) {
  max-width: 500px !important;
  color: rgba(45, 46, 46, 0.74) !important;
  font-size: 1rem !important;
  line-height: 1.58 !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-steps-list,
.ffw-site .ffw-section--lower-form-integrated .ffw-check-list {
  margin-top: 18px !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-steps-list li,
.ffw-site .ffw-section--lower-form-integrated .ffw-check-list li {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(49, 85, 58, 0.12) !important;
}

.ffw-site .ffw-lower-form-panel {
  min-width: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower {
  width: 100% !important;
  max-width: 720px !important;
  margin: 0 !important;
  border: 1px solid rgba(49, 85, 58, 0.12) !important;
  border-radius: 28px !important;
  background: #fffefa !important;
  box-shadow: 0 18px 48px rgba(36, 64, 43, 0.075) !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower > .ffw-eyebrow {
  border-color: rgba(49, 85, 58, 0.12) !important;
  background: rgba(247, 250, 241, 0.92) !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower > h2 {
  color: #24402b !important;
  font-size: clamp(1.5rem, 2vw, 2.05rem) !important;
  line-height: 1.12 !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-crm-stepper {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 8px !important;
  padding: 8px !important;
  border: 1px solid rgba(49, 85, 58, 0.12) !important;
  border-radius: 22px !important;
  background: rgba(247, 241, 231, 0.72) !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-crm-stepper__item {
  justify-content: center !important;
  min-width: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-crm-stepper__dot {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
  box-shadow: none !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-crm-stepper__label {
  display: none !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-crm-form-section {
  padding-top: 10px !important;
}

.ffw-site .ffw-section--lower-form-integrated .ffw-final-content-panel {
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  .ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-shell {
    grid-template-columns: 1fr !important;
    padding: clamp(18px, 4vw, 30px) !important;
  }

  .ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-support {
    position: relative !important;
    top: auto !important;
  }

  .ffw-site .ffw-lower-form-panel,
  .ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-section--lower-form-integrated {
    padding-top: 30px !important;
    padding-bottom: 38px !important;
  }

  .ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-shell {
    width: min(100% - 24px, 720px) !important;
    border-radius: 24px !important;
    padding: 14px !important;
    gap: 14px !important;
  }

  .ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-support,
  .ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower {
    border-radius: 20px !important;
    padding: 18px !important;
  }

  .ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-support h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem) !important;
  }

  .ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-crm-stepper {
    gap: 5px !important;
    padding: 6px !important;
    border-radius: 18px !important;
  }

  .ffw-site .ffw-section--lower-form-integrated .ffw-crm-form--placement-lower .ffw-crm-stepper__dot {
    width: 30px !important;
    height: 30px !important;
    flex-basis: 30px !important;
    font-size: 0.9rem !important;
  }
}

/* FF-S42.9 / Slice 30: main conversion lower-form rollout.
   Homepage, contact, consultation and audience lower forms now read as one
   intentional consultation module instead of a standalone form dropped into a section. */
.ffw-site .ffw-section--lower-form-main-conversion {
  padding-top: clamp(56px, 7vw, 104px) !important;
  padding-bottom: clamp(58px, 7vw, 106px) !important;
  background:
    radial-gradient(circle at 10% 12%, rgba(221, 111, 92, 0.07), transparent 28%),
    radial-gradient(circle at 74% 0%, rgba(49, 85, 58, 0.08), transparent 34%),
    linear-gradient(180deg, #fbf7ef 0%, #f7f0e5 100%) !important;
}

.ffw-site .ffw-section--lower-form-main-conversion .ffw-lower-form-shell {
  grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.18fr) !important;
  gap: clamp(22px, 3.4vw, 44px) !important;
  padding: clamp(24px, 3.6vw, 46px) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 252, 246, 0.96)),
    radial-gradient(circle at 88% 16%, rgba(49, 85, 58, 0.07), transparent 34%) !important;
}

.ffw-site .ffw-lower-form-module-head {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.86fr) minmax(360px, 1.14fr) !important;
  align-items: end !important;
  gap: clamp(16px, 3vw, 36px) !important;
  padding-bottom: clamp(8px, 1.4vw, 16px) !important;
  border-bottom: 1px solid rgba(49, 85, 58, 0.10) !important;
}

.ffw-site .ffw-lower-form-module-head .ffw-eyebrow {
  grid-column: 1 / -1 !important;
  margin-bottom: 0 !important;
}

.ffw-site .ffw-lower-form-module-head h2 {
  max-width: 620px !important;
  margin: 0 !important;
  color: #24402b !important;
  font-size: clamp(2rem, 3.15vw, 3.45rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.048em !important;
}

.ffw-site .ffw-lower-form-module-head p:not(.ffw-eyebrow) {
  max-width: 620px !important;
  margin: 0 !important;
  color: rgba(45, 46, 46, 0.72) !important;
  font-size: clamp(1rem, 1.3vw, 1.18rem) !important;
  line-height: 1.58 !important;
  font-weight: 650 !important;
}

.ffw-site .ffw-section--lower-form-main-conversion .ffw-lower-form-support {
  background: linear-gradient(180deg, rgba(250, 247, 239, 0.96), rgba(255, 255, 255, 0.88)) !important;
  box-shadow: none !important;
}

.ffw-site .ffw-section--lower-form-main-conversion .ffw-lower-form-support h2 {
  font-size: clamp(1.6rem, 2.1vw, 2.4rem) !important;
}

.ffw-site .ffw-lower-form-note {
  margin-top: 18px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(49, 85, 58, 0.12) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.74) !important;
  color: rgba(36, 64, 43, 0.84) !important;
  font-size: 0.94rem !important;
  font-weight: 720 !important;
  line-height: 1.45 !important;
}

.ffw-site .ffw-section--lower-form-main-conversion .ffw-lower-form-panel {
  align-self: stretch !important;
}

.ffw-site .ffw-section--lower-form-main-conversion .ffw-crm-form--placement-lower {
  max-width: 760px !important;
  min-height: 100% !important;
}

.ffw-site .ffw-section--lower-form-main-conversion .ffw-crm-form--placement-lower > h2 {
  font-size: clamp(1.45rem, 1.9vw, 2rem) !important;
}

@media (max-width: 980px) {
  .ffw-site .ffw-lower-form-module-head {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 12px !important;
  }

  .ffw-site .ffw-section--lower-form-main-conversion .ffw-lower-form-shell {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-section--lower-form-main-conversion {
    padding-top: 34px !important;
    padding-bottom: 44px !important;
  }

  .ffw-site .ffw-lower-form-module-head h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem) !important;
  }

  .ffw-site .ffw-lower-form-module-head p:not(.ffw-eyebrow) {
    font-size: 0.98rem !important;
    line-height: 1.52 !important;
  }

  .ffw-site .ffw-lower-form-note {
    padding: 12px 14px !important;
    border-radius: 16px !important;
    font-size: 0.9rem !important;
  }
}

/* FF-S43.0 / Slice 31: service, pricing and referral lower-form rollout.
   Extends the integrated body-form module to service, package and referral pages
   without touching CRM submission or hero-form logic. */
.ffw-site .ffw-section--lower-form-service-pricing,
.ffw-site .ffw-section--lower-form-referral-rollout {
  padding-top: clamp(56px, 7vw, 102px) !important;
  padding-bottom: clamp(58px, 7vw, 104px) !important;
  background:
    radial-gradient(circle at 88% 10%, rgba(221, 111, 92, 0.07), transparent 30%),
    radial-gradient(circle at 16% 4%, rgba(49, 85, 58, 0.085), transparent 36%),
    linear-gradient(180deg, #fbf7ef 0%, #f7f0e5 100%) !important;
}

.ffw-site .ffw-section--lower-form-service-pricing .ffw-lower-form-shell,
.ffw-site .ffw-section--lower-form-referral-rollout .ffw-lower-form-shell {
  grid-template-columns: minmax(280px, 0.74fr) minmax(500px, 1.16fr) !important;
  gap: clamp(22px, 3.4vw, 44px) !important;
  padding: clamp(24px, 3.6vw, 46px) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(255, 252, 246, 0.96)),
    radial-gradient(circle at 86% 18%, rgba(221, 111, 92, 0.055), transparent 32%) !important;
}

.ffw-site .ffw-section--lower-form-service-pricing .ffw-lower-form-support,
.ffw-site .ffw-section--lower-form-referral-rollout .ffw-lower-form-support {
  background: linear-gradient(180deg, rgba(250, 247, 239, 0.96), rgba(255, 255, 255, 0.9)) !important;
  box-shadow: none !important;
}

.ffw-site .ffw-section--lower-form-service-pricing .ffw-lower-form-panel,
.ffw-site .ffw-section--lower-form-referral-rollout .ffw-lower-form-panel {
  align-self: stretch !important;
}

.ffw-site .ffw-section--lower-form-service-pricing .ffw-crm-form--placement-lower,
.ffw-site .ffw-section--lower-form-referral-rollout .ffw-crm-form--placement-lower {
  max-width: 760px !important;
  min-height: 100% !important;
}

.ffw-site .ffw-section--lower-form-service-pricing .ffw-crm-form--placement-lower > h2,
.ffw-site .ffw-section--lower-form-referral-rollout .ffw-crm-form--placement-lower > h2 {
  font-size: clamp(1.45rem, 1.9vw, 2rem) !important;
}

.ffw-site .ffw-section--lower-form-referral-rollout .ffw-source-summary {
  margin-top: 18px !important;
  margin-bottom: 4px !important;
}

@media (max-width: 980px) {
  .ffw-site .ffw-section--lower-form-service-pricing .ffw-lower-form-shell,
  .ffw-site .ffw-section--lower-form-referral-rollout .ffw-lower-form-shell {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-section--lower-form-service-pricing,
  .ffw-site .ffw-section--lower-form-referral-rollout {
    padding-top: 34px !important;
    padding-bottom: 44px !important;
  }
}

/* Slice 32 — Pricing package card polish */
.ffw-site .ffw-section--pricing-polished {
  padding-top: clamp(72px, 7vw, 104px) !important;
  padding-bottom: clamp(72px, 7vw, 104px) !important;
}

.ffw-site .ffw-section-head--pricing-polished {
  display: grid !important;
  gap: 12px !important;
  max-width: 790px !important;
  margin: 0 0 34px !important;
}

.ffw-site .ffw-section-head--pricing-polished h2 {
  max-width: 760px !important;
  margin: 0 !important;
}

.ffw-site .ffw-section-head--pricing-polished > p:not(.ffw-eyebrow) {
  max-width: 720px !important;
  margin: 0 !important;
  color: rgba(45, 46, 46, 0.74) !important;
  font-size: clamp(1.02rem, 1.3vw, 1.16rem) !important;
  line-height: 1.62 !important;
  font-weight: 650 !important;
}

.ffw-site .ffw-home-price-grid--polished {
  align-items: stretch !important;
  gap: clamp(18px, 2vw, 26px) !important;
}

.ffw-site .ffw-home-price-card--polished {
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  min-height: auto !important;
  padding: clamp(28px, 2.5vw, 36px) !important;
  border: 1px solid rgba(30, 66, 45, 0.12) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 100% 100%, rgba(30, 66, 45, 0.045) 0 72px, transparent 73px),
    #fff !important;
  box-shadow: 0 20px 48px rgba(30, 66, 45, 0.06) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease !important;
}

.ffw-site .ffw-home-price-card--polished:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(224, 104, 84, 0.32) !important;
  box-shadow: 0 26px 60px rgba(30, 66, 45, 0.09) !important;
}

.ffw-site .ffw-home-price-card__topline {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  min-height: 30px !important;
}

.ffw-site .ffw-home-price-card__label,
.ffw-site .ffw-home-price-card__badge,
.ffw-site .ffw-home-price-card__includes {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  border-radius: 999px !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
}

.ffw-site .ffw-home-price-card__label {
  margin: 0 !important;
  padding: 8px 11px !important;
  color: var(--ff-green) !important;
  background: rgba(30, 66, 45, 0.075) !important;
}

.ffw-site .ffw-home-price-card__badge {
  padding: 8px 10px !important;
  color: #fff !important;
  background: var(--ff-coral) !important;
  box-shadow: 0 12px 26px rgba(224, 104, 84, 0.18) !important;
}

.ffw-site .ffw-home-price-card--polished h3 {
  margin: 3px 0 0 !important;
  color: var(--ff-green) !important;
  font-size: clamp(1.44rem, 1.75vw, 1.86rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
}

.ffw-site .ffw-home-price-card--polished .ffw-home-price-card__price {
  margin: 0 !important;
  color: rgba(30, 66, 45, 0.78) !important;
  font-size: 1rem !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  font-weight: 900 !important;
}

.ffw-site .ffw-home-price-card__text {
  margin: 0 !important;
  color: rgba(45, 46, 46, 0.72) !important;
  font-size: 0.98rem !important;
  line-height: 1.58 !important;
}

.ffw-site .ffw-home-price-card__includes {
  margin-top: 4px !important;
  padding: 0 !important;
  color: rgba(30, 66, 45, 0.68) !important;
  background: transparent !important;
}

.ffw-site .ffw-home-price-card--polished .ffw-home-price-card__list {
  gap: 9px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ffw-site .ffw-home-price-card--polished .ffw-home-price-card__list li {
  position: relative !important;
  display: block !important;
  padding-left: 24px !important;
  color: rgba(45, 46, 46, 0.76) !important;
  font-size: 0.95rem !important;
  line-height: 1.42 !important;
}

.ffw-site .ffw-home-price-card--polished .ffw-home-price-card__list li::before {
  content: "" !important;
  position: absolute !important;
  top: 0.52em !important;
  left: 1px !important;
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background: var(--ff-coral) !important;
  box-shadow: 0 0 0 5px rgba(224, 104, 84, 0.12) !important;
}

.ffw-site .ffw-home-price-card__cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  width: fit-content !important;
  margin-top: auto !important;
  color: var(--ff-coral) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.ffw-site .ffw-home-price-card__cta:hover {
  color: var(--ff-green) !important;
}

.ffw-site .ffw-home-pricing-reassurance {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px 18px !important;
  margin-top: 24px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(30, 66, 45, 0.10) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.64) !important;
  box-shadow: 0 16px 38px rgba(30, 66, 45, 0.045) !important;
}

.ffw-site .ffw-home-pricing-reassurance strong {
  color: var(--ff-green) !important;
  font-weight: 900 !important;
}

.ffw-site .ffw-home-pricing-reassurance span {
  color: rgba(45, 46, 46, 0.72) !important;
  font-weight: 650 !important;
  line-height: 1.46 !important;
}

.ffw-site .ffw-home-pricing-reassurance a {
  color: var(--ff-coral) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

@media (max-width: 980px) {
  .ffw-site .ffw-home-price-grid--polished {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-home-pricing-reassurance {
    grid-template-columns: 1fr !important;
  }

  .ffw-site .ffw-home-pricing-reassurance a {
    white-space: normal !important;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-section--pricing-polished {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .ffw-site .ffw-section-head--pricing-polished {
    margin-bottom: 22px !important;
  }

  .ffw-site .ffw-home-price-card--polished {
    padding: 24px 22px !important;
    border-radius: 20px !important;
  }

  .ffw-site .ffw-home-price-card__topline {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .ffw-site .ffw-home-pricing-reassurance {
    padding: 17px !important;
    border-radius: 16px !important;
  }
}

/* Slice 33: Homepage How It Works section polish */
.ffw-site .ffw-section--home-process-polished {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 112px) !important;
  padding-bottom: clamp(78px, 8vw, 116px) !important;
  background:
    radial-gradient(circle at 14% 20%, rgba(231, 112, 94, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(250, 246, 237, 0.72), rgba(250, 246, 237, 0.96));
}

.ffw-site .ffw-section--home-process-polished::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: rgba(31, 65, 45, 0.08);
  pointer-events: none;
}

.ffw-site .ffw-process-head {
  margin-bottom: clamp(28px, 4.2vw, 52px) !important;
  align-items: end !important;
}

.ffw-site .ffw-process-head > p {
  max-width: 570px !important;
  margin: 0 !important;
  padding: 18px 22px;
  border: 1px solid rgba(31, 65, 45, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.70);
  color: rgba(45, 46, 46, 0.74) !important;
  font-size: clamp(1rem, 1.35vw, 1.12rem) !important;
  line-height: 1.45 !important;
  font-weight: 780 !important;
  box-shadow: 0 16px 42px rgba(31, 65, 45, 0.05);
}

.ffw-site .ffw-process--connected {
  position: relative;
  gap: 28px !important;
  align-items: stretch;
}

.ffw-site .ffw-process--connected::before {
  content: "";
  position: absolute;
  left: calc(16.666% + 36px);
  right: calc(16.666% + 36px);
  top: 52px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 65, 45, 0.22), rgba(231, 112, 94, 0.24), rgba(31, 65, 45, 0.16));
  pointer-events: none;
  z-index: 0;
}

.ffw-site .ffw-process--connected .ffw-process-card {
  position: relative;
  z-index: 1;
  min-height: 250px !important;
  padding: clamp(28px, 3vw, 38px) !important;
  border: 1px solid rgba(31, 65, 45, 0.10) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(231, 112, 94, 0.10), transparent 28%),
    #fff !important;
  box-shadow: 0 22px 70px rgba(31, 65, 45, 0.07) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ffw-site .ffw-process--connected .ffw-process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 65, 45, 0.18) !important;
  box-shadow: 0 28px 76px rgba(31, 65, 45, 0.10) !important;
}

.ffw-site .ffw-process-card__number,
.ffw-site .ffw-process--connected article > span {
  width: 56px !important;
  height: 56px !important;
  margin: 0 0 32px !important;
  border: 8px solid rgba(255, 255, 255, 0.88);
  background: var(--ff-green) !important;
  color: var(--ff-white) !important;
  box-shadow: 0 0 0 1px rgba(31, 65, 45, 0.10), 0 16px 36px rgba(31, 65, 45, 0.14);
  font-size: 1.02rem;
}

.ffw-site .ffw-process-card__copy h3,
.ffw-site .ffw-process--connected h3 {
  max-width: 320px;
  margin: 0 0 14px !important;
  color: var(--ff-ink) !important;
  font-size: clamp(1.45rem, 2vw, 1.82rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}

.ffw-site .ffw-process-card__copy p,
.ffw-site .ffw-process--connected p {
  max-width: 440px;
  margin: 0 !important;
  color: rgba(45, 46, 46, 0.72) !important;
  font-size: 1rem !important;
  line-height: 1.58 !important;
  font-weight: 650 !important;
}

.ffw-site .ffw-process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(31, 65, 45, 0.10);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(31, 65, 45, 0.06);
}

.ffw-site .ffw-process-cta p {
  display: grid;
  gap: 3px;
  margin: 0 !important;
  color: rgba(45, 46, 46, 0.74);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.ffw-site .ffw-process-cta strong {
  color: var(--ff-green);
  font-size: 1.06rem;
  font-weight: 900;
}

.ffw-site .ffw-process-cta span {
  color: rgba(45, 46, 46, 0.70);
}

.ffw-site .ffw-process-cta .ffw-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .ffw-site .ffw-process-head {
    align-items: start !important;
  }

  .ffw-site .ffw-process-head > p {
    border-radius: 24px;
  }

  .ffw-site .ffw-process--connected {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  .ffw-site .ffw-process--connected::before {
    left: 42px;
    right: auto;
    top: 64px;
    bottom: 64px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(31, 65, 45, 0.22), rgba(231, 112, 94, 0.24), rgba(31, 65, 45, 0.16));
  }

  .ffw-site .ffw-process--connected .ffw-process-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    min-height: 0 !important;
    padding: 24px 22px !important;
  }

  .ffw-site .ffw-process-card__number,
  .ffw-site .ffw-process--connected article > span {
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    border-width: 7px;
  }

  .ffw-site .ffw-process-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .ffw-site .ffw-process-cta .ffw-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .ffw-site .ffw-section--home-process-polished {
    padding-top: 58px !important;
    padding-bottom: 66px !important;
  }

  .ffw-site .ffw-process-head > p {
    padding: 16px 18px;
    border-radius: 20px;
    font-size: 0.98rem !important;
  }

  .ffw-site .ffw-process--connected::before {
    left: 39px;
  }

  .ffw-site .ffw-process-card__copy h3,
  .ffw-site .ffw-process--connected h3 {
    font-size: clamp(1.34rem, 6vw, 1.58rem) !important;
  }

  .ffw-site .ffw-process-card__copy p,
  .ffw-site .ffw-process--connected p {
    font-size: 0.96rem !important;
  }

  .ffw-site .ffw-process-cta {
    margin-top: 22px;
    padding: 20px;
    border-radius: 22px;
  }
}


/* Slice 34 — footer legal and EKN branding polish */
.ffw-site .ffw-footer__cta,
.ffw-site .ffw-footer .ffw-footer__cta {
  width: fit-content !important;
  min-height: 46px !important;
  padding: 12px 18px !important;
  background: #ffffff !important;
  color: var(--ff-green) !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.10) !important;
}

.ffw-site .ffw-footer__cta:hover,
.ffw-site .ffw-footer__cta:focus-visible {
  background: #f7f1e6 !important;
  color: var(--ff-green) !important;
  text-decoration: none !important;
}

.ffw-site .ffw-footer__bottom {
  align-items: flex-start !important;
}

.ffw-site .ffw-footer__copyright {
  max-width: 320px !important;
}

.ffw-site .ffw-footer__legal-meta {
  display: grid !important;
  gap: 6px !important;
  max-width: 720px !important;
  margin-left: auto !important;
  text-align: right !important;
}

.ffw-site .ffw-footer__legal-meta p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
}

.ffw-site .ffw-footer__credit a {
  color: #ffffff !important;
  font-weight: 850 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
}

.ffw-site .ffw-footer__credit a:hover,
.ffw-site .ffw-footer__credit a:focus-visible {
  color: #f7f1e6 !important;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-footer__top {
    grid-template-columns: minmax(280px, 1fr) repeat(2, minmax(180px, 0.7fr)) !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-footer__cta,
  .ffw-site .ffw-footer .ffw-footer__cta {
    width: 100% !important;
    justify-content: center !important;
  }

  .ffw-site .ffw-footer__legal-meta {
    margin-left: 0 !important;
    max-width: none !important;
    text-align: left !important;
  }

  .ffw-site .ffw-footer__copyright {
    max-width: none !important;
  }
}


/* Slice 35 — footer credit alignment and legal line polish */
.ffw-site .ffw-footer__bottom-left {
  display: grid !important;
  gap: 8px !important;
  max-width: 460px !important;
}

.ffw-site .ffw-footer__bottom-left p {
  margin: 0 !important;
}

.ffw-site .ffw-footer__credit {
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
}

.ffw-site .ffw-footer__legal-meta {
  max-width: 660px !important;
  padding-right: 64px !important;
}

.ffw-site .ffw-footer__legal-meta p {
  text-wrap: pretty;
}

.ffw-site .ffw-footer__bottom {
  gap: 28px !important;
}

.ffw-site .ffw-footer__trust {
  align-items: center !important;
}

@media (max-width: 900px) {
  .ffw-site .ffw-footer__bottom-left,
  .ffw-site .ffw-footer__legal-meta {
    max-width: none !important;
  }

  .ffw-site .ffw-footer__legal-meta {
    padding-right: 0 !important;
  }
}

@media (max-width: 760px) {
  .ffw-site .ffw-footer__bottom-left {
    gap: 6px !important;
  }

  .ffw-site .ffw-footer__credit {
    font-size: 0.86rem !important;
  }
}


/* FF-S52 — mobile footer containment and stacking fix */
.ffw-site .ffw-footer,
.ffw-site .ffw-footer * {
  box-sizing: border-box;
}

.ffw-site .ffw-footer {
  overflow-x: clip !important;
}

.ffw-site .ffw-footer__top,
.ffw-site .ffw-footer__brand,
.ffw-site .ffw-footer__column,
.ffw-site .ffw-footer__bottom,
.ffw-site .ffw-footer__bottom-left,
.ffw-site .ffw-footer__legal-meta {
  min-width: 0 !important;
}

.ffw-site .ffw-footer__column a,
.ffw-site .ffw-footer__brand p,
.ffw-site .ffw-footer__legal-meta p,
.ffw-site .ffw-footer__credit,
.ffw-site .ffw-footer__copyright {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 900px) {
  .ffw-site .ffw-footer {
    padding: 44px 0 24px !important;
  }

  .ffw-site .ffw-footer__top {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;
    width: 100% !important;
  }

  .ffw-site .ffw-footer__brand {
    grid-column: auto !important;
    gap: 16px !important;
    max-width: none !important;
  }

  .ffw-site .ffw-footer__brand img {
    width: min(245px, 78vw) !important;
    max-width: 100% !important;
    max-height: 54px !important;
  }

  .ffw-site .ffw-footer__brand p {
    max-width: none !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  .ffw-site .ffw-footer__cta,
  .ffw-site .ffw-footer .ffw-footer__cta {
    display: inline-flex !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .ffw-site .ffw-footer__column h3 {
    margin-bottom: 12px !important;
    font-size: clamp(1.25rem, 6vw, 1.55rem) !important;
    line-height: 1.05 !important;
  }

  .ffw-site .ffw-footer__column ul {
    gap: 8px !important;
  }

  .ffw-site .ffw-footer__column a {
    display: inline-block !important;
    max-width: 100% !important;
    font-size: 0.98rem !important;
    line-height: 1.35 !important;
  }

  .ffw-site .ffw-footer__trust {
    grid-template-columns: minmax(0, 1fr) !important;
    margin-top: 28px !important;
  }

  .ffw-site .ffw-footer__bottom {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    text-align: left !important;
  }

  .ffw-site .ffw-footer__legal-meta {
    margin-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
}

@media (max-width: 480px) {
  .ffw-site .ffw-footer__top {
    gap: 24px !important;
  }

  .ffw-site .ffw-footer__column h3 {
    font-size: clamp(1.18rem, 6.8vw, 1.42rem) !important;
  }

  .ffw-site .ffw-footer__column a {
    font-size: 0.95rem !important;
  }
}

/* v0.47.1 — homepage proof-panel brand contrast containment.
   The Brand Guide card reset made this intentionally dark panel white while
   retaining its light text. Keep the correction scoped to this homepage panel. */
.ffw-site .ffw-section--home-proof .ffw-proof-panel {
  border-color: var(--ff-forest) !important;
  background-color: var(--ff-forest) !important;
}

.ffw-site .ffw-section--home-proof .ffw-proof-panel h2,
.ffw-site .ffw-section--home-proof .ffw-proof-panel h3 {
  color: var(--ff-white) !important;
}

.ffw-article-status-notice {
  margin: 0 0 2rem;
  padding: 1.25rem;
  border-left: 4px solid var(--ffw-accent, #b47a3c);
  border-radius: 0.75rem;
  background: var(--ffw-mist, #f4f5f0);
}

.ffw-article-status-notice p {
  margin-top: 0;
}

.ffw-site--404 .ffw-page-body--404 {
  background: var(--ff-ivory, #f7f3ea);
}

.ffw-site--404 .ffw-404-hero {
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
  margin-inline: auto;
}

.ffw-team-directory .ffw-team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--ff-radius-sm, 14px);
}

.ffw-team-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.ffw-team-profile-hero__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--ff-radius-md, 22px);
}

@media (max-width: 760px) {
  .ffw-team-profile-hero {
    grid-template-columns: 1fr;
  }
}

.ffw-guide-search-intro .ffw-container,
.ffw-blog-search-intro .ffw-container,
.ffw-guide-filters,
.ffw-blog-filters {
  display: grid;
  gap: 0.75rem;
}

.ffw-guide-search-intro input,
.ffw-blog-search-intro input,
.ffw-guide-filters input,
.ffw-guide-filters select,
.ffw-blog-filters input,
.ffw-blog-filters select {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--ff-line, #d3cbbf);
  border-radius: 0.65rem;
  background: var(--ff-white, #fff);
  color: var(--ff-charcoal, #2d2e2e);
  font: inherit;
}

.ffw-guide-filters,
.ffw-blog-filters {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.ffw-blog-filters {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ffw-guide-filters label,
.ffw-blog-filters label {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .ffw-guide-filters,
  .ffw-blog-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ffw-guide-filters,
  .ffw-blog-filters {
    grid-template-columns: 1fr;
  }
}

.ffw-site .ffw-crm-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.ffw-site .ffw-crm-checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 70, 58, 0.18);
  border-radius: 12px;
  background: #fff;
}

.ffw-site .ffw-crm-checkbox-option input {
  flex: 0 0 auto;
  margin-top: 0.2em;
}

.ffw-site [data-ffw-lower-form-page="lets-talk"] .ffw-lower-form-panel {
  grid-column: 1 / -1;
}

@media (max-width: 680px) {
  .ffw-site .ffw-crm-checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* Approved website content — header utilities and expanded footer navigation. */
.ffw-site .ffw-header__actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.ffw-site .ffw-header-login,
.ffw-site .ffw-mobile-menu-login {
  color: var(--ff-forest) !important;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none !important;
  white-space: nowrap;
}

.ffw-site .ffw-header-login:hover,
.ffw-site .ffw-header-login:focus-visible,
.ffw-site .ffw-mobile-menu-login:hover,
.ffw-site .ffw-mobile-menu-login:focus-visible {
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.ffw-site .ffw-mobile-menu-utilities {
  display: none;
}

.ffw-site .ffw-footer__top {
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(145px, 0.7fr)) !important;
  gap: clamp(28px, 4vw, 52px) !important;
}

.ffw-site .ffw-footer__brand {
  grid-row: span 2;
}

.ffw-site .ffw-footer__brand p + p {
  margin-top: -10px;
}

.ffw-site .ffw-manage-cookie-preferences {
  cursor: pointer;
}

@media (max-width: 1180px) {
  .ffw-site .ffw-footer__top {
    grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(170px, 0.7fr)) !important;
  }
}

@media (max-width: 1080px) {
  .ffw-site .ffw-header__actions {
    display: none !important;
  }

  .ffw-site .ffw-mobile-menu-utilities {
    display: grid;
    gap: 12px;
    text-align: center;
  }

  .ffw-site .ffw-mobile-menu-login {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .ffw-site .ffw-footer__brand {
    grid-row: auto;
  }
}

.ffw-site .ffw-approved-section {
  max-width: 1120px;
}

.ffw-site .ffw-approved-section > h2 {
  max-width: 820px;
}

.ffw-site .ffw-approved-section > p:not(.ffw-eyebrow):not(.ffw-approved-section__statement):not(.ffw-approved-section__closing) {
  max-width: 820px;
}

.ffw-site .ffw-approved-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.ffw-site .ffw-approved-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--ff-stone);
  border-radius: 18px;
  background: var(--ff-white);
}

.ffw-site .ffw-approved-card h3 {
  margin-top: 0;
}

.ffw-site .ffw-approved-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 8px;
  color: var(--ff-forest);
  font-weight: 850;
  text-decoration: none;
}

.ffw-site .ffw-approved-section__statement,
.ffw-site .ffw-approved-section__closing {
  max-width: 820px;
  margin-top: 24px;
  color: var(--ff-forest);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  font-weight: 850;
}

.ffw-site .ffw-moretrees-widget-wrap {
  max-width: 820px;
  margin-top: 28px;
}

@media (max-width: 760px) {
  .ffw-site .ffw-approved-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.ffw-site .ffw-section--mtd-checker {
  background: var(--ff-ivory);
}

.ffw-site .ffw-mtd-checker {
  max-width: 980px;
}

.ffw-site .ffw-mtd-checker__form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--ff-stone);
  border-radius: 20px;
  background: var(--ff-white);
}

.ffw-site .ffw-mtd-checker__form label {
  display: grid;
  gap: 8px;
  color: var(--ff-charcoal);
  font-weight: 800;
}

.ffw-site .ffw-vat-checker__exemption {
  display: grid;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.ffw-site .ffw-vat-checker__exemption legend {
  margin-bottom: 8px;
  color: var(--ff-charcoal);
  font-weight: 800;
}

.ffw-site .ffw-vat-checker__exemption .ffw-approved-card {
  margin: 0;
}

.ffw-site .ffw-vat-checker__exemption .ffw-approved-card ul {
  margin: 0 0 16px;
}

.ffw-site .ffw-mtd-checker__form input,
.ffw-site .ffw-mtd-checker__form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--ff-stone);
  border-radius: 10px;
  background: var(--ff-white);
  color: var(--ff-charcoal);
  font: inherit;
}

.ffw-site .ffw-mtd-checker__amounts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ffw-site .ffw-mtd-checker__result {
  margin-top: 20px;
  padding: 22px;
  border-left: 5px solid var(--ff-forest);
  border-radius: 12px;
  background: var(--ff-mist);
}

.ffw-site .ffw-mtd-checker__result h3 {
  margin-top: 0;
}

.ffw-site .ffw-mtd-checker__disclaimer {
  max-width: 860px;
  margin-top: 18px;
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .ffw-site .ffw-mtd-checker__amounts {
    grid-template-columns: minmax(0, 1fr);
  }
}

.ffw-site .ffw-section--home-proof .ffw-proof-panel__copy > p:not(.ffw-eyebrow) {
  color: rgba(255, 255, 255, 0.86) !important;
}

.ffw-site .ffw-section--home-proof .ffw-proof-panel .ffw-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: var(--ff-earth) !important;
  color: var(--ff-white) !important;
}

.ffw-site .ffw-section--home-proof .ffw-proof-panel__items article {
  border-color: rgba(255, 255, 255, 0.24) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}

.ffw-site .ffw-section--home-proof .ffw-proof-panel__items article p {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Homepage brand-copy alignment — v0.48.0 */
.ffw-site .ffw-brand {
    width: clamp(270px, 27vw, 345px) !important;
    flex: 0 0 auto !important;
}
.ffw-site .ffw-brand img {
    width: 100% !important;
    height: auto !important;
}
.ffw-home-hero__brand-title {
    max-width: 12ch;
    font-size: clamp(3.3rem, 5.4vw, 5.75rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
}
.ffw-home-hero__brand-title span,
.ffw-home-services-intro h2 span,
.ffw-section--mockup-routes .ffw-section-head h2 span,
.ffw-proof-panel__copy h2 span,
.ffw-section-head--pricing-polished h2 span {
    color: var(--ffw-forest, #163d2d);
}
.ffw-home-services-intro__copy {
    max-width: 34rem;
    margin-top: 1.25rem;
    color: var(--ffw-ink-soft, #53645c);
}
.ffw-route-card--featured {
    background: var(--ffw-forest, #163d2d);
    color: var(--ffw-ivory, #f6f1e7);
}
.ffw-route-card--featured h3,
.ffw-route-card--featured p,
.ffw-route-card--featured strong,
.ffw-route-card--featured .ffw-route-card__number,
.ffw-route-card--featured .ffw-route-card__tag {
    color: inherit;
}
.ffw-footer__brand .ffw-footer__wordmark {
    display: block;
    width: min(100%, 250px);
    height: auto;
    filter: brightness(0) saturate(100%) invert(96%) sepia(12%) saturate(405%) hue-rotate(341deg) brightness(102%) contrast(93%);
}
@media (max-width: 720px) {
    .ffw-site .ffw-brand {
        width: min(270px, 70vw) !important;
    }
    .ffw-home-hero__brand-title {
        font-size: clamp(3rem, 13vw, 4.5rem);
    }
}

/* v0.48.5 release override — keep this as the final public style layer. */
.ffw-site,
.ffw-site[data-ffw-page] {
  --ff-forest: #364b39 !important;
  --ff-earth: #66513b !important;
  --ff-stone: #d3cbbf !important;
  --ff-ivory: #f7f3ea !important;
  --ff-charcoal: #2d2e2e !important;
  --ff-green: #364b39 !important;
  --ff-coral: #66513b !important;
  --ff-coral-dark: #66513b !important;
  --ffw-forest: #364b39 !important;
  --ffw-coral: #66513b !important;
  --ffw-accent: #66513b !important;
  --ffw-ivory: #f7f3ea !important;
  --ffw-ink: #2d2e2e !important;
  --ff-s28d-surface: #f7f3ea !important;
  --ff-s28d-cream: #f7f3ea !important;
  --ff-s28d-card: #ffffff !important;
  --ff-s28d-line: #d3cbbf !important;
  --ff-font-heading: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  --ff-font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  --ff-font-label: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  color: #2d2e2e !important;
}

.ffw-site,
.ffw-site p,
.ffw-site a,
.ffw-site input,
.ffw-site select,
.ffw-site textarea,
.ffw-site button {
  font-family: var(--ff-font-body) !important;
}

.ffw-site h1,
.ffw-site h2,
.ffw-site h3,
.ffw-site h4,
.ffw-site h5,
.ffw-site h6 {
  font-family: var(--ff-font-heading) !important;
}

.ffw-site label,
.ffw-site small,
.ffw-site .ffw-eyebrow,
.ffw-site .ffw-kicker,
.ffw-site [class*="__tag"],
.ffw-site [class*="__label"],
.ffw-site [class*="__badge"],
.ffw-site [class*="__price"],
.ffw-site .ffw-crm-stepper {
  font-family: var(--ff-font-label) !important;
}

.ffw-site .ffw-brand {
  width: clamp(210px, 19vw, 278px) !important;
  min-width: 0 !important;
}

.ffw-site .ffw-brand img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 46px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.ffw-site .ffw-section {
  padding-top: clamp(78px, 8vw, 118px) !important;
  padding-bottom: clamp(78px, 8vw, 118px) !important;
}

.ffw-site .ffw-section-head > h2,
.ffw-site .ffw-approved-section > h2 {
  max-width: 900px !important;
  margin-bottom: 0 !important;
  line-height: 1.12 !important;
}

.ffw-site .ffw-section-head > p:not(.ffw-eyebrow),
.ffw-site .ffw-approved-section > p:not(.ffw-eyebrow):not(.ffw-approved-section__statement):not(.ffw-approved-section__closing) {
  max-width: 760px !important;
  margin-top: 22px !important;
  line-height: 1.72 !important;
}

.ffw-site .ffw-card-grid,
.ffw-site .ffw-approved-card-grid {
  gap: clamp(22px, 2.5vw, 32px) !important;
  margin-top: clamp(36px, 4vw, 52px) !important;
}

.ffw-site .ffw-card-grid--home-audience {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.ffw-site .ffw-card-grid--home-service {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ffw-site .ffw-approved-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.ffw-site .ffw-card,
.ffw-site .ffw-approved-card,
.ffw-site .ffw-route-card,
.ffw-site .ffw-resource-card,
.ffw-site .ffw-copy-card,
.ffw-site .ffw-list-panel,
.ffw-site .ffw-proof-panel,
.ffw-site .ffw-home-price-card,
.ffw-site .ffw-price-card,
.ffw-site .ffw-legal-card,
.ffw-site .ffw-legal-summary,
.ffw-site .ffw-home-scene,
.ffw-site .ffw-interior-scene,
.ffw-site .ffw-form,
.ffw-site .ffw-form-shell,
.ffw-site .ffw-hero-form-panel,
.ffw-site .ffw-lower-form-panel,
.ffw-site .ffw-lower-form-shell,
.ffw-site .ffw-home-scene--quick-start {
  border-color: var(--ff-stone) !important;
  border-radius: 20px !important;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.ffw-site .ffw-card,
.ffw-site .ffw-approved-card {
  min-height: 0 !important;
  padding: clamp(28px, 3vw, 38px) !important;
}

.ffw-site .ffw-card h3,
.ffw-site .ffw-approved-card h3 {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  color: var(--ff-forest) !important;
}

.ffw-site .ffw-card h3 + p,
.ffw-site .ffw-approved-card h3 + p {
  margin-top: 16px !important;
  line-height: 1.7 !important;
}

.ffw-site .ffw-card > a,
.ffw-site .ffw-approved-card > a {
  margin-top: 24px !important;
  color: var(--ff-earth) !important;
}

.ffw-site .ffw-card__icon {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: var(--ff-earth) !important;
  box-shadow: none !important;
  transform: rotate(45deg) !important;
}

.ffw-site .ffw-card__icon::before,
.ffw-site .ffw-card__icon::after,
.ffw-site .ffw-card::after,
.ffw-site .ffw-route-card::after,
.ffw-site .ffw-audience-intro__copy::after,
.ffw-site .ffw-service-intro__copy::after,
.ffw-site .ffw-home-scene--form::before,
.ffw-site .ffw-home-scene--form::after,
.ffw-site .ffw-home-scene--quick-start::before,
.ffw-site .ffw-home-scene--quick-start::after,
.ffw-site .ffw-hero-form-panel::before,
.ffw-site .ffw-hero-form-panel::after,
.ffw-site .ffw-section--lower-form-integrated::before,
.ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-shell::before,
.ffw-site .ffw-section--lower-form-integrated .ffw-lower-form-support h2::after,
.ffw-site .ffw-section--home-process-polished::before {
  display: none !important;
  content: none !important;
}

.ffw-site .ffw-btn,
.ffw-site .ffw-header-cta,
.ffw-site .ffw-mobile-menu-cta,
.ffw-site .ffw-footer__cta,
.ffw-site .ffw-crm-step-next,
.ffw-site .ffw-crm-step-submit,
.ffw-site button[type="submit"] {
  border-radius: 999px !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.ffw-site .ffw-btn--primary,
.ffw-site .ffw-btn--accent,
.ffw-site .ffw-header-cta,
.ffw-site .ffw-mobile-menu-cta,
.ffw-site .ffw-crm-step-next,
.ffw-site .ffw-crm-step-submit,
.ffw-site button[type="submit"] {
  border-color: var(--ff-forest) !important;
  background-color: var(--ff-forest) !important;
  color: var(--ff-ivory) !important;
}

.ffw-site .ffw-btn--primary:hover,
.ffw-site .ffw-btn--primary:focus-visible,
.ffw-site .ffw-btn--accent:hover,
.ffw-site .ffw-btn--accent:focus-visible,
.ffw-site .ffw-header-cta:hover,
.ffw-site .ffw-header-cta:focus-visible,
.ffw-site .ffw-mobile-menu-cta:hover,
.ffw-site .ffw-mobile-menu-cta:focus-visible,
.ffw-site .ffw-crm-step-next:hover,
.ffw-site .ffw-crm-step-next:focus-visible,
.ffw-site .ffw-crm-step-submit:hover,
.ffw-site .ffw-crm-step-submit:focus-visible,
.ffw-site button[type="submit"]:hover,
.ffw-site button[type="submit"]:focus-visible {
  border-color: var(--ff-earth) !important;
  background-color: var(--ff-earth) !important;
  color: var(--ff-ivory) !important;
  box-shadow: none !important;
  transform: none !important;
}

.ffw-site .ffw-footer__cta,
.ffw-site .ffw-footer .ffw-footer__cta {
  border-color: var(--ff-ivory) !important;
  background-color: var(--ff-ivory) !important;
  color: var(--ff-forest) !important;
}

.ffw-site .ffw-home-quick-start__status,
.ffw-site .ffw-home-quick-start__summary-kicker {
  border-color: color-mix(in srgb, var(--ff-earth) 28%, transparent) !important;
  background: color-mix(in srgb, var(--ff-earth) 8%, var(--ff-white)) !important;
  color: var(--ff-earth) !important;
}

.ffw-site .ffw-home-quick-start__summary {
  border-color: var(--ff-stone) !important;
  background: color-mix(in srgb, var(--ff-stone) 28%, var(--ff-white)) !important;
  box-shadow: none !important;
}

.ffw-site .ffw-interior-scene__coral,
.ffw-site .ffw-home-scene__coral {
  background: var(--ff-earth) !important;
  opacity: 0.12 !important;
}

.ffw-site input:focus,
.ffw-site select:focus,
.ffw-site textarea:focus,
.ffw-site button:focus-visible,
.ffw-site a:focus-visible,
.ffw-site .ffw-home-quick-start:target,
.ffw-site .ffw-consent input[type="checkbox"]:focus-visible {
  outline-color: color-mix(in srgb, var(--ff-earth) 34%, transparent) !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  .ffw-site .ffw-card-grid--home-service {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .ffw-site .ffw-section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .ffw-site .ffw-card-grid--home-audience,
  .ffw-site .ffw-card-grid--home-service,
  .ffw-site .ffw-approved-card-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ffw-site .ffw-card,
  .ffw-site .ffw-approved-card {
    padding: 26px !important;
  }

  .ffw-site .ffw-brand {
    width: min(220px, 62vw) !important;
  }
}
