:root {
  --ff-navy-950: #071625;
  --ff-navy-900: #0b1f33;
  --ff-navy-800: #12324f;
  --ff-navy-700: #1a466a;
  --ff-orange-600: #d95d0b;
  --ff-orange-500: #f47b20;
  --ff-orange-400: #ff984c;
  --ff-cream: #fff9f3;
  --ff-sand: #f5f1eb;
  --ff-mist: #edf3f6;
  --ff-white: #fff;
  --ff-ink: #102235;
  --ff-muted: #586878;
  --ff-line: #dbe3e8;
  --ff-success: #167650;
  --ff-error: #ad2f2f;
  --ff-shadow-sm: 0 10px 28px rgba(11, 31, 51, 0.08);
  --ff-shadow-lg: 0 28px 72px rgba(7, 22, 37, 0.18);
  --ff-radius-sm: 12px;
  --ff-radius-md: 20px;
  --ff-radius-lg: 30px;
  --ff-shell: min(1180px, calc(100vw - 40px));
  --ff-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ff-ink);
  background: var(--ff-white);
  font-family: var(--ff-font);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.ff-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ff-navy-900);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.ff-shell {
  width: var(--ff-shell);
  margin-inline: auto;
}

.ff-icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

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

.screen-reader-text:focus,
.ff-skip-link:focus {
  position: fixed !important;
  z-index: 999999;
  top: 12px;
  left: 12px;
  width: auto !important;
  height: auto !important;
  padding: 12px 18px !important;
  clip: auto !important;
  color: var(--ff-white);
  background: var(--ff-navy-900);
  border-radius: 8px;
}

.ff-skip-link {
  position: absolute;
  left: -9999px;
}

:focus-visible {
  outline: 3px solid rgba(244, 123, 32, 0.65);
  outline-offset: 3px;
}

.ff-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ff-orange-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ff-eyebrow--light {
  color: #ffc18f;
}

.ff-lead {
  color: var(--ff-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.ff-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.ff-button:hover {
  transform: translateY(-2px);
}

.ff-button--primary {
  color: var(--ff-white);
  background: var(--ff-orange-500);
  box-shadow: 0 10px 24px rgba(217, 93, 11, 0.24);
}

.ff-button--primary:hover {
  background: var(--ff-orange-600);
}

.ff-button--secondary {
  color: var(--ff-navy-900);
  background: transparent;
  border-color: rgba(11, 31, 51, 0.24);
}

.ff-button--secondary:hover {
  color: var(--ff-white);
  background: var(--ff-navy-900);
  border-color: var(--ff-navy-900);
}

.ff-button--light {
  color: var(--ff-navy-900);
  background: var(--ff-white);
}

.ff-button--glass {
  color: var(--ff-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.ff-button--glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ff-button--large {
  min-height: 56px;
  padding: 16px 25px;
  font-size: 1rem;
}

.ff-button--wide {
  width: 100%;
}

.ff-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ff-navy-800);
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
}

.ff-text-link .ff-icon,
.ff-button .ff-icon {
  transition: transform 160ms ease;
}

.ff-text-link:hover .ff-icon,
.ff-button:hover .ff-icon {
  transform: translateX(3px);
}

.ff-text-link--large {
  font-size: 1.02rem;
}

.ff-utility {
  position: relative;
  z-index: 50;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ff-navy-950);
  font-size: 0.76rem;
  font-weight: 650;
}

.ff-utility__inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ff-utility__inner span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ff-utility__inner .ff-icon {
  color: var(--ff-orange-400);
}

.ff-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  backdrop-filter: blur(16px);
}

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

.ff-header__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.ff-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ff-navy-900);
  text-decoration: none;
}

.ff-brand img {
  width: 46px;
  height: 46px;
}

.ff-brand__wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.42rem;
  letter-spacing: -0.055em;
  line-height: 1;
}

.ff-brand__wordmark strong {
  font-weight: 830;
}

.ff-brand__wordmark em {
  color: var(--ff-orange-500);
  font-style: normal;
  font-weight: 830;
}

.ff-nav {
  justify-self: center;
}

.ff-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  list-style: none;
}

.ff-nav__list a {
  position: relative;
  color: #30475b;
  font-size: 0.9rem;
  font-weight: 690;
  text-decoration: none;
}

.ff-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ff-orange-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.ff-nav__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ff-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ff-header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.ff-header__phone .ff-icon {
  color: var(--ff-orange-500);
}

.ff-header__phone span {
  display: grid;
  line-height: 1.15;
}

.ff-header__phone small {
  color: var(--ff-muted);
  font-size: 0.66rem;
}

.ff-header__phone strong {
  font-size: 0.9rem;
}

.ff-menu-button,
.ff-nav__mobile-cta {
  display: none;
}

.ff-mobile-callbar {
  display: none;
}

.ff-hero {
  position: relative;
  min-height: min(790px, calc(100svh - 113px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ff-white);
  background: var(--ff-navy-950);
}

.ff-hero__media,
.ff-hero__media picture,
.ff-hero__media img,
.ff-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ff-hero__media img {
  object-fit: cover;
  object-position: 61% center;
}

.ff-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.98) 0%, rgba(7, 22, 37, 0.91) 33%, rgba(7, 22, 37, 0.42) 63%, rgba(7, 22, 37, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 22, 37, 0.35), transparent 45%);
}

.ff-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(72px, 10vw, 132px);
}

.ff-hero__inner--with-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.ff-hero__copy {
  max-width: 700px;
}

.ff-hero__inner--with-form .ff-hero__copy {
  max-width: 650px;
}

.ff-hero h1 {
  max-width: 700px;
  margin-top: 20px;
  color: var(--ff-white);
  font-size: clamp(3rem, 6.5vw, 6.1rem);
}

.ff-hero__inner--with-form h1 {
  font-size: clamp(3rem, 5.2vw, 5.2rem);
}

.ff-hero__lead {
  max-width: 630px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  line-height: 1.6;
}

.ff-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.ff-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 30px;
  list-style: none;
}

.ff-hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 650;
}

.ff-hero__checks .ff-icon {
  color: var(--ff-orange-400);
}

.ff-proof-strip {
  position: relative;
  z-index: 3;
  background: var(--ff-white);
  box-shadow: 0 -18px 44px rgba(7, 22, 37, 0.1);
}

.ff-proof-strip__grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.ff-proof-strip__grid > div {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 22px;
  border-right: 1px solid var(--ff-line);
}

.ff-proof-strip__grid > div:last-child {
  border-right: 0;
}

.ff-proof-strip strong {
  color: var(--ff-orange-500);
  font-size: 2rem;
  line-height: 1;
}

.ff-proof-strip span {
  max-width: 120px;
  color: var(--ff-muted);
  font-size: 0.76rem;
  font-weight: 730;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ff-proof-strip .ff-icon {
  width: 34px;
  height: 34px;
  color: var(--ff-orange-500);
}

.ff-section {
  position: relative;
  padding-block: clamp(78px, 9vw, 132px);
}

.ff-section--soft {
  background: var(--ff-sand);
}

.ff-section--navy {
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 123, 32, 0.12), transparent 26%),
    var(--ff-navy-950);
}

.ff-section--navy h2,
.ff-section--navy h3 {
  color: var(--ff-white);
}

.ff-section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.ff-section-heading h2 {
  margin-top: 15px;
}

.ff-section-heading > p {
  margin-top: 20px;
  color: var(--ff-muted);
}

.ff-section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 60px;
}

.ff-section-heading--split > p {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.ff-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ff-service-card {
  position: relative;
  min-width: 0;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  background: var(--ff-white);
  border: 1px solid rgba(11, 31, 51, 0.09);
  border-radius: var(--ff-radius-md);
  box-shadow: var(--ff-shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ff-service-card:hover {
  border-color: rgba(244, 123, 32, 0.4);
  box-shadow: 0 20px 42px rgba(11, 31, 51, 0.13);
  transform: translateY(-5px);
}

.ff-service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--ff-orange-500);
  background: var(--ff-cream);
  border: 1px solid rgba(244, 123, 32, 0.18);
  border-radius: 16px;
}

.ff-service-card__icon .ff-icon {
  width: 30px;
  height: 30px;
}

.ff-service-card h3 {
  margin-top: 22px;
}

.ff-service-card h3 a {
  text-decoration: none;
}

.ff-service-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.ff-service-card p {
  margin-top: 12px;
  color: var(--ff-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ff-service-card .ff-text-link {
  margin-top: auto;
  padding-top: 22px;
}

.ff-service-grid--archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ff-split {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.ff-split--reverse .ff-split__media {
  order: 2;
}

.ff-split__media {
  position: relative;
}

.ff-rounded-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--ff-radius-lg);
  box-shadow: var(--ff-shadow-lg);
}

.ff-image-note {
  position: absolute;
  right: -20px;
  bottom: -22px;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--ff-white);
  border: 1px solid var(--ff-line);
  border-radius: 16px;
  box-shadow: var(--ff-shadow-sm);
}

.ff-image-note .ff-icon {
  width: 34px;
  height: 34px;
  color: var(--ff-orange-500);
}

.ff-image-note span {
  display: grid;
  line-height: 1.35;
}

.ff-image-note strong {
  color: var(--ff-navy-900);
  font-size: 0.9rem;
}

.ff-image-note span {
  color: var(--ff-muted);
  font-size: 0.76rem;
}

.ff-split__copy h2 {
  margin-top: 15px;
}

.ff-split__copy > p {
  margin-top: 22px;
}

.ff-split__copy > .ff-button,
.ff-split__copy > .ff-text-link {
  margin-top: 30px;
}

.ff-process-list {
  display: grid;
  gap: 20px;
  margin-top: 34px;
  list-style: none;
}

.ff-process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.ff-process-list li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ff-white);
  background: var(--ff-navy-900);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.ff-process-list h3 {
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.ff-process-list p {
  margin-top: 5px;
  color: var(--ff-muted);
  font-size: 0.9rem;
}

.ff-check-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  list-style: none;
}

.ff-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ff-muted);
  font-weight: 620;
}

.ff-check-list .ff-icon {
  margin-top: 3px;
  color: var(--ff-orange-500);
}

.ff-check-list--light li {
  color: rgba(255, 255, 255, 0.76);
}

.ff-request-card {
  padding: clamp(25px, 4vw, 38px);
  color: var(--ff-ink);
  background: var(--ff-white);
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: var(--ff-radius-lg);
  box-shadow: var(--ff-shadow-lg);
}

.ff-hero-request {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.ff-request-card--compact {
  position: relative;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 70px rgba(7, 22, 37, 0.24);
  backdrop-filter: blur(18px);
}

.ff-request-card--compact::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--ff-orange-500), #ffb260);
}

.ff-request-card--compact .ff-request-card__header {
  padding-right: 26px;
}

.ff-request-card--compact .ff-request-card__header h2 {
  margin-top: 7px;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.ff-request-card--compact .ff-request-card__header p {
  max-width: 410px;
  margin-top: 8px;
  font-size: 0.82rem;
}

.ff-request-card__header h2 {
  margin-top: 10px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.ff-request-card__header p {
  margin-top: 12px;
  color: var(--ff-muted);
  font-size: 0.91rem;
}

.ff-request-form {
  margin-top: 28px;
}

.ff-request-form--compact {
  margin-top: 20px;
}

.ff-request-form--compact .ff-form-grid {
  gap: 12px;
}

.ff-request-form--compact .ff-field label {
  margin-bottom: 5px;
  font-size: 0.72rem;
}

.ff-request-form--compact .ff-field input,
.ff-request-form--compact .ff-field select {
  min-height: 46px;
}

.ff-request-form--compact .ff-field textarea {
  min-height: 82px;
}

.ff-request-form--compact .ff-consent {
  margin-block: 14px;
  font-size: 0.7rem;
}

.ff-request-form--compact .ff-button {
  min-height: 52px;
}

.ff-request-form--compact .ff-form-footnote {
  margin-top: 9px;
}

.ff-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.ff-field {
  min-width: 0;
}

.ff-field--wide {
  grid-column: 1 / -1;
}

.ff-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ff-navy-900);
  font-size: 0.78rem;
  font-weight: 760;
}

.ff-optional {
  color: var(--ff-muted);
  font-weight: 500;
}

.ff-field input,
.ff-field select,
.ff-field textarea {
  width: 100%;
  color: var(--ff-ink);
  background: #fbfcfd;
  border: 1px solid #ccd7dd;
  border-radius: 11px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.ff-field input,
.ff-field select {
  min-height: 49px;
  padding: 10px 13px;
}

.ff-field > small {
  display: block;
  margin-top: 6px;
  color: var(--ff-muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.ff-field textarea {
  min-height: 114px;
  padding: 12px 13px;
  resize: vertical;
}

.ff-field input:focus,
.ff-field select:focus,
.ff-field textarea:focus {
  background: var(--ff-white);
  border-color: var(--ff-orange-500);
  box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.12);
}

.ff-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin-block: 20px;
  color: var(--ff-muted);
  font-size: 0.76rem;
  line-height: 1.45;
  cursor: pointer;
}

.ff-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--ff-orange-500);
}

.ff-form-footnote {
  margin-top: 12px;
  color: var(--ff-muted);
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: center;
}

.ff-form-notice {
  display: grid;
  gap: 3px;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 11px;
  font-size: 0.86rem;
}

.ff-form-notice--success {
  color: #0d5c3e;
  background: #eaf8f1;
  border: 1px solid #b7e5cf;
}

.ff-form-notice--error {
  color: #842323;
  background: #fff1f1;
  border: 1px solid #efc0c0;
}

.ff-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(45px, 8vw, 110px);
}

.ff-faq-layout > div:first-child {
  position: sticky;
  top: 140px;
}

.ff-faq-layout h2 {
  margin-top: 15px;
}

.ff-faq-layout > div:first-child p {
  margin-top: 18px;
  color: var(--ff-muted);
}

.ff-faq-list {
  border-top: 1px solid var(--ff-line);
}

.ff-faq-item {
  border-bottom: 1px solid var(--ff-line);
}

.ff-faq-item h3 {
  margin: 0;
}

.ff-faq-item button {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  color: var(--ff-navy-900);
  background: transparent;
  border: 0;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.ff-faq-item__symbol {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--ff-line);
  border-radius: 50%;
}

.ff-faq-item__symbol::before,
.ff-faq-item__symbol::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  content: "";
  background: var(--ff-orange-500);
  transform: translate(-50%, -50%);
}

.ff-faq-item__symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.ff-faq-item button[aria-expanded="true"] .ff-faq-item__symbol::after {
  transform: translate(-50%, -50%) rotate(0);
}

.ff-faq-item__panel {
  padding: 0 52px 22px 0;
  color: var(--ff-muted);
  font-size: 0.94rem;
}

.ff-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(244, 123, 32, 0.15), transparent 24%),
    linear-gradient(135deg, var(--ff-mist), var(--ff-white));
  border-bottom: 1px solid var(--ff-line);
}

.ff-page-hero::after {
  position: absolute;
  top: -90px;
  right: -100px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(18, 50, 79, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(18, 50, 79, 0.03), 0 0 0 120px rgba(18, 50, 79, 0.02);
}

.ff-page-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: center;
  gap: 70px;
  padding-block: clamp(72px, 9vw, 118px);
}

.ff-page-hero--with-form .ff-page-hero__inner {
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 500px);
  gap: clamp(44px, 6vw, 84px);
  padding-block: clamp(56px, 7vw, 88px);
}

.ff-page-hero--with-form h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.9rem);
}

.ff-page-hero--request-form .ff-page-hero__inner {
  min-height: 900px;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  align-items: start;
}

.ff-page-hero--request-form .ff-hero-request {
  max-width: 620px;
}

.ff-page-hero__inner > div:first-child {
  max-width: 820px;
}

.ff-page-hero h1 {
  margin-top: 15px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.ff-page-hero p {
  max-width: 720px;
  margin-top: 23px;
  color: var(--ff-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.ff-page-hero__symbol {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  color: var(--ff-orange-500);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(18, 50, 79, 0.12);
  border-radius: 50%;
  box-shadow: var(--ff-shadow-sm);
  backdrop-filter: blur(8px);
}

.ff-page-hero__symbol .ff-icon {
  width: 78px;
  height: 78px;
}

.ff-detail-hero,
.ff-local-hero {
  padding-block: clamp(68px, 8vw, 112px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(244, 123, 32, 0.12), transparent 22%),
    var(--ff-cream);
  border-bottom: 1px solid rgba(244, 123, 32, 0.15);
}

.ff-detail-hero__grid,
.ff-local-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(46px, 7vw, 94px);
}

.ff-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 34px;
  color: var(--ff-muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.ff-back-link .ff-icon {
  transform: rotate(180deg);
}

.ff-detail-hero__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--ff-orange-500);
  background: var(--ff-white);
  border-radius: 18px;
  box-shadow: var(--ff-shadow-sm);
}

.ff-detail-hero__icon .ff-icon {
  width: 36px;
  height: 36px;
}

.ff-detail-hero h1,
.ff-local-hero h1 {
  margin-top: 15px;
}

.ff-local-hero h1 {
  font-size: clamp(3rem, 5vw, 4.65rem);
  text-wrap: balance;
}

.ff-detail-hero .ff-lead,
.ff-local-hero .ff-lead {
  margin-top: 22px;
}

.ff-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.ff-detail-hero__actions > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ff-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.ff-detail-hero__actions > span .ff-icon {
  color: var(--ff-orange-500);
}

.ff-context-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--ff-navy-800);
  font-size: 0.84rem;
  font-weight: 760;
  text-decoration: none;
}

.ff-context-location .ff-icon {
  color: var(--ff-orange-500);
}

.ff-context-location:hover {
  color: var(--ff-orange-600);
}

.ff-problem-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(45px, 8vw, 110px);
}

.ff-problem-layout h2 {
  margin-top: 15px;
}

.ff-problem-layout > div:first-child p {
  margin-top: 19px;
  color: var(--ff-muted);
}

.ff-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ff-problem-grid > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  background: var(--ff-white);
  border: 1px solid var(--ff-line);
  border-radius: 14px;
  font-weight: 680;
}

.ff-problem-grid .ff-icon {
  color: var(--ff-orange-500);
}

.ff-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: start;
  gap: clamp(50px, 8vw, 104px);
}

.ff-content-grid--single {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.ff-rich-content h2 {
  margin-top: 15px;
}

.ff-rich-content > p {
  margin-top: 23px;
  color: var(--ff-muted);
  font-size: 1.04rem;
}

.ff-info-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.ff-info-cards > div {
  display: grid;
  gap: 5px;
  padding: 17px 19px;
  background: var(--ff-mist);
  border-radius: 12px;
}

.ff-info-cards strong {
  color: var(--ff-navy-900);
}

.ff-info-cards span {
  color: var(--ff-muted);
  font-size: 0.88rem;
}

.ff-compact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.ff-compact-cta h2 {
  margin-top: 12px;
}

.ff-compact-cta p {
  max-width: 700px;
  margin-top: 16px;
}

.ff-local-hero {
  background:
    radial-gradient(circle at 82% 30%, rgba(244, 123, 32, 0.18), transparent 26%),
    linear-gradient(135deg, #eef4f7, var(--ff-white));
}

.ff-local-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block: 28px;
}

.ff-local-hero__facts > span {
  min-width: 170px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  column-gap: 10px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ff-line);
  border-radius: 12px;
}

.ff-local-hero__facts .ff-icon {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  color: var(--ff-orange-500);
}

.ff-local-hero__facts strong {
  font-size: 0.88rem;
}

.ff-local-hero__facts small {
  color: var(--ff-muted);
  font-size: 0.7rem;
}

.ff-local-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ff-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ff-value-grid article {
  padding: 26px;
  background: var(--ff-white);
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-md);
}

.ff-contact-next {
  padding: clamp(28px, 4vw, 44px);
  background: var(--ff-mist);
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-lg);
}

.ff-contact-next h2 {
  margin-top: 13px;
}

.ff-contact-next > p {
  margin-top: 18px;
  color: var(--ff-muted);
}

.ff-request-assurance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(240px, 0.9fr));
  align-items: stretch;
  gap: 18px;
}

.ff-request-assurance-grid .ff-request-sidebar__block {
  height: 100%;
}

.ff-value-grid article > span {
  color: var(--ff-orange-500);
  font-size: 0.74rem;
  font-weight: 820;
}

.ff-value-grid h3 {
  margin-top: 25px;
}

.ff-value-grid p {
  margin-top: 12px;
  color: var(--ff-muted);
  font-size: 0.9rem;
}

.ff-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: start;
  gap: clamp(42px, 7vw, 86px);
}

.ff-contact-details {
  display: grid;
  gap: 16px;
}

.ff-request-sidebar__block {
  padding: 25px;
  background: var(--ff-white);
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-md);
}

.ff-request-sidebar__block h2 {
  margin-top: 12px;
  font-size: 1.8rem;
}

.ff-request-sidebar__block--navy {
  display: grid;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ff-navy-900);
  border-color: var(--ff-navy-900);
}

.ff-request-sidebar__block--navy .ff-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--ff-orange-400);
}

.ff-request-sidebar__block--navy span {
  font-size: 0.78rem;
}

.ff-request-sidebar__block--navy strong {
  margin-top: 2px;
  color: var(--ff-white);
  font-size: 1.8rem;
}

.ff-request-sidebar__block--navy p,
.ff-request-sidebar__block > p {
  margin-top: 12px;
  font-size: 0.82rem;
}

.ff-contact-grid {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.ff-contact-details h2 {
  margin: 12px 0 14px;
}

.ff-contact-card {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 18px;
  background: var(--ff-sand);
  border: 1px solid var(--ff-line);
  border-radius: 14px;
  text-decoration: none;
}

.ff-contact-card .ff-icon {
  width: 30px;
  height: 30px;
  color: var(--ff-orange-500);
}

.ff-contact-card div {
  min-width: 0;
  display: grid;
}

.ff-contact-card small {
  color: var(--ff-muted);
  font-size: 0.7rem;
}

.ff-contact-card strong {
  overflow-wrap: anywhere;
  color: var(--ff-navy-900);
}

.ff-page-hero--legal .ff-page-hero__inner {
  min-height: 320px;
  grid-template-columns: 1fr;
}

.ff-page-hero--legal.ff-page-hero--with-form .ff-page-hero__inner {
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 500px);
}

.ff-legal-content {
  max-width: 790px;
}

.ff-legal-content > * + * {
  margin-top: 18px;
}

.ff-legal-content h2 {
  margin-top: 44px;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.ff-legal-content p,
.ff-legal-content li {
  color: #44596b;
}

.ff-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ff-post-card {
  padding: 25px;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-md);
}

.ff-post-card > span {
  color: var(--ff-orange-600);
  font-size: 0.72rem;
  font-weight: 760;
}

.ff-post-card h2 {
  margin-top: 10px;
  font-size: 1.45rem;
}

.ff-post-card h2 a {
  text-decoration: none;
}

.ff-post-card p {
  margin-top: 14px;
  color: var(--ff-muted);
}

.ff-not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding-block: 80px;
  text-align: center;
  background: var(--ff-mist);
}

.ff-not-found__inner {
  max-width: 760px;
}

.ff-not-found__code {
  display: block;
  color: rgba(244, 123, 32, 0.2);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.ff-not-found h1 {
  margin-top: 18px;
}

.ff-not-found p {
  margin: 22px auto 30px;
  color: var(--ff-muted);
}

.ff-not-found__inner > div {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.ff-footer {
  padding-top: 76px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--ff-navy-950);
}

.ff-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.72fr));
  gap: 48px;
}

.ff-brand--footer {
  color: var(--ff-white);
}

.ff-footer__brand > p {
  max-width: 350px;
  margin-top: 20px;
  font-size: 0.92rem;
}

.ff-footer__facts {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.ff-footer__facts span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
}

.ff-footer__facts .ff-icon {
  color: var(--ff-orange-400);
}

.ff-footer h2 {
  margin-bottom: 20px;
  color: var(--ff-white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ff-footer ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.ff-footer li,
.ff-footer__grid > div > p {
  font-size: 0.84rem;
}

.ff-footer a {
  text-decoration: none;
}

.ff-footer a:hover {
  color: var(--ff-white);
}

.ff-footer__grid .ff-button {
  margin-top: 20px;
}

.ff-footer__actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.ff-footer__actions .ff-button {
  width: 100%;
  margin-top: 0;
}

.ff-footer__bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.ff-footer__bottom > span:last-child {
  display: flex;
  gap: 20px;
}

@media (max-width: 1080px) {
  .ff-header__inner {
    gap: 20px;
  }

  .ff-nav__list {
    gap: 18px;
  }

  .ff-header__phone {
    display: none;
  }

  .ff-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ff-content-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
    gap: 46px;
  }

  .ff-content-grid.ff-content-grid--single {
    grid-template-columns: minmax(0, 860px);
  }

  .ff-hero__inner--with-form {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 460px);
    gap: 38px;
  }

  .ff-page-hero--with-form .ff-page-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 460px);
    gap: 38px;
  }

  .ff-page-hero--request-form .ff-page-hero__inner {
    grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
  }

  .ff-request-assurance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ff-request-assurance-grid > :first-child {
    grid-column: 1 / -1;
  }

  .ff-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .admin-bar .ff-header {
    top: 46px;
  }

  .ff-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .ff-menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    grid-column: 3;
    place-items: center;
    padding: 0;
    color: var(--ff-navy-900);
    background: var(--ff-mist);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
  }

  .ff-menu-button[aria-expanded="false"] .ff-menu-icon--close,
  .ff-menu-button[aria-expanded="true"] .ff-menu-icon--open {
    display: none;
  }

  .ff-header__actions {
    display: none;
  }

  .ff-nav {
    position: fixed;
    z-index: 35;
    top: 113px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
  }

  .admin-bar .ff-nav {
    top: 159px;
  }

  .ff-nav[data-open] {
    display: block;
  }

  .ff-nav__list {
    width: var(--ff-shell);
    display: grid;
    gap: 0;
    margin-inline: auto;
  }

  .ff-nav__list li {
    border-bottom: 1px solid var(--ff-line);
  }

  .ff-nav__list a {
    display: block;
    padding: 18px 2px;
    font-size: 1.15rem;
  }

  .ff-nav__list a::after {
    display: none;
  }

  .ff-nav__mobile-cta {
    width: var(--ff-shell);
    display: grid;
    gap: 12px;
    margin: 28px auto 0;
  }

  .ff-proof-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ff-proof-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .ff-proof-strip__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--ff-line);
  }

  .ff-section-heading--split,
  .ff-split,
  .ff-faq-layout,
  .ff-detail-hero__grid,
  .ff-local-hero__grid,
  .ff-problem-layout,
  .ff-content-grid,
  .ff-contact-grid,
  .ff-hero__inner--with-form,
  .ff-page-hero--with-form .ff-page-hero__inner {
    grid-template-columns: 1fr;
  }

  .ff-section-heading--split {
    gap: 22px;
  }

  .ff-section-heading--split > p {
    max-width: 700px;
  }

  .ff-split--reverse .ff-split__media {
    order: 0;
  }

  .ff-faq-layout > div:first-child {
    position: static;
  }

  .ff-page-hero__inner {
    grid-template-columns: minmax(0, 1fr) 130px;
    gap: 34px;
  }

  .ff-page-hero--with-form .ff-page-hero__inner,
  .ff-page-hero--request-form .ff-page-hero__inner {
    min-height: 0;
    align-items: center;
  }

  .ff-page-hero--legal.ff-page-hero--with-form .ff-page-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .ff-hero-request {
    max-width: 680px;
    justify-self: start;
  }

  .ff-page-hero__symbol {
    width: 120px;
    height: 120px;
  }

  .ff-page-hero__symbol .ff-icon {
    width: 52px;
    height: 52px;
  }

  .ff-content-grid aside {
    max-width: 680px;
  }

  .ff-compact-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ff-footer__grid {
    grid-template-columns: 1.3fr repeat(2, 0.7fr);
  }

  .ff-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --ff-shell: min(100% - 28px, 1180px);
  }

  body {
    font-size: 16px;
  }

  body.ff-has-public-phone {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .ff-mobile-callbar {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
    color: var(--ff-white);
    text-decoration: none;
    background: var(--ff-orange-500);
    box-shadow: 0 -12px 34px rgba(7, 22, 37, 0.24);
  }

  .ff-mobile-callbar .ff-icon {
    width: 25px;
    height: 25px;
  }

  .ff-mobile-callbar span {
    display: grid;
    line-height: 1.15;
  }

  .ff-mobile-callbar small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 650;
  }

  .ff-mobile-callbar strong {
    font-size: 1.08rem;
    letter-spacing: 0.015em;
  }

  .ff-utility__inner {
    min-height: 38px;
    justify-content: center;
  }

  .ff-utility__inner span:first-child {
    display: none;
  }

  .ff-header__inner {
    min-height: 70px;
  }

  .ff-brand img {
    width: 42px;
    height: 42px;
  }

  .ff-brand__wordmark {
    font-size: 1.3rem;
  }

  .ff-nav {
    top: 108px;
  }

  .admin-bar .ff-nav {
    top: 154px;
  }

  .ff-hero {
    min-height: 0;
    align-items: end;
  }

  .ff-hero__media img {
    object-position: 67% center;
  }

  .ff-hero__overlay {
    background:
      linear-gradient(0deg, rgba(7, 22, 37, 0.98) 0%, rgba(7, 22, 37, 0.86) 48%, rgba(7, 22, 37, 0.26) 82%, rgba(7, 22, 37, 0.1) 100%);
  }

  .ff-hero__inner {
    padding-block: 210px 52px;
  }

  .ff-hero__inner--with-form {
    gap: 34px;
    padding-block: 150px 50px;
  }

  .ff-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.25rem);
  }

  .ff-hero__lead {
    margin-top: 18px;
    font-size: 1.05rem;
  }

  .ff-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .ff-hero__checks {
    display: grid;
    gap: 8px;
    margin-top: 24px;
  }

  .ff-proof-strip__grid {
    min-height: 0;
  }

  .ff-proof-strip__grid > div {
    justify-content: flex-start;
    padding: 18px 12px;
  }

  .ff-proof-strip strong {
    font-size: 1.65rem;
  }

  .ff-proof-strip span {
    font-size: 0.65rem;
  }

  .ff-section {
    padding-block: 74px;
  }

  .ff-section-heading {
    margin-bottom: 32px;
  }

  .ff-service-grid,
  .ff-service-grid--archive,
  .ff-problem-grid,
  .ff-value-grid,
  .ff-post-grid {
    grid-template-columns: 1fr;
  }

  .ff-service-card {
    min-height: 240px;
  }

  .ff-split {
    gap: 42px;
  }

  .ff-image-note {
    right: 12px;
    bottom: -20px;
    left: 12px;
    max-width: none;
  }

  .ff-form-grid {
    grid-template-columns: 1fr;
  }

  .ff-field--wide {
    grid-column: auto;
  }

  .ff-request-card {
    padding: 23px 18px;
    border-radius: 22px;
  }

  .ff-page-hero__inner {
    min-height: 360px;
    grid-template-columns: 1fr;
    padding-block: 64px;
  }

  .ff-page-hero--with-form .ff-page-hero__inner,
  .ff-page-hero--request-form .ff-page-hero__inner {
    min-height: 0;
    gap: 34px;
    padding-block: 50px;
  }

  .ff-page-hero__symbol {
    display: none;
  }

  .ff-page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .ff-detail-hero,
  .ff-local-hero {
    padding-block: 58px 70px;
  }

  .ff-detail-hero__grid,
  .ff-local-hero__grid {
    gap: 40px;
  }

  .ff-detail-hero .ff-hero-request,
  .ff-local-hero .ff-hero-request {
    max-width: none;
  }

  .ff-detail-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ff-local-hero__actions {
    display: grid;
  }

  .ff-local-hero__actions .ff-button {
    width: 100%;
  }

  .ff-detail-hero__actions > span {
    justify-content: center;
  }

  .ff-problem-grid > div {
    min-height: 72px;
  }

  .ff-local-hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.35rem);
  }

  .ff-local-hero__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .ff-local-hero__facts > span {
    min-width: 0;
  }

  .ff-request-assurance-grid {
    grid-template-columns: 1fr;
  }

  .ff-request-assurance-grid > :first-child {
    grid-column: auto;
  }

  .ff-compact-cta__inner {
    gap: 28px;
  }

  .ff-compact-cta .ff-button {
    width: 100%;
  }

  .ff-faq-layout {
    gap: 34px;
  }

  .ff-footer {
    padding-top: 60px;
  }

  .ff-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .ff-footer__brand,
  .ff-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .ff-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
  }
}

@media (max-width: 480px) {
  .ff-brand__wordmark {
    font-size: 1.2rem;
  }

  .ff-proof-strip__grid > div {
    gap: 8px;
  }

  .ff-proof-strip strong {
    font-size: 1.45rem;
  }

  .ff-proof-strip .ff-icon {
    width: 28px;
    height: 28px;
  }

  .ff-local-hero__facts {
    grid-template-columns: 1fr;
  }

  .ff-footer__grid {
    grid-template-columns: 1fr;
  }

  .ff-footer__brand,
  .ff-footer__grid > div:last-child {
    grid-column: auto;
  }

  .ff-not-found__inner > div {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .ff-utility,
  .ff-header,
  .ff-footer,
  .ff-mobile-callbar,
  .ff-button,
  .ff-request-card {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .ff-section,
  .ff-page-hero {
    padding: 20px 0;
    background: #fff;
  }
}
