:root {
  --fairhead-red: #e10909;
  --fairhead-red-dark: #b90808;
  --fairhead-black: #111215;
  --fairhead-charcoal: #191b20;
  --fairhead-grey: #626a75;
  --fairhead-light-grey: #f5f6f8;
  --fairhead-border: #e8e8e8;
  --fairhead-white: #ffffff;
  --fairhead-container: 1180px;
  --fairhead-gutter: 24px;
}

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

html {
  min-width: 320px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--fairhead-black);
  background: var(--fairhead-white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(225, 9, 9, 0.45);
  outline-offset: 4px;
}

.fairhead-svg-sprite {
  display: none;
}

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

.fairhead-page-top {
  overflow-x: hidden;
  padding-bottom: 0;
  background: var(--fairhead-white);
}

.fairhead-container {
  width: min(100%, var(--fairhead-container));
  margin: 0 auto;
  padding-inline: var(--fairhead-gutter);
}

.fairhead-topbar {
  color: var(--fairhead-white);
  background: var(--fairhead-red);
}

.fairhead-topbar-inner {
  min-width: 0;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.fairhead-header {
  position: relative;
  z-index: 20;
  background: var(--fairhead-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fairhead-header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.fairhead-logo-link {
  width: 185px;
  height: 76px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.fairhead-logo-link img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.fairhead-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 29px;
}

.fairhead-nav a,
.fairhead-mobile-nav a:not(.fairhead-btn) {
  font-size: 14px;
  font-weight: 800;
  color: var(--fairhead-black);
}

.fairhead-nav a {
  padding-block: 14px;
}

.fairhead-nav a:hover,
.fairhead-mobile-nav a:not(.fairhead-btn):hover {
  color: var(--fairhead-red);
}

.fairhead-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.fairhead-btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fairhead-btn:hover {
  transform: translateY(-1px);
}

.fairhead-btn-primary {
  color: var(--fairhead-white);
  background: var(--fairhead-red);
  box-shadow: 0 14px 30px rgba(225, 9, 9, 0.24);
}

.fairhead-btn-primary:hover {
  background: var(--fairhead-red-dark);
  box-shadow: 0 16px 34px rgba(225, 9, 9, 0.28);
}

.fairhead-btn-secondary {
  color: var(--fairhead-red);
  background: var(--fairhead-white);
  border: 1.5px solid rgba(225, 9, 9, 0.45);
}

.fairhead-btn-secondary:hover {
  border-color: rgba(225, 9, 9, 0.7);
  box-shadow: 0 12px 28px rgba(17, 18, 21, 0.08);
}

.fairhead-header-cta {
  flex: 0 0 auto;
  padding: 16px 25px;
  box-shadow: 0 12px 26px rgba(225, 9, 9, 0.22);
}

.fairhead-menu-toggle {
  width: 48px;
  height: 48px;
  margin-left: auto;
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--fairhead-red);
  background: var(--fairhead-white);
  border: 1px solid rgba(225, 9, 9, 0.24);
  border-radius: 12px;
  cursor: pointer;
}

.fairhead-menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fairhead-menu-toggle .fairhead-close-icon,
.fairhead-menu-toggle[aria-expanded="true"] .fairhead-menu-icon {
  display: none;
}

.fairhead-menu-toggle[aria-expanded="true"] .fairhead-close-icon {
  display: block;
}

.fairhead-mobile-panel {
  background: var(--fairhead-white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 36px rgba(17, 18, 21, 0.08);
}

.fairhead-mobile-panel[hidden] {
  display: none;
}

.fairhead-mobile-nav {
  display: grid;
  gap: 4px;
  padding-block: 14px 18px;
}

.fairhead-mobile-nav a:not(.fairhead-btn) {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fairhead-mobile-nav .fairhead-btn {
  margin-top: 10px;
  padding: 17px 24px;
}

.fairhead-hero {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--fairhead-white) 0 49%, var(--fairhead-light-grey) 49% 100%);
}

.fairhead-hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.fairhead-hero-content {
  position: relative;
  z-index: 4;
  min-width: 0;
  max-width: 570px;
  padding: 64px 22px 72px 0;
  align-self: center;
}

.fairhead-eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fairhead-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.fairhead-eyebrow::after {
  content: "";
  width: 42px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--fairhead-red);
}

.fairhead-hero h1 {
  max-width: 570px;
  margin: 0;
  color: var(--fairhead-black);
  font-size: clamp(42px, 4.25vw, 57px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  overflow-wrap: break-word;
}

.fairhead-hero h1 span {
  display: block;
  color: var(--fairhead-red);
}

.fairhead-hero-copy {
  max-width: 540px;
  margin: 20px 0 0;
  color: #343941;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.fairhead-hero-badges {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
}

.fairhead-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--fairhead-black);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.fairhead-hero-badge > span:last-child {
  max-width: 110px;
}

.fairhead-mini-icon,
.fairhead-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--fairhead-red);
  background: var(--fairhead-white);
  border: 1px solid rgba(225, 9, 9, 0.18);
}

.fairhead-mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(17, 18, 21, 0.08);
}

.fairhead-mini-icon svg,
.fairhead-trust-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fairhead-hero-actions {
  margin-top: 31px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.fairhead-hero-actions .fairhead-btn {
  padding: 18px 30px;
}

.fairhead-hero-image-wrap {
  position: relative;
  min-width: 0;
  min-height: 560px;
  margin-right: calc(var(--fairhead-gutter) * -1);
  overflow: hidden;
}

.fairhead-hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 150px;
  pointer-events: none;
  background: var(--fairhead-white);
  clip-path: polygon(0 0, 55% 0, 100% 100%, 0 100%);
}

.fairhead-hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
}

.fairhead-trust-strip {
  position: relative;
  z-index: 8;
  width: min(calc(100% - 48px), var(--fairhead-container));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--fairhead-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(17, 18, 21, 0.1);
}

.fairhead-trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
  border-right: 1px solid var(--fairhead-border);
}

.fairhead-trust-item:last-child {
  border-right: 0;
}

.fairhead-trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(225, 9, 9, 0.04);
}

.fairhead-trust-item strong,
.fairhead-trust-item span span {
  display: block;
}

.fairhead-trust-item strong {
  color: var(--fairhead-black);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.fairhead-trust-item span span {
  margin-top: 5px;
  color: var(--fairhead-grey);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.fairhead-services-section {
  padding: 72px 0 82px;
  background: linear-gradient(180deg, var(--fairhead-white) 0%, #f7f7f8 100%);
}

.fairhead-section-heading {
  max-width: 650px;
  margin: 0 auto 32px;
  text-align: center;
}

.fairhead-section-eyebrow {
  margin: 0 0 6px;
  color: var(--fairhead-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fairhead-section-heading h2 {
  margin: 0;
  color: var(--fairhead-black);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.fairhead-section-heading > p:not(.fairhead-section-eyebrow) {
  margin: 10px 0 0;
  color: var(--fairhead-grey);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.5;
}

.fairhead-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fairhead-service-card {
  min-width: 0;
  min-height: 126px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  background: var(--fairhead-white);
  border: 1px solid rgba(17, 18, 21, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17, 18, 21, 0.045);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.fairhead-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 9, 9, 0.18);
  box-shadow: 0 14px 32px rgba(17, 18, 21, 0.07);
}

.fairhead-service-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  align-self: center;
  flex: 0 0 auto;
}

.fairhead-service-icon img {
  width: 74px;
  height: 74px;
  display: block;
  object-fit: contain;
}

.fairhead-service-card h3 {
  margin: 0 0 6px;
  color: var(--fairhead-black);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.fairhead-service-card p {
  margin: 0;
  color: var(--fairhead-grey);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.fairhead-why-section {
  padding: 92px 0 98px;
  background: var(--fairhead-white);
}

.fairhead-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 36px;
}

.fairhead-why-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #ddd;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(17, 18, 21, 0.08);
}

.fairhead-why-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.fairhead-why-content {
  min-width: 0;
  align-self: center;
  padding: 10px 0;
}

.fairhead-why-eyebrow {
  margin: 0 0 8px;
  color: var(--fairhead-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fairhead-why-content h2 {
  max-width: 520px;
  margin: 0;
  color: var(--fairhead-black);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.fairhead-why-accent {
  width: 72px;
  height: 5px;
  margin: 18px 0;
  border-radius: 999px;
  background: var(--fairhead-red);
}

.fairhead-why-copy {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--fairhead-grey);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.fairhead-why-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 22px;
  margin-top: 34px;
}

.fairhead-why-benefit {
  min-width: 0;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.fairhead-why-benefit-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--fairhead-red);
  background: rgba(225, 9, 9, 0.055);
  border: 1.5px solid rgba(225, 9, 9, 0.2);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(225, 9, 9, 0.08);
  flex: 0 0 auto;
}

.fairhead-why-benefit-icon svg {
  width: 48px;
  height: 48px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fairhead-why-icon-team path:nth-child(-n + 2),
.fairhead-why-icon-hammer path:first-child {
  fill: currentColor;
  stroke: none;
}

.fairhead-why-icon-team path {
  stroke-width: 3.8;
}

.fairhead-why-icon-shield {
  stroke-width: 3.4;
}

.fairhead-why-icon-fill {
  fill: currentColor;
  opacity: 0.08;
  stroke: none;
}

.fairhead-why-icon-hammer path:not(:first-child) {
  stroke: var(--fairhead-white);
  stroke-width: 3.1;
}

.fairhead-pound-icon {
  display: block;
  color: var(--fairhead-red);
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
}

.fairhead-why-benefit h3 {
  margin: 0 0 8px;
  color: var(--fairhead-black);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.fairhead-why-benefit p {
  margin: 0;
  color: var(--fairhead-grey);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.fairhead-lower-eyebrow {
  margin: 0 0 10px;
  color: var(--fairhead-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fairhead-reviews-section {
  padding: 70px 0 34px;
  background: var(--fairhead-white);
}

.fairhead-reviews-section .fairhead-section-heading {
  margin-bottom: 28px;
}

.fairhead-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fairhead-review-card {
  position: relative;
  min-width: 0;
  min-height: 186px;
  display: flex;
  flex-direction: column;
  padding: 26px 28px;
  overflow: hidden;
  background: var(--fairhead-white);
  border: 1px solid rgba(17, 18, 21, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(17, 18, 21, 0.045);
}

.fairhead-quote-mark {
  position: absolute;
  top: 12px;
  right: 22px;
  color: rgba(17, 18, 21, 0.08);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.fairhead-review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #2e333a;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.fairhead-review-card cite {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 18px;
  display: block;
  font-style: normal;
}

.fairhead-review-card cite strong,
.fairhead-review-card cite span {
  display: block;
}

.fairhead-review-card cite strong {
  color: var(--fairhead-black);
  font-size: 15px;
  font-weight: 900;
}

.fairhead-review-card cite span {
  margin-top: 4px;
  color: var(--fairhead-grey);
  font-size: 13px;
  font-weight: 700;
}

.fairhead-areas-section {
  padding: 10px 0 34px;
  background: var(--fairhead-white);
}

.fairhead-areas-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.fairhead-area-pill {
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 14px;
  color: var(--fairhead-black);
  background: var(--fairhead-white);
  border: 1px solid rgba(17, 18, 21, 0.08);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(17, 18, 21, 0.035);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
}

.fairhead-area-pill svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--fairhead-red);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fairhead-area-pill-wide {
  grid-column: span 2;
}

.fairhead-process-section {
  padding: 36px 0;
  background: linear-gradient(180deg, var(--fairhead-white), #f7f7f8);
  border-block: 1px solid rgba(17, 18, 21, 0.06);
}

.fairhead-process-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 34px;
  align-items: center;
}

.fairhead-process-intro {
  padding-right: 28px;
  border-right: 1px solid var(--fairhead-border);
}

.fairhead-process-intro h2,
.fairhead-faq-intro h2 {
  margin: 0;
  color: var(--fairhead-black);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.fairhead-process-intro p:not(.fairhead-lower-eyebrow),
.fairhead-faq-intro p:not(.fairhead-lower-eyebrow) {
  max-width: 340px;
  margin: 13px 0 0;
  color: var(--fairhead-grey);
  font-size: 15.5px;
  font-weight: 650;
  line-height: 1.55;
}

.fairhead-process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.fairhead-process-step {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.fairhead-process-number {
  position: absolute;
  top: -18px;
  left: 0;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--fairhead-white);
  background: var(--fairhead-red);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(225, 9, 9, 0.18);
  font-size: 16px;
  font-weight: 900;
}

.fairhead-process-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--fairhead-red);
}

.fairhead-process-icon svg,
.fairhead-cta-detail svg,
.fairhead-privacy-note svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fairhead-process-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 2.2;
}

.fairhead-process-step h3 {
  margin: 0 0 8px;
  color: var(--fairhead-black);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.fairhead-process-step p {
  margin: 0;
  color: #4a515b;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.45;
}

.fairhead-process-arrow {
  color: #3c424b;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.fairhead-faq-section {
  padding: 52px 0 70px;
  background: var(--fairhead-white);
}

.fairhead-faq-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 44px;
  align-items: start;
}

.fairhead-faq-list {
  display: grid;
  gap: 9px;
}

.fairhead-faq-item {
  overflow: hidden;
  background: var(--fairhead-white);
  border: 1px solid rgba(17, 18, 21, 0.1);
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(17, 18, 21, 0.03);
}

.fairhead-faq-item button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  color: var(--fairhead-black);
  background: transparent;
  border: 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.fairhead-faq-item button span {
  color: var(--fairhead-black);
  font-size: 22px;
  line-height: 1;
}

.fairhead-faq-item div {
  padding: 0 18px 16px;
}

.fairhead-faq-item p {
  margin: 0;
  color: var(--fairhead-grey);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.fairhead-contact-section {
  padding: 72px 0 64px;
  color: var(--fairhead-white);
  background:
    radial-gradient(circle at 12% 42%, rgba(225, 9, 9, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(10, 14, 18, 0.94), rgba(12, 15, 19, 0.9)),
    url("./assets/why-choose-fairhead.jpg") center 42% / cover;
}

.fairhead-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 46px;
  align-items: center;
}

.fairhead-contact-copy {
  min-width: 0;
}

.fairhead-contact-copy h2 {
  max-width: 480px;
  margin: 0;
  color: var(--fairhead-white);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.fairhead-contact-copy > p {
  margin: 15px 0 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.fairhead-cta-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fairhead-cta-detail {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: var(--fairhead-white);
  text-decoration: none;
}

.fairhead-cta-detail > span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--fairhead-red);
}

.fairhead-cta-detail svg {
  width: 29px;
  height: 29px;
  stroke-width: 2.4;
}

.fairhead-cta-detail strong,
.fairhead-cta-detail small {
  grid-column: 2;
  display: block;
  min-width: 0;
  overflow-wrap: break-word;
}

.fairhead-cta-detail strong {
  color: var(--fairhead-white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.fairhead-cta-detail small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.fairhead-quote-card {
  min-width: 0;
  padding: 31px;
  color: var(--fairhead-black);
  background: var(--fairhead-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.fairhead-quote-card h2 {
  margin: 0 0 18px;
  color: var(--fairhead-black);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.fairhead-quote-card h2 span {
  color: var(--fairhead-red);
}

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

.hidden,
.fairhead-form-hidden {
  display: none;
}

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

.fairhead-form-field {
  min-width: 0;
}

.fairhead-form-field-full {
  grid-column: 1 / -1;
}

.fairhead-form-field label {
  display: block;
  margin: 0 0 10px;
  color: var(--fairhead-charcoal);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.fairhead-form-field input,
.fairhead-form-field select,
.fairhead-form-field textarea {
  width: 100%;
  min-height: 64px;
  display: block;
  color: var(--fairhead-black);
  background-color: var(--fairhead-white);
  border: 1.5px solid rgba(17, 18, 21, 0.16);
  border-radius: 14px;
  padding: 0 22px;
  outline: none;
  box-shadow: none;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.fairhead-form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 54px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--fairhead-black) 50%),
    linear-gradient(135deg, var(--fairhead-black) 50%, transparent 50%);
  background-position:
    calc(100% - 28px) 50%,
    calc(100% - 20px) 50%;
  background-size:
    8px 8px,
    8px 8px;
  background-repeat: no-repeat;
}

.fairhead-form-field select:invalid {
  color: #8d95a1;
}

.fairhead-form-field option {
  color: var(--fairhead-black);
  font-weight: 700;
}

.fairhead-form-field textarea {
  min-height: 150px;
  padding-top: 22px;
  resize: vertical;
  line-height: 1.45;
}

.fairhead-form-field input::placeholder,
.fairhead-form-field textarea::placeholder {
  color: #8d95a1;
  opacity: 1;
  font-weight: 700;
}

.fairhead-form-field input:focus,
.fairhead-form-field select:focus,
.fairhead-form-field textarea:focus {
  border-color: var(--fairhead-red);
  box-shadow: 0 0 0 4px rgba(225, 9, 9, 0.12);
}

.fairhead-form-submit {
  width: 100%;
  min-height: 66px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--fairhead-white);
  background: var(--fairhead-red);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(225, 9, 9, 0.24);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.fairhead-form-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fairhead-form-submit:hover {
  transform: translateY(-1px);
  background: var(--fairhead-red-dark);
  box-shadow: 0 16px 34px rgba(225, 9, 9, 0.28);
}

.fairhead-form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.fairhead-privacy-note {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--fairhead-grey);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.fairhead-privacy-note svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.1;
}

.fairhead-form-status {
  min-height: 20px;
  margin-top: 10px;
  color: var(--fairhead-black);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.fairhead-form-status:empty {
  display: none;
}

.fairhead-form-status.is-success {
  color: #146b2e;
}

.fairhead-form-status.is-error {
  color: var(--fairhead-red-dark);
}

.fairhead-footer {
  padding: 34px 0 30px;
  color: rgba(255, 255, 255, 0.74);
  background: #101419;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fairhead-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: start;
}

.fairhead-footer-logo {
  width: 174px;
  height: 70px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px;
  background: var(--fairhead-white);
  border-radius: 13px;
}

.fairhead-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.fairhead-footer h2 {
  margin: 0 0 13px;
  color: var(--fairhead-white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.fairhead-footer p,
.fairhead-footer-column li,
.fairhead-footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.fairhead-footer p {
  margin: 0;
}

.fairhead-footer-column ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

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

.fairhead-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.fairhead-socials a {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--fairhead-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.fairhead-socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fairhead-socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.fairhead-footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fairhead-footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12.5px;
}

.fairhead-footer-credit a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(225, 9, 9, 0.72);
  text-underline-offset: 4px;
}

.fairhead-cookie-settings {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--fairhead-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 850;
  cursor: pointer;
}

.fairhead-cookie-settings:hover,
.fairhead-cookie-settings:focus-visible {
  background: rgba(225, 9, 9, 0.22);
  border-color: rgba(225, 9, 9, 0.62);
}

.fairhead-policy-main {
  background: var(--fairhead-white);
}

.fairhead-policy-hero {
  padding: 76px 0 50px;
  color: var(--fairhead-white);
  background:
    radial-gradient(circle at 12% 42%, rgba(225, 9, 9, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(10, 14, 18, 0.97), rgba(19, 24, 30, 0.96));
}

.fairhead-policy-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--fairhead-white);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.fairhead-policy-hero p:not(.fairhead-lower-eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.fairhead-policy-content {
  padding: 58px 0 84px;
}

.fairhead-policy-container {
  width: min(100%, 900px);
  margin: 0 auto;
  padding-inline: var(--fairhead-gutter);
}

.fairhead-policy-container section {
  padding: 28px 0;
  border-bottom: 1px solid var(--fairhead-border);
}

.fairhead-policy-container section:first-child {
  padding-top: 0;
}

.fairhead-policy-container section:last-child {
  border-bottom: 0;
}

.fairhead-policy-container h2 {
  margin: 0 0 13px;
  color: var(--fairhead-black);
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.fairhead-policy-container p,
.fairhead-policy-container li {
  color: var(--fairhead-grey);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.fairhead-policy-container p {
  margin: 0 0 14px;
}

.fairhead-policy-container p:last-child {
  margin-bottom: 0;
}

.fairhead-policy-container ul {
  margin: 0;
  padding-left: 20px;
}

.fairhead-policy-container a {
  color: var(--fairhead-red);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fairhead-cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: min(520px, calc(100% - 36px));
  color: var(--fairhead-black);
}

.fairhead-cookie-inner {
  padding: 18px;
  background: var(--fairhead-white);
  border: 1px solid rgba(17, 18, 21, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(17, 18, 21, 0.18);
}

.fairhead-cookie-inner p {
  margin: 0;
  color: var(--fairhead-grey);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.55;
}

.fairhead-cookie-inner a {
  color: var(--fairhead-red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fairhead-cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.fairhead-cookie-actions button {
  min-height: 44px;
  padding: 11px 15px;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.fairhead-cookie-accept {
  color: var(--fairhead-white);
  background: var(--fairhead-red);
  border: 1px solid var(--fairhead-red);
}

.fairhead-cookie-reject {
  color: var(--fairhead-black);
  background: var(--fairhead-white);
  border: 1px solid rgba(17, 18, 21, 0.16);
}

.fairhead-cookie-manage {
  color: var(--fairhead-red);
  background: rgba(225, 9, 9, 0.06);
  border: 1px solid rgba(225, 9, 9, 0.18);
}

.fairhead-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 10, 14, 0.62);
}

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

.fairhead-cookie-modal-card {
  width: min(560px, 100%);
  padding: 24px;
  color: var(--fairhead-black);
  background: var(--fairhead-white);
  border: 1px solid rgba(17, 18, 21, 0.1);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.fairhead-cookie-modal-card h2 {
  margin: 0 0 8px;
  color: var(--fairhead-black);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.fairhead-cookie-modal-card p {
  margin: 0 0 18px;
  color: var(--fairhead-grey);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
}

.fairhead-cookie-toggle {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 15px;
  margin-top: 12px;
  border: 1px solid rgba(17, 18, 21, 0.1);
  border-radius: 14px;
  cursor: pointer;
}

.fairhead-cookie-toggle input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--fairhead-red);
}

.fairhead-cookie-toggle strong,
.fairhead-cookie-toggle small {
  display: block;
}

.fairhead-cookie-toggle strong {
  color: var(--fairhead-black);
  font-size: 14px;
  font-weight: 900;
}

.fairhead-cookie-toggle small {
  margin-top: 3px;
  color: var(--fairhead-grey);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.fairhead-cookie-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.fairhead-cookie-modal-actions button {
  min-height: 44px;
  padding: 11px 15px;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

@media (min-width: 1180px) {
  .fairhead-hero-image-wrap {
    margin-right: calc(((100vw - var(--fairhead-container)) / -2) - var(--fairhead-gutter));
  }
}

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

  .fairhead-header-cta {
    padding-inline: 21px;
  }

  .fairhead-hero h1 {
    font-size: clamp(42px, 5vw, 58px);
  }
}

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

  .fairhead-reviews-grid {
    grid-template-columns: 1fr;
  }

  .fairhead-areas-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fairhead-process-grid,
  .fairhead-faq-grid,
  .fairhead-contact-grid {
    grid-template-columns: 1fr;
  }

  .fairhead-process-intro {
    max-width: 640px;
    padding-right: 0;
    border-right: 0;
  }

  .fairhead-process-steps {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fairhead-process-arrow {
    display: none;
  }

  .fairhead-process-step {
    padding: 20px 22px;
    background: var(--fairhead-white);
    border: 1px solid rgba(17, 18, 21, 0.08);
    border-radius: 14px;
    box-shadow: 0 9px 22px rgba(17, 18, 21, 0.035);
  }

  .fairhead-contact-grid {
    gap: 34px;
  }

  .fairhead-contact-copy {
    max-width: 720px;
  }

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

  .fairhead-why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fairhead-why-image,
  .fairhead-why-image img {
    height: 390px;
    min-height: 390px;
  }

  .fairhead-why-content {
    padding: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --fairhead-gutter: 20px;
  }

  body.fairhead-menu-open {
    overflow: auto;
  }

  .fairhead-header-inner {
    min-height: 86px;
    gap: 18px;
  }

  .fairhead-logo-link {
    width: 154px;
    height: 62px;
  }

  .fairhead-nav,
  .fairhead-header-cta {
    display: none;
  }

  .fairhead-menu-toggle {
    display: inline-flex;
  }

  .fairhead-hero {
    background: var(--fairhead-white);
  }

  .fairhead-hero-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .fairhead-hero-content {
    max-width: 680px;
    padding: 48px 0 32px;
  }

  .fairhead-hero h1 {
    max-width: 640px;
    font-size: clamp(40px, 7.4vw, 52px);
  }

  .fairhead-hero-image-wrap {
    min-height: 390px;
    margin-right: 0;
    border-radius: 18px;
  }

  .fairhead-hero-image-wrap::before {
    display: none;
  }

  .fairhead-hero-image-wrap img {
    min-height: 390px;
  }

  .fairhead-trust-strip {
    width: min(calc(100% - 40px), var(--fairhead-container));
    margin-top: -28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fairhead-trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--fairhead-border);
  }

  .fairhead-trust-item:nth-child(odd) {
    border-right: 1px solid var(--fairhead-border);
  }

  .fairhead-trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .fairhead-services-section {
    padding: 66px 0 74px;
  }

  .fairhead-why-section {
    padding: 78px 0 86px;
  }

  .fairhead-areas-section {
    padding: 46px 0 34px;
  }

  .fairhead-reviews-section {
    padding: 64px 0 30px;
  }

  .fairhead-process-section {
    padding: 42px 0;
  }

  .fairhead-faq-section {
    padding: 56px 0 66px;
  }

  .fairhead-contact-section {
    padding: 66px 0 58px;
  }
}

@media (max-width: 640px) {
  :root {
    --fairhead-gutter: 16px;
  }

  .fairhead-page-top {
    padding-bottom: 0;
  }

  .fairhead-topbar-inner {
    min-height: 38px;
    gap: 4px 9px;
    padding-block: 7px;
    font-size: 11px;
    line-height: 1.25;
  }

  .fairhead-header-inner {
    min-height: 78px;
  }

  .fairhead-logo-link {
    width: 145px;
    height: 58px;
  }

  .fairhead-menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 11px;
  }

  .fairhead-hero-content {
    padding: 40px 0 28px;
  }

  .fairhead-eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .fairhead-eyebrow::after {
    width: 34px;
  }

  .fairhead-hero h1 {
    font-size: clamp(38px, 10.8vw, 43px);
    line-height: 1.02;
  }

  .fairhead-hero-copy {
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .fairhead-hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 25px;
  }

  .fairhead-hero-badge {
    min-height: 44px;
  }

  .fairhead-hero-actions {
    gap: 12px;
    margin-top: 28px;
  }

  .fairhead-hero-actions .fairhead-btn {
    width: 100%;
    min-height: 56px;
    padding: 18px 22px;
  }

  .fairhead-hero-image-wrap {
    min-height: 330px;
    border-radius: 16px;
  }

  .fairhead-hero-image-wrap img {
    min-height: 330px;
    object-position: 54% center;
  }

  .fairhead-trust-strip {
    width: min(calc(100% - 32px), var(--fairhead-container));
    margin-top: -22px;
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .fairhead-trust-item,
  .fairhead-trust-item:nth-child(odd),
  .fairhead-trust-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--fairhead-border);
  }

  .fairhead-trust-item:last-child {
    border-bottom: 0;
  }

  .fairhead-trust-item {
    padding: 21px 20px;
  }

  .fairhead-services-section {
    padding: 58px 0 64px;
  }

  .fairhead-section-heading {
    margin-bottom: 28px;
  }

  .fairhead-section-eyebrow {
    font-size: 12px;
  }

  .fairhead-section-heading h2 {
    font-size: clamp(29px, 8.4vw, 33px);
    line-height: 1.05;
  }

  .fairhead-section-heading > p:not(.fairhead-section-eyebrow) {
    font-size: 15px;
  }

  .fairhead-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fairhead-service-card {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 0;
    gap: 14px;
    padding: 20px;
    border-radius: 16px;
  }

  .fairhead-service-icon {
    width: 58px;
    height: 58px;
  }

  .fairhead-service-icon img {
    width: 58px;
    height: 58px;
  }

  .fairhead-service-card h3 {
    font-size: 16px;
  }

  .fairhead-service-card p {
    font-size: 13.5px;
  }

  .fairhead-why-section {
    padding: 64px 0;
  }

  .fairhead-why-grid {
    gap: 26px;
  }

  .fairhead-why-image {
    border-radius: 18px;
  }

  .fairhead-why-image,
  .fairhead-why-image img {
    height: 310px;
    min-height: 310px;
  }

  .fairhead-why-eyebrow {
    font-size: 12px;
  }

  .fairhead-why-content h2 {
    font-size: clamp(30px, 8.1vw, 38px);
    line-height: 1.04;
  }

  .fairhead-why-accent {
    width: 62px;
    height: 4px;
    margin: 16px 0;
  }

  .fairhead-why-copy {
    margin-bottom: 0;
    font-size: 15px;
  }

  .fairhead-why-benefits {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 28px;
  }

  .fairhead-why-benefit {
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
  }

  .fairhead-why-benefit-icon {
    width: 68px;
    height: 68px;
    border-color: rgba(225, 9, 9, 0.2);
    box-shadow: 0 10px 22px rgba(225, 9, 9, 0.075);
  }

  .fairhead-why-benefit-icon svg {
    width: 38px;
    height: 38px;
    stroke-width: 3;
  }

  .fairhead-pound-icon {
    font-size: 40px;
  }

  .fairhead-why-benefit h3 {
    margin-bottom: 5px;
    font-size: 17px;
  }

  .fairhead-why-benefit p {
    font-size: 14px;
  }

  .fairhead-reviews-section {
    padding: 52px 0 24px;
  }

  .fairhead-review-card {
    min-height: 0;
    padding: 24px 22px;
    border-radius: 14px;
  }

  .fairhead-review-card blockquote {
    font-size: 14.5px;
  }

  .fairhead-quote-mark {
    top: 10px;
    right: 18px;
    font-size: 62px;
  }

  .fairhead-areas-section {
    padding: 28px 0 30px;
  }

  .fairhead-areas-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .fairhead-area-pill,
  .fairhead-area-pill-wide {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 12px 10px;
    font-size: 12.5px;
    line-height: 1.2;
  }

  .fairhead-area-pill-wide {
    grid-column: 1 / -1;
  }

  .fairhead-process-section {
    padding: 38px 0;
  }

  .fairhead-process-grid {
    gap: 24px;
  }

  .fairhead-process-intro h2,
  .fairhead-faq-intro h2 {
    font-size: clamp(29px, 8.2vw, 36px);
    line-height: 1.05;
  }

  .fairhead-process-intro p:not(.fairhead-lower-eyebrow),
  .fairhead-faq-intro p:not(.fairhead-lower-eyebrow) {
    max-width: none;
    font-size: 15px;
  }

  .fairhead-process-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 18px;
  }

  .fairhead-process-number {
    top: -14px;
    left: 14px;
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .fairhead-process-icon {
    width: 52px;
    height: 52px;
  }

  .fairhead-process-icon svg {
    width: 38px;
    height: 38px;
  }

  .fairhead-faq-section {
    padding: 48px 0 58px;
  }

  .fairhead-faq-grid {
    gap: 24px;
  }

  .fairhead-faq-item button {
    min-height: 54px;
    padding: 15px 16px;
    font-size: 15px;
  }

  .fairhead-faq-item div {
    padding: 0 16px 16px;
  }

  .fairhead-contact-section {
    padding: 54px 0 46px;
  }

  .fairhead-contact-grid {
    gap: 24px;
  }

  .fairhead-contact-copy h2 {
    font-size: clamp(34px, 9.6vw, 43px);
  }

  .fairhead-contact-copy > p {
    margin: 13px 0 24px;
    font-size: 15.5px;
  }

  .fairhead-cta-details {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .fairhead-cta-detail {
    min-height: 58px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
  }

  .fairhead-cta-detail > span {
    width: 44px;
    height: 44px;
  }

  .fairhead-quote-card {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .fairhead-quote-card h2 {
    margin-bottom: 16px;
    font-size: 21px;
  }

  .fairhead-form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .fairhead-form-field,
  .fairhead-form-field-full {
    grid-column: 1 / -1;
  }

  .fairhead-form-field input,
  .fairhead-form-field select,
  .fairhead-form-field textarea {
    min-height: 58px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 16px;
  }

  .fairhead-form-field select {
    padding-right: 50px;
    background-position:
      calc(100% - 26px) 50%,
      calc(100% - 18px) 50%;
  }

  .fairhead-form-field textarea {
    min-height: 122px;
  }

  .fairhead-form-submit {
    min-height: 54px;
  }

  .fairhead-footer {
    padding: 38px 0 26px;
  }

  .fairhead-footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .fairhead-footer-logo {
    width: 158px;
    height: 64px;
  }

  .fairhead-footer-column ul {
    gap: 8px;
  }

  .fairhead-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .fairhead-policy-hero {
    padding: 58px 0 40px;
  }

  .fairhead-policy-hero h1 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .fairhead-policy-content {
    padding: 42px 0 62px;
  }

  .fairhead-policy-container section {
    padding: 24px 0;
  }

  .fairhead-policy-container p,
  .fairhead-policy-container li {
    font-size: 15px;
  }

  .fairhead-cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .fairhead-cookie-actions,
  .fairhead-cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fairhead-cookie-modal {
    align-items: end;
    padding: 12px;
  }

  .fairhead-cookie-modal-card {
    padding: 20px;
    border-radius: 16px;
  }
}

@media (max-width: 390px) {
  .fairhead-logo-link {
    width: 132px;
    height: 54px;
  }

  .fairhead-hero h1 {
    font-size: 38px;
  }

  .fairhead-hero-copy {
    font-size: 15px;
  }

  .fairhead-service-card {
    padding: 19px;
  }

  .fairhead-area-pill {
    padding-inline: 8px;
    font-size: 12px;
  }

  .fairhead-quote-card {
    padding-inline: 16px;
  }
}

@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;
  }
}
