/* Folkes Global Enterprise — public IT consulting site.
   Standalone from the Folkes Investment Group marketing stylesheet. */

:root {
  --fge-ink: #111111;
  --fge-ink-2: #1a1a1a;
  --fge-ink-3: #232323;
  --fge-white: #ffffff;
  --fge-mist: #f5f5f5;
  --fge-body: rgb(63, 64, 63);
  --fge-body-dim: rgba(255, 255, 255, 0.68);
  --fge-accent: rgb(211, 37, 37);
  --fge-accent-deep: #a71c1c;
  --fge-line: rgba(17, 17, 17, 0.12);
  --fge-line-dark: rgba(255, 255, 255, 0.14);
  --fge-display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --fge-ui: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fge-wrap: 1200px;
  --fge-shadow: 0 26px 60px rgba(17, 17, 17, 0.12);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body.fge-body {
  font-family: var(--fge-ui);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--fge-body);
  background: var(--fge-white);
  -webkit-font-smoothing: antialiased;
}

body.fge-nav-lock {
  overflow: hidden;
}

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

a {
  color: var(--fge-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--fge-accent);
  outline-offset: 3px;
}

.fge-navbar a:focus-visible,
.fge-footer a:focus-visible,
.fge-cta a:focus-visible,
.fge-expertise a:focus-visible {
  outline-color: #ffffff;
}

h1,
h2,
h3 {
  font-family: var(--fge-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.96;
  color: var(--fge-ink);
  margin: 0;
}

p {
  margin: 0 0 1.1rem;
}

p:last-child {
  margin-bottom: 0;
}

.fge-wrap {
  width: min(100% - 2.5rem, var(--fge-wrap));
  margin-inline: auto;
}

.fge-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.fge-skip {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 120;
  padding: 0.7rem 1rem;
  background: var(--fge-accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.fge-skip:focus {
  top: 0.75rem;
}

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

/* ---------------------------------------------------------------- buttons */

.fge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  font-family: var(--fge-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fge-btn-lg {
  padding: 1rem 2rem;
  font-size: 0.86rem;
}

.fge-btn-accent {
  background: var(--fge-accent);
  border-color: var(--fge-accent);
  color: #fff;
}

.fge-btn-accent:hover {
  background: var(--fge-accent-deep);
  border-color: var(--fge-accent-deep);
  transform: translateY(-2px);
}

.fge-btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.fge-btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.fge-btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--fge-ink);
}

.fge-btn-light:hover {
  background: var(--fge-ink);
  border-color: var(--fge-ink);
  color: #fff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------- eyebrows */

.fge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fge-accent);
}

.fge-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--fge-accent);
}

.fge-eyebrow--dark {
  color: #fff;
}

.fge-eyebrow--dark::before {
  background: var(--fge-accent);
}

.fge-section-title {
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
}

.fge-section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.fge-section-sub {
  margin-top: 1.25rem;
  font-size: 1.02rem;
}

.fge-section-head--dark .fge-section-title {
  color: #fff;
}

.fge-section-head--dark .fge-section-sub {
  color: var(--fge-body-dim);
}

.fge-section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.75rem;
  max-width: none;
}

.fge-section-aside {
  max-width: 26rem;
  font-size: 0.98rem;
  border-left: 3px solid var(--fge-accent);
  padding-left: 1rem;
}

.fge-accent-text {
  color: var(--fge-accent);
}

/* ----------------------------------------------------------------- header */

.fge-header {
  position: relative;
  z-index: 60;
}

.fge-utility {
  background: #fff;
  border-bottom: 1px solid var(--fge-line);
  font-size: 0.82rem;
}

.fge-utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 2.9rem;
}

.fge-utility-nav {
  display: flex;
  gap: 1.5rem;
}

.fge-utility-nav a {
  color: var(--fge-body);
  letter-spacing: 0.04em;
}

.fge-utility-nav a:hover {
  color: var(--fge-accent);
}

.fge-utility-call {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fge-body);
}

.fge-utility-call a {
  font-weight: 600;
  color: var(--fge-ink);
}

.fge-utility-call a:hover {
  color: var(--fge-accent);
}

.fge-brandbar {
  background: #fff;
}

.fge-brandbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem 0;
}

.fge-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--fge-ink);
}

.fge-mark {
  width: 48px;
  height: 48px;
  flex: none;
}

.fge-mark-tile {
  fill: var(--fge-ink);
}

.fge-mark-globe {
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 1.2;
}

.fge-mark-letter {
  fill: none;
  stroke: #fff;
  stroke-width: 3.4;
  stroke-linecap: square;
}

.fge-mark-bar {
  fill: none;
  stroke: var(--fge-accent);
  stroke-width: 3.4;
  stroke-linecap: square;
}

.fge-mark-dot {
  fill: var(--fge-accent);
}

.fge-mark--invert .fge-mark-tile {
  fill: #fff;
}

.fge-mark--invert .fge-mark-globe {
  stroke: rgba(17, 17, 17, 0.28);
}

.fge-mark--invert .fge-mark-letter {
  stroke: var(--fge-ink);
}

.fge-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.fge-brand-name {
  font-family: var(--fge-display);
  font-weight: 800;
  font-size: 1.72rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: inherit;
}

.fge-brand-name-accent {
  color: var(--fge-accent);
}

.fge-brand-kicker {
  margin-top: 0.3rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fge-body);
}

.fge-brandbar-meta {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fge-brandbar-meta li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.fge-meta-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  background: var(--fge-mist);
  color: var(--fge-accent);
}

.fge-meta-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fge-meta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  font-size: 0.88rem;
}

.fge-meta-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fge-accent);
}

.fge-meta-text a {
  color: var(--fge-ink);
}

.fge-meta-text a:hover {
  color: var(--fge-accent);
}

/* nav bar */

.fge-navbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: var(--fge-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fge-navbar.is-stuck {
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.28);
}

.fge-navbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.fge-nav {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.fge-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 1.05rem;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.fge-nav a:hover {
  color: #fff;
}

.fge-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fge-accent);
  transform: translate(-50%, 6px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fge-nav a.is-active {
  color: #fff;
}

.fge-nav a.is-active::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.fge-nav-cta {
  align-self: stretch;
  padding-inline: 1.9rem;
  margin: 0;
}

.fge-nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 0;
  padding: 0.75rem 0;
  color: #fff;
  font-family: var(--fge-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.fge-nav-toggle-bars,
.fge-nav-toggle-bars::before,
.fge-nav-toggle-bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  content: "";
}

.fge-nav-toggle-bars {
  position: relative;
}

.fge-nav-toggle-bars::before {
  position: absolute;
  top: -7px;
}

.fge-nav-toggle-bars::after {
  position: absolute;
  top: 7px;
}

/* ------------------------------------------------------------------- hero */

.fge-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--fge-ink);
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(7rem, 12vw, 10rem);
  color: #fff;
}

.fge-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.fge-hero-bg > span {
  position: absolute;
  inset: 0;
}

.fge-hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 30% 35%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 30% 35%, #000 0%, transparent 72%);
}

.fge-hero-rays {
  background: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.045) 0 2px,
    transparent 2px 46px
  );
  opacity: 0.9;
}

.fge-hero-glow {
  background:
    radial-gradient(46rem 30rem at 78% 8%, rgba(211, 37, 37, 0.32), transparent 62%),
    radial-gradient(38rem 26rem at 8% 92%, rgba(211, 37, 37, 0.14), transparent 66%),
    linear-gradient(160deg, #191919 0%, #111111 58%, #0d0d0d 100%);
  z-index: -1;
}

.fge-hero-bg .fge-hero-dots {
  left: auto;
  right: 4%;
  bottom: 12%;
  top: auto;
  width: 190px;
  height: 150px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.7;
}

.fge-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.fge-hero-title {
  font-size: clamp(3.1rem, 7.4vw, 6.1rem);
  color: #fff;
  margin-bottom: 1.5rem;
}

.fge-hero-lead {
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 2rem;
}

.fge-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.fge-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.fge-hero-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fge-hero-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--fge-accent);
  transform: rotate(45deg);
}

/* hero visual panel */

.fge-hero-panel {
  position: relative;
  min-height: 340px;
}

.fge-hero-card {
  position: relative;
  z-index: 2;
  padding: 1.9rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(2px);
}

.fge-hero-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fge-accent);
  margin-bottom: 1.4rem;
}

.fge-hero-meters {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.05rem;
}

.fge-hero-meters li {
  display: grid;
  gap: 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.fge-meter {
  display: block;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.fge-meter > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--fge-accent), #f05252);
}

.fge-hero-card-foot {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.fge-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--fge-accent);
  box-shadow: 0 0 0 0 rgba(211, 37, 37, 0.55);
  animation: fge-pulse 2.4s infinite;
}

@keyframes fge-pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(211, 37, 37, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(211, 37, 37, 0);
  }
}

.fge-hero-chip {
  position: absolute;
  z-index: 3;
  padding: 0.5rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #fff;
  color: var(--fge-ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.fge-hero-chip-a {
  top: -1.1rem;
  right: 1.5rem;
}

.fge-hero-chip-b {
  bottom: -1.3rem;
  left: 1.25rem;
  background: var(--fge-accent);
  color: #fff;
}

.fge-hero-chip-c {
  bottom: -1.2rem;
  right: 3rem;
}

.fge-hero-cut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(48px, 7vw, 92px);
  background: var(--fge-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* --------------------------------------------------------- numbered steps */

.fge-numbers {
  background: var(--fge-white);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.fge-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3.25rem);
}

.fge-numbered {
  position: relative;
  padding-top: 0.5rem;
}

.fge-numbered-index {
  display: block;
  font-family: var(--fge-display);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(17, 17, 17, 0.12);
}

.fge-numbered-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0.9rem 0;
  background: var(--fge-accent);
}

.fge-numbered h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  margin-bottom: 0.85rem;
}

.fge-numbered p {
  font-size: 0.98rem;
}

.fge-numbered-rule {
  display: block;
  margin-top: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--fge-accent) 0 42px, var(--fge-line) 42px);
}

/* -------------------------------------------------------------- expertise */

.fge-expertise {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(150deg, #1c1414 0%, var(--fge-ink) 46%, #150f0f 100%);
  color: rgba(255, 255, 255, 0.72);
}

.fge-expertise-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.fge-expertise-diag {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(211, 37, 37, 0.09) 0 1px,
    transparent 1px 34px
  );
}

.fge-expertise-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(200deg, #000 0%, transparent 58%);
  -webkit-mask-image: linear-gradient(200deg, #000 0%, transparent 58%);
}

.fge-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.fge-svc {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.1rem 1.9rem 2rem;
  background: #fff;
  color: var(--fge-body);
  border-bottom: 3px solid transparent;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.fge-svc:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--fge-accent);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.32);
}

.fge-svc-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 1.4rem;
  background: var(--fge-mist);
  color: var(--fge-accent);
  transition: background-color 0.22s ease, color 0.22s ease;
}

.fge-svc:hover .fge-svc-icon {
  background: var(--fge-accent);
  color: #fff;
}

.fge-svc-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fge-svc-title {
  font-size: 1.42rem;
  margin-bottom: 0.7rem;
}

.fge-svc-copy {
  font-size: 0.96rem;
  margin-bottom: 1.35rem;
}

.fge-svc-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fge-accent);
}

.fge-svc-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.fge-svc-link:hover span {
  transform: translateX(5px);
}

/* ----------------------------------------------------------------- why us */

.fge-why {
  background: var(--fge-white);
}

.fge-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.fge-why-visual {
  position: relative;
  min-height: 420px;
}

.fge-why-panel {
  position: absolute;
  border: 1px solid var(--fge-line);
}

.fge-why-panel-back {
  inset: 0 18% 16% 0;
  background:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 24px),
    radial-gradient(20rem 15rem at 76% 16%, rgba(211, 37, 37, 0.4), transparent 68%),
    linear-gradient(155deg, #232323, var(--fge-ink));
}

.fge-why-panel-front {
  right: 0;
  bottom: 0;
  width: 74%;
  padding: 1.7rem;
  background: #fff;
  box-shadow: var(--fge-shadow);
}

.fge-why-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.2rem;
  font-family: var(--fge-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--fge-accent);
  color: #fff;
}

.fge-why-rows {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.fge-why-rows li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.fge-why-rows li span {
  width: 10px;
  height: 10px;
  flex: none;
  background: var(--fge-ink);
}

.fge-why-rows li i {
  display: block;
  height: 8px;
  background: var(--fge-mist);
  border-left: 3px solid var(--fge-accent);
}

.fge-why-accent {
  position: absolute;
  top: 8%;
  left: -0.85rem;
  width: 6px;
  height: 42%;
  background: var(--fge-accent);
}

.fge-why-dots {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  width: 124px;
  height: 92px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.fge-why-copy .fge-section-title {
  margin-bottom: 1.25rem;
}

.fge-checklist {
  margin: 1.9rem 0 2.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.fge-checklist li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  font-size: 0.98rem;
}

.fge-checklist svg {
  width: 26px;
  height: 26px;
  padding: 4px;
  background: var(--fge-ink);
  fill: none;
  stroke: var(--fge-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fge-checklist strong {
  color: var(--fge-ink);
  font-weight: 600;
}

/* ------------------------------------------------------------------ stats */

.fge-stats {
  background: var(--fge-ink);
  border-top: 4px solid var(--fge-accent);
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.fge-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.fge-stat {
  padding-left: 1.4rem;
  border-left: 1px solid var(--fge-line-dark);
}

.fge-stat-value {
  font-family: var(--fge-display);
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.6rem;
}

.fge-stat-label {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}

/* --------------------------------------------------------------- voices */

.fge-voices {
  background: var(--fge-mist);
}

.fge-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.fge-voice {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 2.5rem 1.9rem 1.9rem;
  background: #fff;
  border-top: 3px solid var(--fge-ink);
}

.fge-voice-quote {
  position: absolute;
  top: 0.4rem;
  right: 1.3rem;
  font-family: var(--fge-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(211, 37, 37, 0.16);
}

.fge-voice blockquote {
  flex: 1 1 auto;
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  color: var(--fge-body);
}

.fge-voice figcaption {
  display: flex;
  flex-direction: column;
  padding-top: 1.1rem;
  border-top: 1px solid var(--fge-line);
  font-family: var(--fge-display);
  font-size: 1.24rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fge-ink);
}

.fge-voice figcaption span {
  font-family: var(--fge-ui);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fge-accent);
}

/* ------------------------------------------------------------- industries */

.fge-industries {
  background: var(--fge-white);
}

.fge-industry-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--fge-line);
}

.fge-industry {
  border-bottom: 1px solid var(--fge-line);
}

.fge-industry a {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 15rem) minmax(0, 1fr) 3rem;
  gap: 1.5rem;
  align-items: center;
  padding: 1.65rem 1rem;
  color: var(--fge-body);
  transition: background-color 0.2s ease, padding 0.2s ease;
}

.fge-industry a:hover {
  background: var(--fge-mist);
  padding-inline: 1.6rem 0.4rem;
}

.fge-industry-index {
  font-family: var(--fge-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fge-accent);
}

.fge-industry-title {
  font-family: var(--fge-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--fge-ink);
}

.fge-industry-copy {
  font-size: 0.96rem;
}

.fge-industry-arrow {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--fge-line);
  color: var(--fge-ink);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fge-industry a:hover .fge-industry-arrow {
  background: var(--fge-accent);
  border-color: var(--fge-accent);
  color: #fff;
}

/* -------------------------------------------------------------------- cta */

.fge-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.25rem, 6vw, 5rem) 0;
  background: var(--fge-accent);
  color: #fff;
}

.fge-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 30px),
    radial-gradient(30rem 20rem at 88% 20%, rgba(255, 255, 255, 0.16), transparent 68%);
}

.fge-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.fge-cta .fge-eyebrow--dark::before {
  background: #fff;
}

.fge-cta-title {
  max-width: 40rem;
  font-size: clamp(2rem, 3.9vw, 3.1rem);
  color: #fff;
}

/* ---------------------------------------------------------------- contact */

.fge-contact {
  background: var(--fge-white);
}

.fge-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.fge-contact-copy .fge-section-title {
  margin-bottom: 1.2rem;
}

.fge-contact-meta {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.2rem;
}

.fge-contact-meta li {
  display: grid;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--fge-accent);
  font-size: 0.98rem;
}

.fge-contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fge-ink);
}

.fge-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--fge-mist);
  border-top: 4px solid var(--fge-accent);
}

.fge-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fge-ink);
}

.fge-form label em {
  font-style: normal;
  font-weight: 400;
  color: var(--fge-body);
  text-transform: none;
  letter-spacing: 0.02em;
}

.fge-form input,
.fge-form select,
.fge-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font-family: var(--fge-ui);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--fge-ink);
  background: #fff;
  border: 1px solid var(--fge-line);
  border-radius: 0;
}

.fge-form textarea {
  resize: vertical;
}

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

.fge-form-submit {
  grid-column: 1 / -1;
  justify-self: start;
}

.fge-form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.82rem;
  color: var(--fge-body);
}

.fge-form-ok,
.fge-form-err {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  border-left: 4px solid var(--fge-accent);
  background: #fff;
  color: var(--fge-ink);
}

.fge-form-err {
  border-left-color: #8a1111;
}

.fge-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ----------------------------------------------------------------- footer */

.fge-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--fge-ink-2);
  color: rgba(255, 255, 255, 0.62);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.fge-footer-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(160deg, #000 0%, transparent 62%);
  -webkit-mask-image: linear-gradient(160deg, #000 0%, transparent 62%);
}

.fge-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.8fr)) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.fge-brand--foot {
  color: #fff;
  margin-bottom: 1.3rem;
}

.fge-brand--foot .fge-brand-kicker {
  color: rgba(255, 255, 255, 0.55);
}

.fge-footer-brand p {
  max-width: 24rem;
  font-size: 0.94rem;
}

.fge-footer-heading {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--fge-line-dark);
  position: relative;
}

.fge-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 42px;
  height: 2px;
  background: var(--fge-accent);
}

.fge-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.fge-footer-links a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.fge-footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.fge-office {
  font-style: normal;
  display: grid;
  gap: 0.15rem;
  margin-bottom: 1.4rem;
  font-size: 0.92rem;
}

.fge-office:last-child {
  margin-bottom: 0;
}

.fge-office-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fge-accent);
  margin-bottom: 0.25rem;
}

.fge-office a {
  color: rgba(255, 255, 255, 0.78);
}

.fge-office a:hover {
  color: #fff;
}

.fge-footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--fge-line-dark);
  font-size: 0.84rem;
}

.fge-footer-base p {
  margin: 0;
}

.fge-footer-nap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: flex-end;
  text-align: right;
}

.fge-footer-nap a {
  color: inherit;
}

.fge-footer-nap a:hover {
  color: #fff;
}

/* ------------------------------------------------------------------- faq */

.fge-faq-list {
  margin: 0;
  max-width: 52rem;
}

.fge-faq-item {
  padding: 1.4rem 0;
  border-top: 1px solid var(--fge-line);
}

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

.fge-faq-item h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.15;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 0.55rem;
}

.fge-faq-item dd {
  margin: 0;
  font-size: 0.98rem;
}

.fge-contact-address {
  font-style: normal;
  margin: 0;
}

/* ----------------------------------------------------------------- legal */

.fge-legal .fge-section-title {
  max-width: 18ch;
}

.fge-legal-copy {
  max-width: 42rem;
  margin-top: 2.5rem;
}

.fge-legal-copy h2 {
  font-size: 1.45rem;
  margin: 2rem 0 0.7rem;
  text-transform: none;
  letter-spacing: 0;
}

.fge-legal-copy a {
  font-weight: 600;
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  .fge-svc-grid,
  .fge-voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .fge-industry a {
    grid-template-columns: 3.5rem minmax(0, 1fr) 3rem;
  }

  .fge-industry-copy {
    grid-column: 2 / 3;
  }
}

@media (max-width: 960px) {
  .fge-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .fge-hero-panel {
    max-width: 26rem;
    min-height: 0;
  }

  .fge-hero-chip-b {
    left: 1rem;
  }

  .fge-why-grid,
  .fge-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .fge-why-visual {
    min-height: 340px;
    max-width: 26rem;
  }

  .fge-numbers-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
  }
}

@media (max-width: 900px) {
  .fge-utility-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.6rem 0;
  }

  .fge-brandbar-meta {
    display: none;
  }

  .fge-nav-toggle {
    display: inline-flex;
  }

  .fge-navbar-inner {
    align-items: center;
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .fge-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--fge-line-dark);
  }

  .fge-nav.is-open {
    display: flex;
  }

  .fge-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .fge-nav a::after {
    left: auto;
    right: 0.25rem;
    bottom: 50%;
    transform: translate(0, 50%);
  }

  .fge-nav a.is-active::after {
    transform: translate(0, 50%);
  }

  .fge-nav-cta {
    padding-inline: 1.2rem;
  }
}

@media (max-width: 720px) {
  .fge-svc-grid,
  .fge-voice-grid,
  .fge-stats-grid,
  .fge-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .fge-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .fge-section-head--row {
    align-items: flex-start;
  }

  .fge-industry a {
    grid-template-columns: 3rem minmax(0, 1fr);
    row-gap: 0.4rem;
  }

  .fge-industry-copy {
    grid-column: 2 / -1;
  }

  .fge-industry-arrow {
    display: none;
  }

  .fge-stat {
    padding-left: 1rem;
  }

  .fge-hero-chip {
    display: none;
  }

  .fge-brand-name {
    font-size: 1.42rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .fge-btn:hover,
  .fge-svc:hover {
    transform: none;
  }
}
