@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Great+Vibes&family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --fa-black: #030303;
  --fa-black-2: #080808;
  --fa-white: #ffffff;
  --fa-ink: #f8f8f8;
  --fa-muted: #cfcfcf;
  --fa-soft: rgba(255,255,255,.78);
  --fa-line: rgba(255,255,255,.18);
  --fa-line-strong: rgba(255,255,255,.34);
  --fa-green: #5df617;
  --fa-lime: #a7ff10;
  --fa-cyan: #00e4ff;
  --fa-blue: #075cff;
  --fa-card: rgba(255,255,255,.055);
  --fa-card-strong: rgba(255,255,255,.095);
  --fa-radius-lg: 34px;
  --fa-radius-md: 24px;
  --fa-radius-sm: 16px;
  --fa-max: 1220px;
  --fa-shadow-cyan: 0 28px 105px rgba(0, 216, 255, .18);
  --fa-shadow-green: 0 28px 105px rgba(93, 246, 23, .14);
  --fa-gradient: linear-gradient(100deg, var(--fa-green), var(--fa-cyan) 52%, var(--fa-blue));
  --fa-gradient-soft: linear-gradient(135deg, rgba(93,246,23,.16), rgba(0,228,255,.105), rgba(7,92,255,.18));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--fa-white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 10% 6%, rgba(93,246,23,.17), transparent 24rem),
    radial-gradient(circle at 94% 12%, rgba(7,92,255,.20), transparent 26rem),
    radial-gradient(circle at 46% 95%, rgba(0,228,255,.13), transparent 30rem),
    linear-gradient(180deg, #030303 0%, #070707 48%, #020202 100%) !important;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,.02), transparent 18%, transparent 82%, rgba(255,255,255,.02));
}
body a { color: inherit; text-decoration: none; }
body img, body svg { display: block; }
body img { max-width: 100%; height: auto; }
svg { width: 1em; height: 1em; fill: currentColor; }
button { font: inherit; }
.fa-site { min-height: 100vh; color: var(--fa-white); }
.fa-container { width: min(var(--fa-max), calc(100% - 40px)); margin: 0 auto; }
[id] { scroll-margin-top: 92px; }

.fa-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(90deg, rgba(3,3,3,.92) 0%, rgba(6,6,6,.90) 34%, rgba(0,228,255,.07) 68%, rgba(7,92,255,.12) 100%);
  box-shadow: 0 12px 36px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.fa-nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fa-brand {
  display: inline-flex;
  align-items: center;
  min-width: 184px;
}
.fa-brand-header {
  gap: 12px;
  min-width: auto;
}
.fa-brand-header img {
  width: 42px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(93,246,23,.14)) drop-shadow(0 0 18px rgba(0,228,255,.18));
}
.fa-brand-header-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.fa-brand-header-text strong {
  color: var(--fa-white);
  font-family: Oswald, Montserrat, Inter, sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fa-brand-header-text em {
  margin-top: 5px;
  color: var(--fa-soft);
  font-style: normal;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.fa-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--fa-muted);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.fa-menu a {
  position: relative;
  padding: 12px 0;
  transition: color .25s ease;
}
.fa-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--fa-gradient);
  border-radius: 999px;
  transition: transform .25s ease;
}
.fa-menu a:hover { color: var(--fa-white); }
.fa-menu a:hover::after { transform: scaleX(1); }
.fa-call-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--fa-line-strong);
  border-radius: 999px;
  color: var(--fa-white);
  font-weight: 900;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.fa-call-pill svg { width: 18px; height: 18px; }
.fa-call-pill:hover { transform: translateY(-2px); border-color: rgba(0,228,255,.68); box-shadow: 0 14px 46px rgba(0,228,255,.16); }

.fa-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 122px) 0 clamp(52px, 7vw, 92px);
}
.fa-hero::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 6%;
  width: 46vw;
  height: 46vw;
  max-width: 640px;
  max-height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,246,23,.20), transparent 62%);
  filter: blur(14px);
  opacity: .86;
}
.fa-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -8%;
  width: 54vw;
  height: 54vw;
  max-width: 760px;
  max-height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,228,255,.19), rgba(7,92,255,.12) 34%, transparent 66%);
  filter: blur(15px);
  opacity: .95;
}
.fa-hero-glow {
  position: absolute;
  inset: auto -20% -32% -20%;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0,228,255,.16), transparent 68%);
  pointer-events: none;
}
.fa-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.fa-kicker,
.fa-mini-title {
  margin: 0 0 14px;
  color: var(--fa-muted);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.fa-kicker { display: inline-flex; align-items: center; gap: 12px; }
.fa-kicker span {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: var(--fa-gradient);
  box-shadow: 0 0 22px rgba(0,228,255,.38);
}
.fa-hero-logo {
  display: none;
}
.fa-hero h1,
.fa-section-head h2,
.fa-seo-panel-copy h2,
.fa-quote h2,
.fa-showcase-copy h3 {
  margin: 0;
  color: var(--fa-white);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 300;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1.08;
}
.fa-hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(36px, 4.9vw, 68px);
  letter-spacing: .10em;
}
.fa-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--fa-soft);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.68;
}
.fa-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
}
.fa-hero-points span {
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  padding: 9px 12px;
  color: var(--fa-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fa-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.fa-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.045);
  color: var(--fa-white) !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.fa-btn-primary {
  border: 0;
  color: #030303 !important;
  background: var(--fa-gradient);
  box-shadow: var(--fa-shadow-cyan);
}
.fa-btn:hover { transform: translateY(-3px); border-color: rgba(0,228,255,.70); box-shadow: 0 18px 60px rgba(0,228,255,.18); }
.fa-btn-primary:hover { box-shadow: 0 20px 76px rgba(93,246,23,.18), 0 20px 76px rgba(0,228,255,.18); }

.fa-hero-panel { position: relative; }
.fa-panel-frame {
  display: none;
}
.fa-panel-frame::before { display: none; }
.fa-panel-frame img { display: none; }
.fa-floating-card {
  display: none;
}
.fa-floating-card strong {
  display: block;
  margin: 0 0 7px;
  font-family: Montserrat, Inter, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.fa-floating-card span { color: var(--fa-muted); font-size: 13px; line-height: 1.55; }
.fa-float-one { left: -18px; bottom: 32px; }
.fa-float-two { right: -18px; top: 30px; }


.fa-brand-lockup {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 30px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.fa-brand-lockup::after {
  content: "";
  position: absolute;
  left: -4%;
  top: 18%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,246,23,.12), rgba(0,228,255,.10), transparent 70%);
  filter: blur(22px);
  z-index: -1;
}
.fa-brand-mark-wrap {
  position: relative;
  flex: 0 0 clamp(130px, 14vw, 176px);
  display: grid;
  place-items: center;
  min-height: clamp(130px, 14vw, 176px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 30%, rgba(93,246,23,.18), transparent 34%),
    radial-gradient(circle at 76% 68%, rgba(7,92,255,.16), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.26);
}
.fa-brand-mark-wrap::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.07);
  pointer-events: none;
}
.fa-brand-mark {
  position: relative;
  width: 78%;
  max-width: 130px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.30));
}
.fa-brand-type { min-width: 0; }
.fa-brand-title {
  margin: 0;
  color: var(--fa-white);
  font-family: Oswald, Montserrat, Inter, sans-serif;
  font-size: clamp(68px, 8.8vw, 116px);
  line-height: .88;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255,255,255,.06);
}
.fa-brand-subtitle {
  margin-top: 8px;
  color: rgba(255,255,255,.92);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.fa-brand-script {
  margin-top: 8px;
  color: rgba(255,255,255,.95);
  font-family: 'Great Vibes', 'Brush Script MT', cursive;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1;
}
.fa-brand-underline {
  display: block;
  width: clamp(180px, 36vw, 280px);
  height: 5px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fa-green), var(--fa-cyan) 54%, var(--fa-blue));
  box-shadow: 0 0 16px rgba(0,228,255,.22);
}
.fa-hero-feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 36px;
  background:
    radial-gradient(circle at 82% 14%, rgba(7,92,255,.14), transparent 26%),
    radial-gradient(circle at 14% 82%, rgba(93,246,23,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding: clamp(26px, 3.8vw, 36px);
  box-shadow: 0 28px 88px rgba(0,0,0,.32), var(--fa-shadow-cyan);
}
.fa-hero-feature-card h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fa-hero-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.fa-hero-feature-item {
  position: relative;
  padding: 16px 16px 16px 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background: rgba(0,0,0,.24);
}
.fa-hero-feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: var(--fa-gradient);
}
.fa-hero-feature-item strong {
  display: block;
  color: var(--fa-white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.fa-hero-feature-item span {
  display: block;
  margin-top: 8px;
  color: var(--fa-soft);
  font-size: 15px;
  line-height: 1.62;
}
.fa-hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.fa-inline-contact {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: var(--fa-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.fa-inline-contact:hover {
  transform: translateY(-2px);
  border-color: rgba(0,228,255,.64);
  box-shadow: 0 14px 36px rgba(0,228,255,.16);
}

.fa-section { position: relative; padding: clamp(70px, 8vw, 112px) 0; }
.fa-section-head { max-width: 900px; margin: 0 auto 42px; text-align: center; }
.fa-section-head h2,
.fa-quote h2 { font-size: clamp(34px, 5vw, 64px); }
.fa-section-head p {
  max-width: 790px;
  margin: 16px auto 0;
  color: var(--fa-soft);
  font-size: 18px;
  line-height: 1.72;
}
.fa-seo-showcase {
  overflow: hidden;
  border-top: 1px solid var(--fa-line);
  border-bottom: 1px solid var(--fa-line);
  background:
    radial-gradient(circle at 14% 8%, rgba(93,246,23,.12), transparent 28rem),
    radial-gradient(circle at 92% 38%, rgba(0,228,255,.13), transparent 30rem),
    linear-gradient(135deg, rgba(255,255,255,.018), rgba(255,255,255,.052), rgba(255,255,255,.018));
}
.fa-seo-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(350px, .76fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--fa-radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.032)),
    rgba(3,3,3,.76);
  box-shadow: 0 26px 90px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.fa-seo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(93,246,23,.35), transparent 32%, rgba(0,228,255,.30) 68%, rgba(7,92,255,.22));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.fa-seo-panel-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--fa-white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: .115em;
  text-transform: uppercase;
}
.fa-seo-panel-copy p:not(.fa-mini-title) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--fa-soft);
  font-size: 17px;
  line-height: 1.78;
}
.fa-seo-link-panel {
  position: relative;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.fa-service-menu-title {
  margin: 0 0 14px;
  color: var(--fa-white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.fa-service-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fa-service-link-grid a {
  position: relative;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  color: var(--fa-white);
  text-decoration: none !important;
  background: rgba(3,3,3,.46);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.fa-service-link-grid a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--fa-gradient);
  opacity: .82;
}
.fa-service-link-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(0,228,255,.56);
  background: rgba(255,255,255,.068);
  box-shadow: 0 16px 44px rgba(0,228,255,.12);
}
.fa-service-link-grid a span {
  color: var(--fa-muted);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.fa-service-link-grid a strong {
  color: var(--fa-white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
}
.fa-service-link-grid a:nth-child(7) { grid-column: 1 / -1; }

.fa-service-grid,
.fa-special-grid,
.fa-process-grid,
.fa-why-grid {
  display: grid;
  gap: 18px;
}
.fa-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fa-why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fa-special-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fa-process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fa-service-card,
.fa-why-card,
.fa-special-card,
.fa-process-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--fa-radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.032));
  box-shadow: 0 26px 70px rgba(0,0,0,.26);
}
.fa-service-card::after,
.fa-why-card::after,
.fa-special-card::after,
.fa-process-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,228,255,.20), transparent 66%);
  pointer-events: none;
}
.fa-service-card { min-height: 310px; padding: 32px; }
.fa-service-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  margin-bottom: 24px;
  color: var(--fa-white);
  background: rgba(255,255,255,.035);
}
.fa-service-icon svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.fa-service-card h3,
.fa-why-card h3,
.fa-special-card h3,
.fa-process-card h3 {
  margin: 0 0 12px;
  color: var(--fa-white);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.fa-service-card h3 { font-size: 24px; }
.fa-service-card p,
.fa-why-card p,
.fa-special-card p,
.fa-process-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--fa-soft);
  line-height: 1.68;
}
.fa-dark-band {
  border-top: 1px solid var(--fa-line);
  border-bottom: 1px solid var(--fa-line);
  background:
    radial-gradient(circle at 12% 20%, rgba(93,246,23,.10), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(7,92,255,.14), transparent 30%),
    rgba(255,255,255,.028);
}
.fa-why-card { padding: 24px; min-height: 250px; }
.fa-tick {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 18px;
  color: #040404;
  font-weight: 900;
  background: var(--fa-gradient);
  box-shadow: 0 0 28px rgba(0,228,255,.24);
}
.fa-why-card h3 { font-size: 18px; }
.fa-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.fa-stats div {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--fa-radius-md);
  padding: 24px;
  text-align: center;
  background: rgba(0,0,0,.25);
}
.fa-stats strong {
  display: block;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: .04em;
  background: var(--fa-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fa-stats span { color: var(--fa-muted); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
.fa-special-card { padding: 28px; min-height: 230px; }
.fa-special-card::before {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: var(--fa-gradient);
  box-shadow: 0 0 20px rgba(0,228,255,.26);
}
.fa-special-card h3 { font-size: 19px; }

.fa-gallery-section {
  overflow: hidden;
  border-top: 1px solid var(--fa-line);
  border-bottom: 1px solid var(--fa-line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.045)),
    radial-gradient(circle at 50% 40%, rgba(0,228,255,.085), transparent 46%);
}
.fa-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--fa-radius-lg);
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: var(--fa-shadow-cyan);
}
.fa-showcase-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.13);
  background: #111;
}
.fa-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: opacity .42s ease, transform .42s ease, filter .42s ease;
}
.fa-showcase.is-changing .fa-showcase-media img { opacity: .16; transform: scale(1.025); filter: blur(3px); }
.fa-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
}
.fa-showcase-copy h3 {
  max-width: 100%;
  font-size: clamp(26px, 3.3vw, 42px);
  letter-spacing: .08em;
  line-height: 1.04;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.fa-showcase-copy p[data-fa-gallery-subtitle] {
  margin: 14px 0 0;
  color: var(--fa-white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.fa-showcase-copy p[data-fa-gallery-description] {
  margin: 18px 0 0;
  color: var(--fa-soft);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.68;
}
.fa-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: var(--fa-white);
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.fa-gallery-arrow:hover { transform: translateY(-50%) scale(1.06); border-color: rgba(0,228,255,.72); background: rgba(0,0,0,.80); }
.fa-gallery-prev { left: 18px; }
.fa-gallery-next { right: 18px; }
.fa-gallery-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.fa-gallery-dots button {
  width: 34px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.30);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.fa-gallery-dots button.is-active { width: 56px; background: var(--fa-gradient); }
.fa-flow-gallery {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--fa-radius-md);
}
.fa-flow-gallery::before,
.fa-flow-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}
.fa-flow-gallery::before { left: 0; background: linear-gradient(90deg, #080808, transparent); }
.fa-flow-gallery::after { right: 0; background: linear-gradient(270deg, #080808, transparent); }
.fa-flow-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 6px 6px 14px;
  scroll-snap-type: x mandatory;
}
.fa-flow-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  color: var(--fa-white);
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.fa-flow-card:hover,
.fa-flow-card.is-active { transform: translateY(-4px); border-color: rgba(0,228,255,.66); box-shadow: 0 18px 55px rgba(0,228,255,.13); }
.fa-flow-card img { width: 100%; height: 168px; object-fit: cover; }
.fa-flow-card span {
  display: block;
  padding: 13px 15px 15px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fa-process-section { background: rgba(0,0,0,.16); }
.fa-process-card { min-height: 250px; padding: 26px; }
.fa-process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: transparent;
  background: var(--fa-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.fa-process-card h3 { font-size: 18px; }

.fa-quote {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 128px) 0;
}
.fa-quote::before {
  content: "";
  position: absolute;
  inset: 12% -16% auto auto;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,246,23,.16), rgba(0,228,255,.12), transparent 66%);
  filter: blur(12px);
}
.fa-quote-box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(93,246,23,.12), rgba(0,228,255,.10), rgba(7,92,255,.14)),
    rgba(255,255,255,.045);
  box-shadow: 0 30px 100px rgba(0,0,0,.36), var(--fa-shadow-cyan);
  padding: clamp(26px, 5vw, 54px);
}
.fa-quote h2 { font-size: clamp(42px, 6vw, 76px); }
.fa-quote-copy p:not(.fa-mini-title) { max-width: 760px; margin: 20px 0 0; color: var(--fa-soft); font-size: 18px; line-height: 1.72; }
.fa-contact-panel { display: grid; gap: 14px; }
.fa-contact-button {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(0,0,0,.42);
  padding: 12px 16px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.fa-contact-button:hover { transform: translateY(-3px); border-color: rgba(0,228,255,.66); background: rgba(0,0,0,.62); }
.fa-contact-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #030303;
  background: var(--fa-gradient);
}
.fa-contact-icon svg { width: 26px; height: 26px; }
.fa-contact-button small {
  display: block;
  color: var(--fa-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.fa-contact-button strong {
  display: block;
  margin-top: 4px;
  color: var(--fa-white);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fa-editable-content { color: var(--fa-soft); line-height: 1.75; }
.fa-editable-content:empty { display: none; }
.fa-content-page .fa-editable-content {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--fa-radius-md);
  background: rgba(255,255,255,.045);
  padding: clamp(24px, 4vw, 46px);
}
.fa-content-page .fa-editable-content h1,
.fa-content-page .fa-editable-content h2,
.fa-content-page .fa-editable-content h3 { color: var(--fa-white); }
.fa-footer {
  border-top: 1px solid var(--fa-line);
  padding: 34px 0;
  color: var(--fa-muted);
  background: rgba(0,0,0,.34);
}
.fa-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fa-footer img { width: 120px; margin-bottom: 10px; }
.fa-footer p { margin: 0; }
.fa-footer strong { display: block; color: var(--fa-white); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .12em; }
.fa-footer span { display: block; line-height: 1.65; }

.fa-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s ease;
}
.fa-reveal.is-visible { opacity: 1; transform: translateY(0); }
.fa-reveal:nth-child(2) { transition-delay: .08s; }
.fa-reveal:nth-child(3) { transition-delay: .14s; }
.fa-reveal:nth-child(4) { transition-delay: .20s; }
.fa-reveal:nth-child(5) { transition-delay: .26s; }
.fa-reveal:nth-child(6) { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fa-reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .fa-menu { display: none; }
  .fa-hero-grid,
  .fa-seo-panel,
  .fa-showcase,
  .fa-quote-box { grid-template-columns: 1fr; }
  .fa-hero-panel { max-width: 720px; margin: 0 auto; }
  .fa-service-grid,
  .fa-special-grid { grid-template-columns: 1fr 1fr; }
  .fa-why-grid,
  .fa-process-grid { grid-template-columns: 1fr 1fr; }
  .fa-showcase-media, .fa-showcase-media img { min-height: 430px; }
}

@media (max-width: 720px) {
  .fa-contact-button strong { font-size: 13px; }

  .fa-service-link-grid { grid-template-columns: 1fr; }
  .fa-service-link-grid a:nth-child(7) { grid-column: auto; }

  .fa-container { width: min(100% - 28px, var(--fa-max)); }
  .fa-nav { min-height: 78px; }
  .fa-brand { min-width: 0; }
  .fa-brand img { width: 170px; }
  .fa-call-pill { padding: 0 13px; min-height: 42px; font-size: 13px; }
  .fa-call-pill svg { display: none; }
  .fa-hero { padding-top: 58px; }
  .fa-hero h1 { letter-spacing: .08em; }
  .fa-actions { display: grid; grid-template-columns: 1fr; }
  .fa-btn { width: 100%; }
  .fa-floating-card { display: none; }
  .fa-service-grid,
  .fa-special-grid,
  .fa-why-grid,
  .fa-process-grid,
  .fa-stats { grid-template-columns: 1fr; }
  .fa-service-card,
  .fa-special-card,
  .fa-why-card,
  .fa-process-card { min-height: auto; padding: 24px; }
  .fa-showcase { padding: 12px; border-radius: 26px; }
  .fa-showcase-media, .fa-showcase-media img { min-height: 310px; }
  .fa-showcase-copy { padding: 22px 8px 8px; }
  .fa-gallery-arrow { width: 42px; height: 42px; font-size: 34px; }
  .fa-gallery-prev { left: 10px; }
  .fa-gallery-next { right: 10px; }
  .fa-flow-card { flex-basis: 235px; }
  .fa-flow-card img { height: 142px; }
  .fa-quote-box { border-radius: 26px; padding: 22px; }
  .fa-contact-panel { min-width: 0; }
  .fa-contact-button { grid-template-columns: 48px minmax(0,1fr); min-height: 72px; padding: 10px 12px; }
  .fa-contact-icon { width: 46px; height: 46px; }
  .fa-footer-grid { flex-direction: column; align-items: flex-start; }
}


@media (max-width: 1040px) {
  .fa-brand-lockup { padding: 0; }
  .fa-brand-title { font-size: clamp(60px, 10vw, 94px); }
}

@media (max-width: 720px) {
  .fa-brand-lockup {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
  }
  .fa-brand-mark-wrap { flex-basis: auto; width: 120px; min-height: 120px; }
  .fa-brand-title { font-size: clamp(42px, 14vw, 66px); letter-spacing: .05em; }
  .fa-brand-subtitle { font-size: 15px; letter-spacing: .18em; }
  .fa-brand-script { font-size: 34px; }
  .fa-brand-underline { width: 180px; }
  .fa-hero-feature-card { border-radius: 24px; padding: 20px; }
  .fa-hero-feature-item { padding: 14px 14px 14px 18px; }
  .fa-inline-contact { width: 100%; justify-content: flex-start; overflow-wrap: anywhere; }
}

@media (max-width: 430px) {
  .fa-call-pill { display: none; }
  .fa-hero-logo { display: none; }
  .fa-section-head h2, .fa-seo-panel-copy h2, .fa-quote h2 { letter-spacing: .08em; }
  .fa-showcase-media, .fa-showcase-media img { min-height: 260px; }
}


/* Hero redesign v3 */
.fa-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 8vw, 124px) 0 clamp(62px, 7vw, 96px);
}
.fa-hero::before {
  content: "";
  position: absolute;
  left: -12%;
  top: 10%;
  width: 44vw;
  height: 44vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,246,23,.22), transparent 64%);
  filter: blur(22px);
  opacity: .82;
}
.fa-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -6%;
  width: 50vw;
  height: 50vw;
  max-width: 760px;
  max-height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,228,255,.18), rgba(7,92,255,.13) 34%, transparent 66%);
  filter: blur(22px);
  opacity: .94;
}
.fa-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, .88fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}
.fa-brand-lockup {
  display: grid;
  grid-template-columns: clamp(120px, 12vw, 170px) minmax(0,1fr);
  gap: clamp(12px, 1.8vw, 24px);
  align-items: center;
  margin: 10px 0 18px;
}
.fa-brand-mark {
  width: 100%;
  max-width: 170px;
  filter: drop-shadow(0 16px 46px rgba(0,0,0,.30)) drop-shadow(0 0 24px rgba(0,228,255,.10));
  mix-blend-mode: screen;
}
.fa-brand-block {
  min-width: 0;
}
.fa-brand-title {
  margin: 0;
  font-family: Inter, Montserrat, Arial, sans-serif;
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 900;
  letter-spacing: .05em;
  line-height: .95;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(0,0,0,.24);
}
.fa-brand-divider {
  width: min(100%, 420px);
  height: 2px;
  margin: 10px 0 10px;
  background: linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.9) 18%, rgba(255,255,255,.9) 82%, rgba(255,255,255,.0));
  opacity: .88;
}
.fa-brand-services {
  color: var(--fa-white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(15px, 1.5vw, 24px);
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  white-space: nowrap;
}
.fa-brand-script {
  margin-top: 10px;
  color: #fff;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
}
.fa-brand-stroke {
  width: min(240px, 72%);
  height: 6px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--fa-gradient);
  box-shadow: 0 0 18px rgba(0,228,255,.24);
}
.fa-hero h1 {
  max-width: 760px;
  font-size: clamp(30px, 3.5vw, 50px);
  letter-spacing: .08em;
  line-height: 1.14;
}
.fa-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--fa-soft);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.72;
}
.fa-hero-panel {
  position: relative;
}
.fa-hero-sidepanel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)),
    radial-gradient(circle at 84% 14%, rgba(7,92,255,.22), transparent 34%),
    radial-gradient(circle at 10% 84%, rgba(93,246,23,.15), transparent 34%),
    rgba(4,4,4,.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 30px 80px rgba(0,0,0,.34), var(--fa-shadow-cyan);
}
.fa-hero-sidepanel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(93,246,23,.65), rgba(0,228,255,.26), rgba(7,92,255,.62));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .68;
}
.fa-hero-sidepanel-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}
.fa-hero-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.fa-hero-feature-card {
  min-height: 126px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  padding: 18px;
}
.fa-hero-feature-card strong {
  display: block;
  margin: 0 0 10px;
  color: var(--fa-white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.fa-hero-feature-card span {
  display: block;
  color: var(--fa-soft);
  font-size: 15px;
  line-height: 1.55;
}
.fa-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 18px;
}
.fa-hero-metrics div {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  padding: 16px 14px;
}
.fa-hero-metrics strong {
  display: block;
  color: var(--fa-white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.fa-hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--fa-soft);
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 1040px) {
  .fa-hero-grid { grid-template-columns: 1fr; }
  .fa-hero-panel { max-width: 820px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .fa-brand-lockup { grid-template-columns: 1fr; }
  .fa-brand-mark { max-width: 140px; }
  .fa-brand-services { white-space: normal; letter-spacing: .24em; }
  .fa-hero-feature-grid,
  .fa-hero-metrics { grid-template-columns: 1fr; }
  .fa-hero-sidepanel { border-radius: 26px; }
  .fa-hero-feature-card { min-height: auto; }
}


/* === Final hero/header polish override === */
.fa-brand-header {
  gap: 12px;
  min-width: auto;
}
.fa-brand-header img {
  width: 42px !important;
  height: auto;
  background: transparent !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 0 16px rgba(93,246,23,.14)) drop-shadow(0 0 18px rgba(0,228,255,.18));
}
.fa-brand-header-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.fa-brand-header-text strong {
  color: var(--fa-white);
  font-family: Oswald, Montserrat, Inter, sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fa-brand-header-text em {
  margin-top: 5px;
  color: var(--fa-soft);
  font-style: normal;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.fa-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: clamp(34px, 5vw, 80px);
}
.fa-brand-lockup {
  position: relative;
  display: grid;
  grid-template-columns: clamp(120px, 12vw, 170px) minmax(0,1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  margin: 10px 0 18px;
}
.fa-brand-lockup::before {
  content: "";
  position: absolute;
  left: -6%;
  top: 10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,246,23,.12), rgba(0,228,255,.10), transparent 72%);
  filter: blur(22px);
  z-index: -1;
}
.fa-brand-mark {
  width: 100%;
  max-width: 150px;
  display: block;
  background: transparent !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,.30)) drop-shadow(0 0 12px rgba(0,228,255,.10));
}
.fa-brand-block { min-width: 0; }
.fa-brand-title {
  font-family: Oswald, Montserrat, Inter, sans-serif;
  font-size: clamp(58px, 7vw, 110px);
  font-weight: 600;
  letter-spacing: .06em;
  line-height: .92;
}
.fa-brand-divider {
  width: min(100%, 420px);
  height: 2px;
  margin: 10px 0 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.86) 18%, rgba(255,255,255,.86) 82%, rgba(255,255,255,0));
}
.fa-brand-services {
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 700;
  letter-spacing: .34em;
}
.fa-brand-script {
  margin-top: 8px;
  font-family: 'Great Vibes', 'Brush Script MT', cursive;
  font-size: clamp(30px, 2.8vw, 42px);
}
.fa-brand-stroke {
  width: min(240px, 72%);
  height: 5px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--fa-gradient);
  box-shadow: 0 0 18px rgba(0,228,255,.24);
}
.fa-hero-sidepanel {
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)),
    radial-gradient(circle at 84% 14%, rgba(7,92,255,.22), transparent 34%),
    radial-gradient(circle at 10% 84%, rgba(93,246,23,.15), transparent 34%),
    rgba(4,4,4,.76);
}
.fa-hero-sidepanel-head h2 {
  font-size: clamp(28px, 3vw, 40px);
}
@media (max-width: 1040px) {
  .fa-hero-grid { grid-template-columns: 1fr; }
  .fa-hero-panel { max-width: 820px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .fa-brand-header img { width: 38px !important; }
  .fa-brand-header-text strong { font-size: 24px; }
  .fa-brand-header-text em { font-size: 9px; letter-spacing: .22em; }
  .fa-brand-lockup { grid-template-columns: 1fr; gap: 16px; }
  .fa-brand-mark { max-width: 132px; }
  .fa-brand-title { font-size: clamp(42px, 14vw, 66px); }
  .fa-brand-services { white-space: normal; letter-spacing: .24em; }
  .fa-hero-feature-grid,
  .fa-hero-metrics { grid-template-columns: 1fr; }
  .fa-hero-sidepanel { border-radius: 26px; }
  .fa-hero-feature-card { min-height: auto; }
}


/* Logo update v4 */
.fa-brand img {
  width: clamp(180px, 17vw, 240px);
  opacity: .98;
  filter: drop-shadow(0 0 20px rgba(0,228,255,.10)) drop-shadow(0 12px 20px rgba(0,0,0,.22));
  mask-image: none;
  -webkit-mask-image: none;
}
.fa-hero-brand {
  display: block;
  width: min(650px, 100%);
  margin: 8px 0 20px;
  filter: drop-shadow(0 18px 45px rgba(0,0,0,.28)) drop-shadow(0 0 26px rgba(0,228,255,.08));
}
@media (max-width: 720px) {
  .fa-brand img { width: 165px; }
  .fa-hero-brand { width: min(420px, 96%); }
}


/* === SEO polish final pass v3 === */
.fa-editable-content a,
.fa-footer-links a {
  color: var(--fa-white);
  text-decoration: underline;
  text-decoration-color: rgba(0,228,255,.54);
  text-underline-offset: .22em;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.fa-editable-content a:hover,
.fa-footer-links a:hover { color: var(--fa-cyan); text-decoration-color: var(--fa-green); }
.fa-card-link {
  color: inherit;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.fa-card-link:hover {
  color: var(--fa-cyan);
  border-color: rgba(93,246,23,.55);
}
.fa-service-card h3,
.fa-special-card h3 { line-height: 1.22; }
.fa-service-card p,
.fa-special-card p,
.fa-why-card p,
.fa-process-card p { text-wrap: pretty; }
.fa-service-area { background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.055)); }
.fa-service-area-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .54fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--fa-radius-lg);
  background: var(--fa-gradient-soft), rgba(255,255,255,.045);
  box-shadow: var(--fa-shadow-cyan);
  padding: clamp(26px, 5vw, 54px);
}
.fa-service-area-box h2 { font-size: clamp(32px, 4.4vw, 58px); }
.fa-service-area-box p:not(.fa-mini-title) { color: var(--fa-soft); font-size: 17px; line-height: 1.72; max-width: 820px; }
.fa-area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.fa-area-chips span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.36);
  color: var(--fa-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0 15px;
}
.fa-service-content-page .fa-editable-content section {
  margin: 0 0 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.fa-service-content-page .fa-editable-content section:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.fa-service-content-page .fa-editable-content .hero,
.fa-service-content-page .fa-editable-content .cta {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  padding: clamp(22px, 4vw, 36px);
}
.fa-service-content-page .fa-editable-content h1 {
  margin-top: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fa-service-content-page .fa-editable-content h2 { font-size: clamp(24px, 3vw, 36px); margin-top: 0; }
.fa-service-content-page .fa-editable-content ul { padding-left: 1.2em; }
.fa-service-content-page .fa-editable-content li { margin: 8px 0; }
.fa-showcase-media img { background: #0b0b0b; }
@media (max-width: 1040px) {
  .fa-service-area-box { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .fa-service-area-box { border-radius: 26px; padding: 24px; }
  .fa-area-chips span { width: 100%; justify-content: center; }
}

/* === Final professional polish pass v5 === */
html { scroll-padding-top: 118px; }
[id] { scroll-margin-top: 118px; }

.fa-topbar {
  background:
    linear-gradient(90deg, rgba(3,3,3,.94) 0%, rgba(6,6,6,.92) 48%, rgba(0,228,255,.055) 76%, rgba(7,92,255,.10) 100%);
}
.fa-nav { min-height: 82px; }
.fa-brand img {
  width: clamp(150px, 13vw, 198px) !important;
  max-height: 62px;
  object-fit: contain;
}
.fa-call-pill { min-height: 42px; padding: 0 16px; }

.fa-hero {
  padding-top: clamp(56px, 6.2vw, 96px);
  padding-bottom: clamp(58px, 6.8vw, 92px);
}
.fa-hero-brand {
  width: min(360px, 74%) !important;
  max-height: 122px;
  object-fit: contain;
  margin: 8px 0 22px;
  opacity: .94;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.28)) drop-shadow(0 0 16px rgba(0,228,255,.08));
}
.fa-hero h1 {
  max-width: 760px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 500;
  letter-spacing: -.018em;
  line-height: 1.06;
  text-transform: none;
  text-wrap: balance;
}
.fa-lead {
  max-width: 720px;
  font-size: clamp(16px, 1.38vw, 19px);
  line-height: 1.65;
}
.fa-kicker,
.fa-mini-title { letter-spacing: .20em; }
.fa-hero-points span { letter-spacing: .06em; }
.fa-hero-sidepanel { box-shadow: 0 24px 76px rgba(0,0,0,.30), 0 22px 80px rgba(0,216,255,.12); }
.fa-hero-sidepanel-head h2 {
  text-transform: none;
  letter-spacing: -.01em;
  line-height: 1.12;
}
.fa-hero-feature-card strong,
.fa-hero-metrics strong { letter-spacing: .12em; }

.fa-section { scroll-margin-top: 118px; }
.fa-section-head h2,
.fa-seo-panel-copy h2,
.fa-quote h2 {
  text-wrap: balance;
}

.fa-showcase { grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); }
.fa-showcase-copy { min-width: 0; }
.fa-showcase-copy h3 {
  font-size: clamp(25px, 2.55vw, 35px) !important;
  letter-spacing: .035em !important;
  line-height: 1.14 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  text-wrap: balance;
  text-transform: uppercase;
}
.fa-showcase-copy p[data-fa-gallery-subtitle] {
  letter-spacing: .14em;
  overflow-wrap: normal;
  word-break: normal;
}
.fa-flow-card span { letter-spacing: .10em; }
.fa-gallery-section .fa-section-head { margin-bottom: 36px; }

.fa-contact-button strong {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
}
.fa-footer img { width: 104px; }
.fa-footer strong { letter-spacing: .10em; }

@media (max-width: 1040px) {
  html { scroll-padding-top: 106px; }
  [id], .fa-section { scroll-margin-top: 106px; }
  .fa-showcase { grid-template-columns: 1fr; }
  .fa-showcase-copy { padding: 28px 24px 18px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 92px; }
  [id], .fa-section { scroll-margin-top: 92px; }
  .fa-container { width: min(100% - 30px, var(--fa-max)); }
  .fa-nav { min-height: 68px; gap: 12px; }
  .fa-brand img {
    width: 126px !important;
    max-height: 48px;
  }
  .fa-topbar { border-bottom-color: rgba(255,255,255,.10); }
  .fa-hero { padding-top: 44px; }
  .fa-hero-brand { display: none !important; }
  .fa-hero h1 {
    font-size: clamp(32px, 10vw, 46px);
    letter-spacing: -.016em;
    line-height: 1.08;
    margin-top: 10px;
  }
  .fa-lead { font-size: 16px; line-height: 1.62; }
  .fa-kicker,
  .fa-mini-title { font-size: 11px; letter-spacing: .16em; }
  .fa-kicker span { width: 38px; }
  .fa-hero-points { gap: 8px; margin-top: 22px; }
  .fa-hero-points span { font-size: 11px; padding: 8px 10px; }
  .fa-actions { margin-top: 24px; }
  .fa-hero-sidepanel-head h2 { font-size: clamp(26px, 8vw, 34px); }
  .fa-hero-feature-card { padding: 16px; }
  .fa-seo-panel { padding: 22px; border-radius: 26px; }
  .fa-section-head h2,
  .fa-seo-panel-copy h2 { font-size: clamp(28px, 8.5vw, 42px); letter-spacing: .04em; }
  .fa-showcase-media, .fa-showcase-media img { min-height: 290px; }
  .fa-showcase-copy h3 { font-size: clamp(24px, 7vw, 30px) !important; letter-spacing: .03em !important; }
  .fa-showcase-copy { padding: 20px 8px 10px; }
  .fa-quote h2 { font-size: clamp(34px, 10vw, 48px); letter-spacing: .05em; }
  .fa-contact-button { grid-template-columns: 44px minmax(0,1fr); }
  .fa-contact-icon { width: 42px; height: 42px; }
}

@media (max-width: 430px) {
  .fa-brand img { width: 118px !important; }
  .fa-hero h1 { font-size: clamp(30px, 10.5vw, 40px); }
  .fa-showcase-media, .fa-showcase-media img { min-height: 250px; }
  .fa-flow-card { flex-basis: 220px; }
}


/* === Hero reset to v2/v3 proportions, with final polish v8 === */
.fa-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr) !important;
  gap: clamp(34px, 5vw, 80px) !important;
  align-items: center;
}
.fa-hero-copy {
  max-width: 780px;
}
.fa-hero-brand {
  display: block !important;
  width: min(680px, 100%) !important;
  max-width: 100% !important;
  max-height: none !important;
  height: auto !important;
  margin: 8px 0 20px !important;
  object-fit: contain !important;
  opacity: .98;
  filter: drop-shadow(0 18px 45px rgba(0,0,0,.28)) drop-shadow(0 0 26px rgba(0,228,255,.08));
}
.fa-hero h1 {
  max-width: 760px !important;
  font-size: clamp(30px, 3.5vw, 50px) !important;
  font-weight: 800 !important;
  letter-spacing: .078em !important;
  line-height: 1.14 !important;
  text-transform: uppercase !important;
  margin-top: 12px !important;
  text-wrap: balance;
}
.fa-lead {
  max-width: 760px;
  margin-top: 18px;
}
@media (max-width: 1180px) {
  .fa-hero-brand {
    width: min(620px, 100%) !important;
  }
  .fa-hero h1 {
    font-size: clamp(29px, 3.35vw, 46px) !important;
    letter-spacing: .07em !important;
  }
}
@media (max-width: 1040px) {
  .fa-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .fa-hero-copy,
  .fa-hero-panel {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .fa-hero-brand {
    width: min(620px, 94%) !important;
  }
  .fa-hero h1 {
    max-width: 780px !important;
    font-size: clamp(30px, 5.2vw, 48px) !important;
  }
}
@media (max-width: 720px) {
  .fa-hero {
    padding-top: 42px !important;
  }
  .fa-hero-brand {
    display: block !important;
    width: min(420px, 96%) !important;
    max-height: none !important;
    margin: 8px 0 18px !important;
  }
  .fa-hero h1 {
    font-size: clamp(26px, 8vw, 36px) !important;
    letter-spacing: .055em !important;
    line-height: 1.12 !important;
    margin-top: 8px !important;
  }
}
@media (max-width: 430px) {
  .fa-hero-brand {
    width: min(365px, 98%) !important;
  }
  .fa-hero h1 {
    font-size: clamp(24px, 7.4vw, 32px) !important;
    letter-spacing: .05em !important;
    line-height: 1.13 !important;
  }
}
