/* KFN Theme â Component Styles (matches Figma: KFN-Website-HOMEPAGE) */

/* Google Fonts loaded via wp_head as non-blocking <link> tags — see inc/assets.php */

/* ─── Accessibility: Skip Nav & Focus Styles ────────────────────────────── */

/* Skip to main content — visually hidden until focused */
.kfn-skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  background: var(--kfn-navy);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.15s;
}
.kfn-skip-nav:focus {
  top: 0;
  outline: 3px solid var(--kfn-green);
  outline-offset: 2px;
}

/* Global focus-visible ring — applies to all interactive elements */
:focus-visible {
  outline: 3px solid var(--kfn-blue);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Suppress focus ring for mouse users on nav links (they get a hover state) */
.kfn-global-menu__nav a:focus:not(:focus-visible),
.kfn-footer__nav-list a:focus:not(:focus-visible) {
  outline: none;
}

/* ââ Design Tokens ââââââââââââââââââââââââââââââââ */
:root {
  --kfn-navy:    #20215a;   /* dark navy/purple */
  --kfn-blue:    #0975ba;   /* primary blue */
  --kfn-green:   #a5cf46;   /* lime green accent */
  --kfn-gray:    #f4f7fa;   /* section background */
  --kfn-dark:    #070b35;   /* darkest bg */
  --kfn-text:    #000000;
  --kfn-global-menu-height: 0px; /* set by JS */
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--kfn-text);
  margin: 0;
  padding: 0;
}

/* ââ Global Typography ââââââââââââââââââââââââââââ */
h1 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: 0;
  color: var(--kfn-blue);
  margin: 0 0 20px;
}
h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 0;
  color: var(--kfn-blue);
  margin: 0 0 16px;
}
h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  color: var(--kfn-blue);
  margin: 0 0 12px;
}
p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: var(--kfn-text);
  margin: 0 0 16px;
}

/* ââ KFN Typography Classes (available in Gutenberg rich text editor) */

/* Eyebrow: Lato Bold 20px, uppercase, 4px tracking */
.kfn-eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 65px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kfn-navy);
}

/* Button: Lato Bold 14px, uppercase, 1.68px tracking */
.kfn-btn {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 1.68px;
  text-transform: uppercase;
}

/* Quote: Lato Bold Italic 24px */
.kfn-quote {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 37px;
  letter-spacing: -0.2px;
  color: var(--kfn-text);
}

/* Ticker: Rubik Bold 40px, white (used on blue bg) */
.kfn-ticker {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  letter-spacing: 0;
}

/* Bullets / List: same as body P */
.kfn-bullets,
.kfn-list {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: var(--kfn-text);
}

/* P-Bold: Lato Bold 19px */
.kfn-p-bold {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
}

/* Learn More: Lato Bold 19px, blue */
.kfn-learn-more {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: var(--kfn-blue);
  text-decoration: none;
}
.kfn-learn-more:hover { text-decoration: underline; }

/* Top Nav: Lato Bold 16px */
.kfn-top-nav {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0;
  color: var(--kfn-navy);
}

/* Footer Address: Lato Regular 14px */
.kfn-footer-address {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0;
}

/* Footer Links: Lato Regular 19px */
.kfn-footer-links {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
}

/* ââ Remove default WP block margins ââââââââââââââ */
.site-main > * { margin-block: 0; }

/* ââ WP Core Button Block â KFN style âââââââââââââ */
/* Primary (default): blue fill, white text, square corners */
.wp-block-button .wp-block-button__link,
.wp-block-button__link {
  font-family: 'Lato', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 1.68px !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 0 24px !important;
  height: 50.5px !important;
  line-height: 50.5px !important;
  background-color: var(--kfn-blue) !important;
  color: #fff !important;
  border: none !important;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}
.wp-block-button .wp-block-button__link:hover,
.wp-block-button__link:hover { opacity: 0.88; color: #fff !important; }

/* Outline style: transparent fill, blue border, navy text */
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent !important;
  border: 2px solid var(--kfn-blue) !important;
  color: var(--kfn-navy) !important;
  line-height: 46.5px !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--kfn-blue) !important;
  color: #fff !important;
  opacity: 1;
}

/* KFN block style variants */
.wp-block-button.is-style-kfn-primary .wp-block-button__link {
  background-color: var(--kfn-blue) !important;
  color: #fff !important;
  border: none !important;
}
.wp-block-button.is-style-kfn-outline .wp-block-button__link {
  background-color: transparent !important;
  border: 2px solid var(--kfn-blue) !important;
  color: var(--kfn-navy) !important;
  line-height: 46.5px !important;
}
.wp-block-button.is-style-kfn-outline .wp-block-button__link:hover {
  background-color: var(--kfn-blue) !important;
  color: #fff !important;
  opacity: 1;
}
.wp-block-button.is-style-kfn-green .wp-block-button__link {
  background-color: var(--kfn-green) !important;
  color: var(--kfn-navy) !important;
  border: none !important;
}

/* Global .cta-btn class (used in custom blocks + available as custom class) */
.cta-btn {
  display: inline-block;
  background: var(--kfn-blue);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  height: 50.5px;
  line-height: 50.5px;
  padding: 0 24px;
  text-decoration: none;
  border-radius: 0;
  transition: opacity 0.2s;
}
.cta-btn:hover { opacity: 0.88; color: #fff; }
.cta-btn--outline {
  background: transparent;
  border: 2px solid var(--kfn-blue);
  color: var(--kfn-navy);
  line-height: 46.5px;
}
.cta-btn--outline:hover { background: var(--kfn-blue); color: #fff; opacity: 1; }
.cta-btn--green { background: var(--kfn-green); color: var(--kfn-navy); }
.cta-btn--green:hover { opacity: 0.88; color: var(--kfn-navy); }

/* ââââââââââââââââââââââââââââââââââââââââââââââââââ
   BLOCK 1 â MASTHEAD (Top phone-number bar)
   Background: #20215a, height 88px
ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-masthead {
  background: var(--kfn-navy);
  color: #fff;
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 280px;
}
.kfn-masthead > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kfn-masthead__left,
.kfn-masthead__right {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #fff;
}
.kfn-masthead__left { letter-spacing: 0; white-space: nowrap; flex-shrink: 0; }
.kfn-masthead__right { text-align: right; white-space: nowrap; flex-shrink: 0; }
.kfn-masthead a { color: #fff; text-decoration: none; }
.kfn-masthead a:hover { text-decoration: underline; }

/* Horizontal menu list inside masthead */
.kfn-masthead__menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}
.kfn-masthead__menu li { margin: 0; padding: 0; }
.kfn-masthead__menu li a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.kfn-masthead__menu li a:hover { text-decoration: underline; }
.kfn-masthead__menu--right { justify-content: flex-end; }

/* ââââââââââââââââââââââââââââââââââââââââââââââââââ
   BLOCK 2 â GLOBAL MENU (White nav bar with logo)
   Background: WHITE, sticky
ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-global-menu {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}
.kfn-global-menu.is-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.kfn-global-menu > div {
  max-width: 1920px;
  padding: 0 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.kfn-global-menu__logo a {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--kfn-navy);
  text-decoration: none;
  letter-spacing: 2px;
}
.kfn-global-menu__logo img { max-height: 50px; width: auto; }

.kfn-global-menu__nav { display: flex; align-items: center; }
.kfn-global-menu__nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.kfn-global-menu__nav ul li a {
  display: block;
  padding: 0 16px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--kfn-navy);
  text-decoration: none;
  line-height: 88px;
  white-space: nowrap;
  transition: color 0.2s;
}
.kfn-global-menu__nav ul li a:hover { color: var(--kfn-blue); }
.kfn-global-menu__nav ul li.current-menu-item a { color: var(--kfn-blue); }

.kfn-global-menu__cta a {
  display: inline-block;
  background: var(--kfn-green);
  color: var(--kfn-navy);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  padding: 0 20px;
  height: 50.5px;
  line-height: 50.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.kfn-global-menu__cta a:hover { opacity: 0.88; }

/* ── Dropdown menus (level 2 + 3) ─────────────────────────── */
.kfn-global-menu__nav ul li { position: relative; }

/* Sub-menu panel — hidden by default */
.kfn-global-menu__nav .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 3px solid var(--kfn-blue);
  box-shadow: 0 8px 24px rgba(9,117,186,0.14);
  border-radius: 0 0 8px 8px;
  list-style: none;
  margin: 0; padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

/* Level 3: fly out to the right of level 2 */
.kfn-global-menu__nav .sub-menu .sub-menu {
  top: -9px;
  left: 100%;
  border-top: 1px solid #e0e0e0;
  border-left: 3px solid var(--kfn-blue);
  border-radius: 0 8px 8px 8px;
}

/* Sub-menu link styles */
.kfn-global-menu__nav .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  color: var(--kfn-navy);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.kfn-global-menu__nav .sub-menu li a:hover { background: #f0f7ff; color: var(--kfn-blue); }
.kfn-global-menu__nav .sub-menu li.current-menu-item > a { color: var(--kfn-blue); }

/* Show on hover (desktop) OR when JS adds .is-open */
.kfn-global-menu__nav ul li:hover > .sub-menu,
.kfn-global-menu__nav ul li:focus-within > .sub-menu,
.kfn-global-menu__nav ul li.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Chevron toggle button (injected by JS) */
.kfn-dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--kfn-navy);
  width: 32px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  transition: color 0.2s;
}
.kfn-dropdown-toggle:hover { color: var(--kfn-blue); }
.kfn-dropdown-toggle svg {
  width: 10px; height: 10px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
/* Rotate chevron when open */
.kfn-global-menu__nav ul li.is-open > .kfn-dropdown-toggle svg,
.kfn-global-menu__nav ul li:hover > .kfn-dropdown-toggle svg,
.kfn-global-menu__nav ul li:focus-within > .kfn-dropdown-toggle svg {
  transform: rotate(180deg);
}
/* Sub-menu item chevron — points right, smaller height */
.kfn-global-menu__nav .sub-menu > li.menu-item-has-children > .kfn-dropdown-toggle {
  height: 40px;
  transform: rotate(-90deg);
}
.kfn-global-menu__nav .sub-menu > li.is-open > .kfn-dropdown-toggle svg,
.kfn-global-menu__nav .sub-menu > li:hover > .kfn-dropdown-toggle svg,
.kfn-global-menu__nav .sub-menu > li:focus-within > .kfn-dropdown-toggle svg {
  transform: rotate(180deg);
}
/* Give parent links room for the chevron button */
.kfn-global-menu__nav ul > li.menu-item-has-children > a { padding-right: 36px; }
.kfn-global-menu__nav .sub-menu > li.menu-item-has-children > a { padding-right: 40px; }


/* ââââââââââââââââââââââââââââââââââââââââââââââââââ
   BLOCK 3 â HERO (Full-height slider + funnel bar)
   Background: white
ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-hero {
  position: relative;
  min-height: calc(100vh - 176px); /* 88px masthead + 88px global-menu */
  display: flex;
  flex-direction: column;
  overflow-x: clip; /* clip horizontal overflow without breaking position:sticky/fixed children */
  background: #fff;
}
/* Hero body: flex row — content area (left) + image stack (right) */
.kfn-hero__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 280px;
}

/* Content area houses the absolutely-positioned slides */
.kfn-hero__content-area {
  flex: 0 0 630px;
  max-width: 630px;
  position: relative;
  align-self: stretch;
}

.kfn-hero__slides {
  position: absolute;
  inset: 0;
}

.kfn-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.kfn-hero__slide.kfn-slide--active {
  opacity: 1;
  pointer-events: auto;
}
.kfn-hero__content-col { width: 100%; }

/* Eyebrow: Lato Bold, 20px, #20215a, uppercase, tracking 4px */
.kfn-hero__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--kfn-navy);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 65px;
  margin: 0 0 0;
}
/* Headline: Rubik Bold, 48px, #0975ba, line-height 54px */
.kfn-hero__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--kfn-blue);
  line-height: 54px;
  margin: 0 0 20px;
}
/* Body: Lato Regular, 19px, black, line-height 32px */
.kfn-hero__content {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #000;
  line-height: 32px;
  letter-spacing: -0.2px;
  margin: 0 0 28px;
}
.kfn-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* CTA 1: #0975ba bg, white text */
.kfn-hero__cta-primary {
  display: inline-block;
  background: var(--kfn-blue);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  height: 50.5px;
  line-height: 50.5px;
  padding: 0 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.kfn-hero__cta-primary:hover { opacity: 0.88; color: #fff; }

/* CTA 2: border #0975ba, text #20215a */
.kfn-hero__cta-secondary {
  display: inline-block;
  border: 2px solid var(--kfn-blue);
  color: var(--kfn-navy);
  background: transparent;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  height: 50.5px;
  line-height: 46.5px;
  padding: 0 24px;
  text-decoration: none;
  transition: all 0.2s;
}
.kfn-hero__cta-secondary:hover {
  background: var(--kfn-blue);
  color: #fff;
}

/* ── Image Stack (card-pile effect) ──────────────────────────────── */
.kfn-hero__image-stack {
  flex: 1;
  align-self: center;
  position: relative;
  /* Height constrained so cards look proportional */
  height: min(65vh, 480px);
  overflow: visible; /* allows fanned-out cards to bleed right */
  pointer-events: none;
  /* Entrance animation on page load */
  animation: kfn-hero-img-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

/* Each image card is absolutely positioned within the stack frame */
.kfn-hero__image-card {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--kfn-navy);
  box-shadow: 0 16px 48px rgba(9, 117, 186, 0.22);
  /* Smooth transitions for non-flipping repositioning */
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, filter;
}
.kfn-hero__image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stack positions (front → back) — each step recedes in scale + saturation
   Cards peek from behind the front one, offset toward bottom-right */
.kfn-hero__image-card[data-stack-pos="0"] {
  transform: translate(0, 0) scale(1);
  filter: saturate(100%);
  box-shadow: 0 16px 48px rgba(9, 117, 186, 0.22);
}
.kfn-hero__image-card[data-stack-pos="1"] {
  transform: translate(28px, 34px) scale(0.94);
  filter: saturate(68%) brightness(0.92);
  box-shadow: 0 8px 28px rgba(9, 117, 186, 0.14);
}
.kfn-hero__image-card[data-stack-pos="2"] {
  transform: translate(52px, 62px) scale(0.88);
  filter: saturate(42%) brightness(0.84);
  box-shadow: 0 4px 16px rgba(9, 117, 186, 0.08);
}
.kfn-hero__image-card[data-stack-pos="3"] {
  transform: translate(72px, 86px) scale(0.82);
  filter: saturate(22%) brightness(0.76);
  box-shadow: none;
}

/* Flip-to-back: mirrors the CodePen shuffle pattern —
   card sweeps right past the stack then settles at the back.
   50%: rotate + translateX(108%) so it slides off to the right
         while desaturating, exactly like the physical card motion.
   100%: rests at back-of-stack position (matches data-stack-pos="3"). */
@keyframes kfn-card-to-back {
  0% {
    transform: rotate(0deg) translateX(0) scale(1);
    filter: saturate(100%) brightness(1);
  }
  50% {
    transform: rotate(5deg) translateX(108%) scale(0.95);
    filter: saturate(50%) brightness(0.86);
  }
  100% {
    transform: rotate(0deg) translate(72px, 86px) scale(0.82);
    filter: saturate(22%) brightness(0.76);
  }
}
.kfn-hero__image-card.kfn-card--flipping {
  animation: kfn-card-to-back 0.85s ease-in-out both;
  transition: none !important;
}

/* Reduced motion: disable stack animations */
@media (prefers-reduced-motion: reduce) {
  .kfn-hero__image-card { transition: none !important; filter: none !important; }
  .kfn-hero__image-card.kfn-card--flipping { animation: none !important; }
}

/* Slide indicator dots */
.kfn-hero__indicators {
  position: absolute;
  bottom: 88px;
  left: 0;
  display: flex;
  gap: 8px;
  z-index: 20;
}
.kfn-hero__indicator {
  width: 8px; height: 8px;
  border-radius: 9999px;
  background: rgba(32,33,90,0.25);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.3s;
}
.kfn-hero__indicator.is-active { width: 24px; background: var(--kfn-blue); }

/* ââ Funnel Menu Bar âââââââââââââââââââââââââââââââ */
/* Background: #20215a, height 88px */
.kfn-funnel-menu {
  background: var(--kfn-navy);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s;
  position: relative;
  z-index: 40;
}
/* .kfn-funnel-menu.is-sticky — removed; sticky behaviour disabled 2026-09 */
.kfn-funnel-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0; padding: 0;
  height: 100%;
  gap: 0;
}
.kfn-funnel-menu ul li {
  height: 100%;
  display: flex;
  align-items: center;
}
/* Active item gets darker bg #0b0c45 â driven by JS only (not WP current-menu-item) */
.kfn-funnel-menu ul li.is-slide-active {
  background: #0b0c45;
}
.kfn-funnel-menu a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.kfn-funnel-menu a:hover { background: rgba(255,255,255,0.07); color: #fff; }

/* ââââââââââââââââââââââââââââââââââââââââââââââââââ
   BLOCK 4 â OUR NETWORK (Light gray bg, image LEFT)
   Background: #f4f7fa
ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-our-network {
  background: var(--kfn-gray);
  min-height: 674px;
  display: flex;
  align-items: stretch;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.kfn-our-network > div {
  width: 100%;
  display: flex;
  align-items: stretch;
}
/* Image column â LEFT side: fills full height with no gap */
.kfn-our-network__image {
  flex: 0 0 693px;
  max-width: 693px;
  min-height: 674px;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.kfn-our-network__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Content column â RIGHT side */
.kfn-our-network__content {
  flex: 1;
  padding: 80px 100px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
/* Section label: Lato Bold 20px, #20215a, tracking 4px, uppercase */
.kfn-our-network .section-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--kfn-navy);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 65px;
  margin: 0 0 0;
}
/* Headline: Rubik Bold 48px, #0975ba */
.kfn-our-network h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--kfn-blue);
  line-height: 54px;
  margin: 0 0 20px;
}
/* Body: Lato Regular 19px, black */
.kfn-our-network p {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  color: #000;
  line-height: 32px;
  letter-spacing: -0.2px;
  margin: 0 0 28px;
}
.kfn-our-network .cta-btn {
  display: inline-block;
  background: var(--kfn-blue);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  height: 50.5px;
  line-height: 50.5px;
  padding: 0 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.kfn-our-network .cta-btn:hover { opacity: 0.88; }

/* ââââââââââââââââââââââââââââââââââââââââââââââââââ
   BLOCK 5 â NUMBERS (Blue background ticker)
   Background: #0975ba, height 230px
ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-numbers {
  background: var(--kfn-blue);
  height: 230px;
  display: flex;
  align-items: center;
  padding: 0 280px;
}
.kfn-numbers__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--kfn-numbers-cols, 5), 1fr);
  gap: 16px;
}
.kfn-number-item { text-align: center; }

/* Number value: Rubik Bold 40px, white */
.kfn-number-value {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 4px;
}
/* Label: Lato Regular 19px, white */
.kfn-number-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #fff;
  line-height: 32px;
  letter-spacing: -0.2px;
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââ
   BLOCK 6 â CONNECTIVITY SOLUTIONS
   Background: #f4f7fa, 3 white cards with shadow
ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-solutions {
  background: var(--kfn-gray);
  padding: 100px 280px;
  position: relative;
  overflow: hidden;
}
.kfn-solutions__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kfn-navy);
  line-height: 65px;
  margin: 0;
}
.kfn-solutions__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--kfn-blue);
  line-height: 54px;
  margin: 0 0 20px;
}
.kfn-solutions__intro {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  color: #000;
  line-height: 32px;
  letter-spacing: -0.2px;
  max-width: 1360px;
  margin: 0 0 48px;
}
.kfn-solutions__cards {
  display: grid;
  grid-template-columns: repeat(var(--kfn-solutions-cols, 3), 1fr);
  gap: 40px;
}
.kfn-solution-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.25);
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
}
.kfn-solution-card__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--kfn-navy);
  line-height: 65px;
  margin: 0;
}
.kfn-solution-card__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--kfn-blue);
  line-height: 37px;
  margin: 0 0 20px;
}
.kfn-solution-card__body {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  color: #000;
  line-height: 32px;
  letter-spacing: -0.2px;
  flex: 1;
  margin: 0 0 28px;
}
.kfn-solution-card__btn {
  display: inline-block;
  background: var(--kfn-navy);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  height: 50.5px;
  line-height: 50.5px;
  padding: 0 24px;
  text-decoration: none;
  transition: opacity 0.2s;
  align-self: flex-start;
}
.kfn-solution-card__btn:hover { opacity: 0.85; color: #fff; }

/* ââââââââââââââââââââââââââââââââââââââââââââââââââ
   BLOCK 7 â REGIONAL PARTNERSHIP
   Background: white, 2-col header + 3-col features
ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-regional {
  background: #fff;
  padding: 100px 280px;
}
.kfn-regional__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.kfn-regional__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kfn-navy);
  line-height: 65px;
  margin: 0;
}
.kfn-regional__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--kfn-blue);
  line-height: 54px;
  margin: 0 0 24px;
}
.kfn-regional__intro {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  color: #000;
  line-height: 32px;
  letter-spacing: -0.2px;
  margin: 0 0 16px;
}
.kfn-regional__callout {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #000;
  line-height: 32px;
  letter-spacing: -0.2px;
  margin: 0;
}
/* Right: quote column */
.kfn-regional__quote-col { text-align: center; }
.kfn-regional__quote {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 37px;
  letter-spacing: -0.2px;
  color: #000;
  margin: 0 0 28px;
  border: none;
  padding: 0;
}
.kfn-regional__quote-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
}
.kfn-regional__quote-name {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #000;
  margin: 0;
}
.kfn-regional__quote-title {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #555;
  margin: 0;
}
/* Features */
.kfn-regional__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.kfn-regional__feature-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--kfn-blue);
  line-height: 32px;
  letter-spacing: -0.2px;
  margin: 0 0 12px;
}
.kfn-regional__feature-body {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  color: #000;
  line-height: 32px;
  letter-spacing: -0.2px;
  margin: 0;
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââ */

@keyframes kfn-count-pulse {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.kfn-number-item.is-counting .kfn-number-value {
  animation: kfn-count-pulse 0.4s ease-out forwards;
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââ
   RESPONSIVE
ââââââââââââââââââââââââââââââââââââââââââââââââââ */
@media (max-width: 1280px) {
  .kfn-masthead,
  .kfn-global-menu > div,
  .kfn-hero__body,
  .kfn-funnel-menu,
  .kfn-numbers { padding-left: 40px; padding-right: 40px; }
  .kfn-hero__content-area { flex: 1; max-width: 100%; }
  .kfn-our-network__content { padding: 0 40px; }
}
@media (max-width: 1024px) {
  .kfn-hero__image-stack { display: none; }
  .kfn-hero__headline { font-size: 36px; line-height: 44px; }
  .kfn-our-network { flex-direction: column; min-height: auto; }
  .kfn-our-network__image { flex: 0 0 auto; width: 100%; height: 300px; max-width: 100%; min-height: 0; }
  .kfn-our-network__content { padding: 48px 40px; }
  .kfn-numbers__grid { grid-template-columns: repeat(3, 1fr); }
  .kfn-numbers { height: auto; padding: 40px; }
}
@media (max-width: 640px) {
  .kfn-masthead { padding: 0 20px; height: 60px; }
  .kfn-masthead__left { font-size: 11px; }
  .kfn-global-menu > div { padding: 0 20px; }
  .kfn-funnel-menu { padding: 0; }
  .kfn-funnel-menu a { font-size: 13px; letter-spacing: 1px; padding: 0 12px; }
  .kfn-numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .kfn-number-value { font-size: 28px; }
  .kfn-number-label { font-size: 14px; }
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââ
   SERVICES BLOCK
ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-services {
  background: linear-gradient(to bottom, #20215a, #070b35);
  padding: 80px 280px;
}

.kfn-services__header {
  margin-bottom: 48px;
}

.kfn-services__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #a5cf46;
  margin: 0 0 16px;
}

.kfn-services__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #fff;
  margin: 0 0 16px;
  max-width: 960px;
}

.kfn-services__intro {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: #fff;
  margin: 0;
  max-width: 1360px;
}

.kfn-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 80px;
  margin-bottom: 56px;
}

.kfn-service-item__title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #a5cf46;
  margin: 0 0 10px;
}

.kfn-service-item__body {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: #fff;
  margin: 0 0 10px;
}

.kfn-service-item__link {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0975ba;
  text-decoration: none;
  display: inline-block;
}

.kfn-service-item__link:hover {
  text-decoration: underline;
}

.kfn-services__footer {
  margin-top: 8px;
}

.kfn-services__cta {
  display: inline-block;
  background: #0975ba;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 28px;
  height: 50.5px;
  line-height: 50.5px;
}

.kfn-services__cta:hover {
  background: #0862a0;
  color: #fff;
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââ
   INDUSTRIES BLOCK
ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-industries {
  background: #f4f7fa;
  padding: 80px 280px;
}

.kfn-industries__header {
  margin-bottom: 48px;
}

.kfn-industries__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #20215a;
  margin: 0 0 16px;
}

.kfn-industries__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #0975ba;
  margin: 0 0 16px;
  max-width: 1280px;
}

.kfn-industries__intro {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: #000;
  margin: 0;
  max-width: 1360px;
}

.kfn-industries__grid {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(var(--kfn-industry-cols, 4), 1fr);
  margin-bottom: 0;
}

/* Legacy modifier classes kept for backward compat */
.kfn-industries__grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.kfn-industries__grid--3col {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
}

.kfn-industry-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  padding: 36px 28px;
  min-height: 346px;
  display: flex;
  flex-direction: column;
}

.kfn-industry-card__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 37px;
  color: #0975ba;
  margin: 0 0 16px;
}

.kfn-industry-card__body {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: #000;
  margin: 0;
  flex: 1;
}

.kfn-industry-card__cta {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0975ba;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.kfn-industry-card__cta:hover { text-decoration: underline; }

@media (max-width: 1280px) {
  .kfn-services,
  .kfn-industries { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 1024px) {
  .kfn-services__grid { grid-template-columns: repeat(2, 1fr); }
  .kfn-industries__grid { grid-template-columns: repeat(2, 1fr); }
  .kfn-industries__grid--4col { grid-template-columns: repeat(2, 1fr); }
  .kfn-industries__grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .kfn-services__grid { grid-template-columns: 1fr; }
  .kfn-industries__grid,
  .kfn-industries__grid--4col,
  .kfn-industries__grid--3col { grid-template-columns: 1fr; }
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââ
   TESTIMONIALS BLOCK
ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-testimonials {
  background: #20215a;
  /* Subtle wave texture using CSS radial gradients */
  background-image:
    radial-gradient(ellipse 120% 60% at 50% 120%, rgba(9,117,186,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 80% 0%,   rgba(9,117,186,0.10) 0%, transparent 60%);
  padding: 80px 40px;
  text-align: center;
}

.kfn-testimonials__inner {
  max-width: 1360px;
  margin: 0 auto;
}

.kfn-testimonials__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #a5cf46;
  margin: 0 0 16px;
}

.kfn-testimonials__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #fff;
  margin: 0 auto 48px;
  max-width: 1000px;
}

/* Carousel */
.kfn-testimonials__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.kfn-testimonials__track {
  flex: 1;
  position: relative;
  min-height: 200px;
}

.kfn-testimonials__slide {
  display: none;
}

.kfn-testimonials__slide.is-active {
  display: block;
  animation: kfn-fade-in 0.35s ease-out;
}

@keyframes kfn-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.kfn-testimonials__card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.65);
  padding: 48px 60px;
}

.kfn-testimonials__quote {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 37px;
  letter-spacing: -0.2px;
  color: #000;
  margin: 0 0 24px;
  border: none;
  padding: 0;
}

.kfn-testimonials__attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.kfn-testimonials__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid #e0e0e0;
}

.kfn-testimonials__name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #20215a;
  margin: 0;
}

/* Arrows */
.kfn-testimonials__arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
  flex-shrink: 0;
}

.kfn-testimonials__arrow:hover {
  background: rgba(255,255,255,0.2);
}

.kfn-testimonials__arrow svg path {
  stroke: #0975ba;
}

/* Dots */
.kfn-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.kfn-testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  display: inline-block;
  transition: background 0.25s;
}

.kfn-testimonials__dot.is-active {
  background: #a5cf46;
}

@media (max-width: 768px) {
  .kfn-testimonials__card { padding: 32px 24px; }
  .kfn-testimonials__quote { font-size: 18px; line-height: 1.6; }
  .kfn-testimonials__headline { font-size: 30px; line-height: 38px; }
  .kfn-testimonials__arrow { width: 44px; height: 44px; }
}

/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   FAQs Block
   âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

.kfn-faqs {
  background: #fff;
  padding: 80px 0;
}

.kfn-faqs__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 280px;
}

@media (max-width: 1400px) {
  .kfn-faqs__inner { padding: 0 80px; }
}
@media (max-width: 768px) {
  .kfn-faqs__inner { padding: 0 24px; }
  .kfn-faqs { padding: 60px 0; }
}

.kfn-faqs__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kfn-navy); /* was kfn-green: 1.81:1 on white fails WCAG AA; navy = 14.72:1 ✅ */
  text-align: center;
  margin: 0 0 12px;
}

.kfn-faqs__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: var(--kfn-blue);
  text-align: center;
  margin: 0 auto 48px;
  max-width: 900px;
}

/* Accordion */
.kfn-faqs__accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.kfn-faq-item {
  border-top: 1px solid #d8dde8;
}
.kfn-faq-item:last-child {
  border-bottom: 1px solid #d8dde8;
}

.kfn-faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.kfn-faq-item__question {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 1.5;
  color: #000;
  flex: 1;
}

.kfn-faq-item__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.kfn-faq-item.is-open .kfn-faq-item__chevron {
  transform: rotate(180deg);
}

.kfn-faq-item__answer {
  overflow: hidden;
}

.kfn-faq-item__answer[hidden] {
  display: none;
}

.kfn-faq-item__answer-inner {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  padding: 0 0 24px;
  max-width: 880px;
}

.kfn-faq-item__answer-inner p:first-child { margin-top: 0; }
.kfn-faq-item__answer-inner p:last-child  { margin-bottom: 0; }

/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   Ready Block
   âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

.kfn-ready {
  background: #fff;
  padding: 80px 0;
}

.kfn-ready__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 280px;
  text-align: center;
}

@media (max-width: 1400px) {
  .kfn-ready__inner { padding: 0 80px; }
}
@media (max-width: 768px) {
  .kfn-ready__inner { padding: 0 24px; }
  .kfn-ready { padding: 60px 0; }
}

.kfn-ready__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: var(--kfn-blue);
  margin: 0 auto 20px;
  max-width: 900px;
}

.kfn-ready__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #000;
  margin: 0 auto 60px;
  max-width: 1100px;
  letter-spacing: -0.2px;
}

.kfn-ready__steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: nowrap;
}

.kfn-ready__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
}

.kfn-ready__step-circle {
  width: 97px;
  height: 97px;
  border-radius: 50%;
  border: 3px solid var(--kfn-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.kfn-ready__step-number {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: var(--kfn-blue);
}

.kfn-ready__step-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 32px;
  color: var(--kfn-blue);
  text-align: center;
  margin: 0;
  letter-spacing: -0.2px;
}

.kfn-ready__cta {
  text-align: center;
}

.kfn-ready__btn {
  display: inline-block;
  background: var(--kfn-navy);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  text-decoration: none;
  height: 50.5px;
  line-height: 50.5px;
  padding: 0 36px;
  transition: background 0.2s ease, color 0.2s ease;
}

.kfn-ready__btn:hover {
  background: var(--kfn-blue);
  color: #fff;
}

/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   Sitewide Footer
   âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

.kfn-footer {
  background: var(--kfn-navy);
  color: #fff;
}

.kfn-footer__main {
  padding: 80px 0 60px;
}

.kfn-footer__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 280px;
  display: grid;
  grid-template-columns: 404px 1fr 1fr 1fr;
  gap: 0 80px;
  align-items: start;
}

@media (max-width: 1400px) {
  .kfn-footer__inner { padding: 0 80px; gap: 0 48px; }
}
@media (max-width: 1100px) {
  .kfn-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 40px;
  }
}
@media (max-width: 640px) {
  .kfn-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .kfn-footer__main { padding: 60px 0 40px; }
}

/* Brand column */
.kfn-footer__logo {
  margin-bottom: 24px;
}

.kfn-footer__logo img {
  max-height: 60px;
  width: auto;
}

.kfn-footer__logo-text {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
}

.kfn-footer__description {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.2px;
}

.kfn-footer__social-label {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.2px;
}

.kfn-footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.kfn-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.kfn-footer__social-link:hover {
  background: var(--kfn-green);
  transform: scale(1.08);
}

.kfn-footer__social-link svg path {
  fill: var(--kfn-navy);
}

/* Nav columns */
.kfn-footer__nav-heading {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 32px;
  color: var(--kfn-green);
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin: 0 0 16px;
}

.kfn-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kfn-footer__nav-list li {
  margin-bottom: 4px;
}

.kfn-footer__nav-list li a,
.kfn-footer__nav-list li a:visited {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: color 0.15s ease;
}

.kfn-footer__nav-list li a:hover {
  color: var(--kfn-green);
}

/* Contact column */
.kfn-footer__contact-info {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #fff;
  letter-spacing: -0.2px;
}

.kfn-footer__contact-info p {
  margin: 0 0 2px;
  color: #fff;
}

.kfn-footer__office-name {
  font-weight: 700;
  margin-top: 20px !important;
}

/* Bottom bar */
.kfn-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 28px 0;
}

.kfn-footer__bottom-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1400px) {
  .kfn-footer__bottom-inner { padding: 0 80px; }
}
@media (max-width: 768px) {
  .kfn-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 24px;
    gap: 12px;
  }
}

.kfn-footer__copyright {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

.kfn-footer__policy {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-align: right;
}

.kfn-footer__policy a,
.kfn-footer__policy a:visited {
  color: #fff;
  text-decoration: none;
}

.kfn-footer__policy a:hover {
  color: var(--kfn-green);
}

/* ââ Shared Button Styles âââââââââââââââââââââââââââââââââââ */
.kfn-btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  height: 50.5px;
  line-height: 50.5px;
  padding: 0 24px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.kfn-btn:hover { opacity: 0.85; }
.kfn-btn--solid {
  background: var(--kfn-blue);
  color: #fff;
}
.kfn-btn--outline {
  background: transparent;
  color: var(--kfn-blue);
  border: 2px solid var(--kfn-blue);
}
.kfn-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  line-height: 46.5px;
}

/* ââ Page Hero ââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-page-hero {
  background: var(--kfn-navy);
  padding: 80px 0;
}
.kfn-page-hero__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.kfn-page-hero__content {
  flex: 1 1 0;
  min-width: 0;
}
.kfn-page-hero__image {
  flex: 0 0 480px;
  max-width: 480px;
}
.kfn-page-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.kfn-page-hero__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kfn-green);
  margin: 0 0 8px;
  line-height: 65px;
}
.kfn-page-hero__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #fff;
  margin: 0 0 24px;
}
.kfn-page-hero__body {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #fff;
  letter-spacing: -0.2px;
  margin: 0 0 36px;
}
.kfn-page-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.kfn-page-hero .kfn-btn--solid { background: var(--kfn-blue); }
.kfn-page-hero .kfn-btn--outline-white { color: #fff; border-color: #fff; line-height: 46.5px; }

/* ââ Stats Bar ââââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-stats-bar {
  background: var(--kfn-blue);
  padding: 48px 0;
}
.kfn-stats-bar__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.kfn-stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
a.kfn-stats-bar__item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.kfn-stats-bar__item:hover {
  opacity: 0.8;
}
.kfn-stats-bar__value {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  color: #fff;
}
.kfn-stats-bar__label {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #fff;
  letter-spacing: -0.2px;
}

/* ââ Engagement Grid ââââââââââââââââââââââââââââââââââââââââ */
.kfn-engagement-grid {
  background: #fff;
  padding: 80px 0;
}
.kfn-engagement-grid__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}
.kfn-engagement-grid__header {
  margin-bottom: 56px;
}
.kfn-engagement-grid__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kfn-navy);
  margin: 0 0 12px;
  line-height: 65px;
}
.kfn-engagement-grid__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: var(--kfn-blue);
  margin: 0 0 20px;
}
.kfn-engagement-grid__intro {
  font-size: 19px;
  line-height: 32px;
  color: #000;
  letter-spacing: -0.2px;
  margin: 0;
  max-width: 1160px;
}
.kfn-engagement-grid__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 120px;
}
.kfn-engagement-grid__item {
  display: flex;
  flex-direction: column;
}
.kfn-engagement-grid__circle {
  width: 97px;
  height: 97px;
  border: 3px solid var(--kfn-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.kfn-engagement-grid__number {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: var(--kfn-blue);
}
.kfn-engagement-grid__title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--kfn-blue);
  margin: 0 0 12px;
}
.kfn-engagement-grid__body {
  font-size: 19px;
  line-height: 32px;
  color: #000;
  letter-spacing: -0.2px;
  margin: 0;
}

/* ââ Content Split ââââââââââââââââââââââââââââââââââââââââââ */
.kfn-content-split {
  background: #f4f7fa;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.kfn-content-split--light {
  background: #f4f7fa;
}
.kfn-content-split--white {
  background: #fff;
}
.kfn-content-split__inner {
  width: 100%;
  display: flex;
  align-items: stretch;
}
/* Image column — full bleed left edge, ~half viewport */
.kfn-content-split__image {
  flex: 0 0 50%;
  max-width: 50%;
  overflow: hidden;
  position: relative;
  min-height: 480px;
}
.kfn-content-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Text column — flex remaining space, content aligned to page grid */
.kfn-content-split__text {
  flex: 1;
  padding: 80px 100px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* No-image variant — centered content block */
.kfn-content-split--no-image .kfn-content-split__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}
.kfn-content-split--no-image .kfn-content-split__text {
  padding: 80px 0;
}
.kfn-content-split__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kfn-navy);
  line-height: 65px;
  margin: 0 0 8px;
}
.kfn-content-split__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: var(--kfn-blue);
  margin: 0 0 24px;
}
.kfn-content-split__body {
  font-size: 19px;
  line-height: 32px;
  color: #000;
  letter-spacing: -0.2px;
  margin: 0 0 36px;
}
.kfn-content-split__body p { margin: 0 0 16px; }
.kfn-content-split__body p:last-child { margin-bottom: 0; }
.kfn-content-split__body ul,
.kfn-content-split__body ol { margin: 0 0 16px; padding-left: 24px; }
.kfn-content-split__body ul { list-style: disc; }
.kfn-content-split__body ol { list-style: decimal; }
.kfn-content-split__body li { margin: 0 0 8px; }
.kfn-content-split__body li:last-child { margin-bottom: 0; }
.kfn-content-split__body strong { font-weight: 700; }
.kfn-content-split__body em { font-style: italic; }
.kfn-content-split__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ââ Case Study âââââââââââââââââââââââââââââââââââââââââââââ */
.kfn-case-study {
  background: linear-gradient(180deg, #20215a 0%, #070b35 100%);
  padding: 0;
  display: flex;
  align-items: stretch;
}
.kfn-case-study__inner {
  width: 100%;
  display: flex;
  align-items: stretch;
}
.kfn-case-study__content {
  flex: 1;
  padding: 80px 80px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.kfn-case-study__inner:not(:has(.kfn-case-study__image)) .kfn-case-study__content {
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
}
.kfn-case-study__image {
  flex: 0 0 42%;
  max-width: 42%;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}
.kfn-case-study__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kfn-case-study__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kfn-green);
  line-height: 65px;
  margin: 0 0 8px;
}
.kfn-case-study__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #fff;
  margin: 0 0 24px;
}
.kfn-case-study__body {
  font-size: 19px;
  line-height: 32px;
  color: #fff;
  letter-spacing: -0.2px;
  margin: 0 0 40px;
}
/* Editor preview */
.kfn-case-study--editor,
.kfn-case-study--editor .kfn-case-study__inner {
  display: block !important;
}
.kfn-case-study--editor .kfn-case-study__content {
  padding: 48px 60px;
}
.kfn-case-study--editor .kfn-case-study__image {
  max-width: 100%;
  height: 200px;
  min-height: 0;
}

/* ── Proof Section ────────────────────────────────────────── */
.kfn-proof-section {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid #e6e9f0;
}
.kfn-proof-section__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Upper split */
.kfn-proof-section__split {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 64px;
}
.kfn-proof-section__content {
  flex: 1 1 0;
  min-width: 0;
}
.kfn-proof-section__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--kfn-navy);
  margin: 0 0 16px;
}
.kfn-proof-section__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 46px;
  color: var(--kfn-blue);
  margin: 0 0 24px;
}
.kfn-proof-section__body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 30px;
  color: #333;
  letter-spacing: -0.2px;
  margin: 0;
}
.kfn-proof-section__quote-col {
  flex: 0 0 420px;
  max-width: 420px;
  border: 1px solid #e6e9f0;
  border-radius: 6px;
  padding: 40px;
}
.kfn-proof-section__quote {
  font-family: 'Lato', sans-serif;
  font-style: italic;
  font-size: 18px;
  line-height: 30px;
  color: #1A2B6B;
  margin: 0 0 32px;
  padding: 0;
  border: none;
}
.kfn-proof-section__attribution {
  display: flex;
  align-items: center;
  gap: 16px;
}
.kfn-proof-section__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.kfn-proof-section__attribution-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kfn-proof-section__attribution-text strong {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1A2B6B;
}
.kfn-proof-section__attribution-text span {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #555;
}

/* Feature grid */
.kfn-proof-section__features {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid #e6e9f0;
}
.kfn-proof-section__feature {
  flex: 1 1 0;
  min-width: 0;
}
.kfn-proof-section__feature-icon {
  margin-bottom: 20px;
}
.kfn-proof-section__feature-icon svg {
  display: block;
}
.kfn-proof-section__feature-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: var(--kfn-blue);
  margin: 0 0 12px;
}
.kfn-proof-section__feature-title a {
  color: var(--kfn-blue);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}
.kfn-proof-section__feature-title a:hover {
  text-decoration-color: var(--kfn-blue);
}
.kfn-proof-section__feature-body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #444;
  margin: 0;
}

/* ── Hyperscale Services ──────────────────────────────────────── */
.kfn-hyperscale-services { background: #f5f7fa; padding: 80px 0; }
.kfn-hyperscale-services__inner { max-width: 1360px; margin: 0 auto; padding: 0 80px; }
.kfn-hyperscale-services__eyebrow { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--kfn-navy); margin: 0 0 16px; }
.kfn-hyperscale-services__headline { font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 38px; line-height: 46px; color: var(--kfn-blue); margin: 0 0 24px; }
.kfn-hyperscale-services__body { font-family: 'Lato', sans-serif; font-size: 17px; line-height: 30px; color: #333; margin: 0 0 48px; }
.kfn-hyperscale-services__group-label { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--kfn-navy); margin: 0 0 24px; }
.kfn-hyperscale-services__core-grid { display: grid; grid-template-columns: repeat(var(--kfn-core-cols, 3), 1fr); gap: 24px; margin-bottom: 48px; }
.kfn-hyperscale-services__support-grid { display: grid; grid-template-columns: repeat(var(--kfn-supp-cols, 2), 1fr); gap: 24px; margin-bottom: 48px; }
.kfn-hyperscale-services__card { background: #fff; border: 1px solid #e1e6ef; border-radius: 6px; padding: 40px; display: flex; flex-direction: column; }
.kfn-hyperscale-services__card-title { font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 20px; line-height: 28px; color: var(--kfn-blue); margin: 0 0 16px; }
.kfn-hyperscale-services__card-title--green { color: var(--kfn-navy); } /* was kfn-green: fails WCAG AA on white; navy = 14.72:1 ✅ */
.kfn-hyperscale-services__card-body { font-family: 'Lato', sans-serif; font-size: 16px; line-height: 28px; color: #444; margin: 0 0 32px; flex: 1; }
.kfn-hyperscale-services__card-btn { display: inline-block; background: var(--kfn-navy); color: #fff; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 24px; border-radius: 3px; text-decoration: none; margin-top: auto; align-self: flex-start; transition: opacity 0.2s; }
.kfn-hyperscale-services__card-btn:hover { opacity: 0.85; color: #fff; }
.kfn-hyperscale-services__cta { padding-top: 8px; text-align: center; }
.kfn-hyperscale-services__cta-btn { display: inline-block; background: var(--kfn-navy); color: #fff; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 28px; border-radius: 3px; text-decoration: none; transition: opacity 0.2s; }
.kfn-hyperscale-services__cta-btn:hover { opacity: 0.85; color: #fff; }
@media (max-width: 900px) {
  .kfn-hyperscale-services__core-grid { grid-template-columns: 1fr; }
  .kfn-hyperscale-services__support-grid { grid-template-columns: 1fr; }
  .kfn-hyperscale-services__inner { padding: 0 24px; }
}

/* ── Configurations ──────────────────────────────────────────── */
.kfn-configurations {
  background: #f4f7fa;
  padding: 80px 0;
}
.kfn-configurations__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}
.kfn-configurations__header {
  margin-bottom: 48px;
}
.kfn-configurations__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kfn-navy);
  line-height: 65px;
  margin: 0 0 8px;
}
.kfn-configurations__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: var(--kfn-blue);
  margin: 0 0 20px;
}
.kfn-configurations__body {
  font-size: 19px;
  line-height: 32px;
  color: #333;
  max-width: 820px;
  margin: 0;
}
.kfn-configurations__grid {
  display: grid;
  grid-template-columns: repeat(var(--kfn-config-cols, 3), 1fr);
  gap: 24px;
}
.kfn-configurations__card {
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.kfn-configurations__card-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--kfn-navy); /* was kfn-green: fails WCAG AA on white card bg; navy = 14.72:1 ✅ */
  margin: 0 0 12px;
}
.kfn-configurations__card-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: var(--kfn-navy);
  margin: 0 0 16px;
}
.kfn-configurations__card-body {
  font-size: 16px;
  line-height: 26px;
  color: #444;
  margin: 0 0 28px;
  flex: 1;
}
.kfn-configurations__card-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--kfn-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kfn-blue);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.kfn-configurations__card-btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ── Process Steps ───────────────────────────────────────────── */
.kfn-process-steps {
  background: #fff;
  padding: 80px 0;
}
.kfn-process-steps__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
  text-align: center;
}
.kfn-process-steps__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: var(--kfn-blue);
  margin: 0 0 20px;
}
.kfn-process-steps__body {
  font-size: 19px;
  line-height: 32px;
  color: #444;
  max-width: 680px;
  margin: 0 auto 56px;
}
.kfn-process-steps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 56px;
}
.kfn-process-steps__step {
  text-align: center;
}
.kfn-process-steps__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--kfn-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--kfn-blue);
  margin: 0 auto 20px;
}
.kfn-process-steps__text {
  font-size: 16px;
  line-height: 26px;
  color: #333;
  margin: 0;
}
.kfn-process-steps__cta {
  margin-top: 8px;
}

/* ── Blog Index ──────────────────────────────────────── */

/* Hero banner — same dark navy as page-hero but title-only */
.kfn-blog-hero {
  background: var(--kfn-navy);
  padding: 80px 0;
}
.kfn-blog-hero__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}
.kfn-blog-hero__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #fff;
  margin: 0;
}

/* Index wrapper */
.kfn-blog-index {
  background: #fff;
  padding: 80px 0 100px;
}
.kfn-blog-index__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}

/* 3-column card grid */
.kfn-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

/* Individual card */
.kfn-blog-card {
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 0 22.7px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Featured image — top of card, rounded bottom corners */
.kfn-blog-card__image-link {
  display: block;
  text-decoration: none;
}
.kfn-blog-card__image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  background: #e8edf2;
}
.kfn-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kfn-blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #20215a 0%, #0975ba 100%);
}

/* Card text content */
.kfn-blog-card__content {
  flex: 1;
  padding: 28px 44px 40px;
  display: flex;
  flex-direction: column;
}
.kfn-blog-card__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 37px;
  margin: 0 0 16px;
}
.kfn-blog-card__title a {
  color: var(--kfn-blue);
  text-decoration: none;
}
.kfn-blog-card__title a:hover {
  text-decoration: underline;
}
.kfn-blog-card__excerpt {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #000;
  letter-spacing: -0.2px;
  margin: 0 0 20px;
  flex: 1;
}
.kfn-blog-card__read-more {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 32px;
  color: var(--kfn-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kfn-blog-card__read-more:hover {
  text-decoration: underline;
}
.kfn-blog-card__arrow {
  flex-shrink: 0;
}

/* Pagination */
.kfn-blog-pagination {
  margin-top: 60px;
  text-align: center;
}
.kfn-blog-pagination .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.kfn-blog-pagination .page-numbers {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--kfn-blue);
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.kfn-blog-pagination .page-numbers:hover,
.kfn-blog-pagination .page-numbers.current {
  border-color: var(--kfn-blue);
}
.kfn-blog-empty {
  font-size: 19px;
  color: #444;
  text-align: center;
  padding: 60px 0;
}

/* ── Single Post ─────────────────────────────────────── */

/* Hero — taller than index hero, contains post title */
.kfn-single-hero {
  background: var(--kfn-navy);
  padding: 80px 0 80px;
}
.kfn-single-hero__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}
.kfn-single-hero__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #fff;
  margin: 0;
  max-width: 860px;
}

/* Outer wrapper */
.kfn-single-wrap {
  background: #fff;
  padding: 48px 0 80px;
}
.kfn-single-wrap__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Prev/Next nav at top */
.kfn-single-postnav {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}
.kfn-single-postnav__link {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 32px;
  color: var(--kfn-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kfn-single-postnav__link:hover {
  text-decoration: underline;
}

/* Featured image */
.kfn-single-featured {
  width: 100%;
  margin-bottom: 52px;
  border-radius: 20px;
  overflow: hidden;
  max-height: 567px;
}
.kfn-single-featured__img {
  width: 100%;
  height: 100%;
  max-height: 567px;
  object-fit: cover;
  display: block;
}

/* Two-column layout */
.kfn-single-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Main content column */
.kfn-single-content {
  flex: 1;
  min-width: 0;
}
.kfn-single-body {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #000;
  letter-spacing: -0.2px;
}
.kfn-single-body p { margin: 0 0 24px; }
.kfn-single-body p:last-child { margin-bottom: 0; }
.kfn-single-body ul,
.kfn-single-body ol { margin: 0 0 24px; padding-left: 28px; }
.kfn-single-body ul { list-style: disc; }
.kfn-single-body ol { list-style: decimal; }
.kfn-single-body li { margin: 0 0 8px; }
.kfn-single-body h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 37px;
  color: var(--kfn-navy);
  margin: 32px 0 16px;
}
.kfn-single-body h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: var(--kfn-navy);
  margin: 24px 0 12px;
}
.kfn-single-body a {
  color: var(--kfn-blue);
  font-weight: 700;
}
.kfn-single-body strong { font-weight: 700; }
.kfn-single-body em { font-style: italic; }

/* Divider */
.kfn-single-divider {
  border: none;
  border-top: 1px solid #dde3ea;
  margin: 48px 0;
}

/* About section */
.kfn-single-about {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 32px;
  color: #000;
  letter-spacing: -0.2px;
}
.kfn-single-about__heading {
  font-weight: 700;
  color: var(--kfn-blue);
  margin: 0 0 8px;
}
.kfn-single-about a {
  color: var(--kfn-blue);
  font-weight: 700;
}

/* Social share sidebar */
.kfn-single-sidebar {
  flex: 0 0 205px;
  width: 205px;
  position: sticky;
  top: 120px;
}
.kfn-share {
  background: var(--kfn-navy);
  padding: 20px;
  border-radius: 4px;
}
.kfn-share__heading {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 32px;
  color: #fff;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -0.2px;
}
.kfn-share__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.kfn-share__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.kfn-share__link:hover {
  opacity: 0.85;
}

/* Back to Resources link */
.kfn-single-back {
  margin-top: 60px;
}
.kfn-single-back__link {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 32px;
  color: var(--kfn-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kfn-single-back__link:hover {
  text-decoration: underline;
}

/* Icon circle for numbers/icons toggle feature */
.kfn-item__icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--kfn-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.kfn-item__icon-circle i {
  font-size: 24px;
  color: var(--kfn-blue);
}

/* ─── Scroll & Load Animations ─────────────────────────────────────────────── */

/* Initial hidden states */
[data-kfn-anim] {
  opacity: 0;
}
[data-kfn-anim="fade-up"]    { transform: translateY(36px); }
[data-kfn-anim="fade-right"] { transform: translateX(-48px); }
[data-kfn-anim="fade-left"]  { transform: translateX(48px); }
[data-kfn-anim="scale-up"]   { transform: scale(0.86); }
[data-kfn-anim="fade-in"]    { transform: none; }

/* Visible state */
[data-kfn-anim].kfn--in {
  opacity: 1;
  transform: none !important;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger delays */
[data-kfn-anim].kfn--in[data-kfn-delay="0"] { transition-delay: 0ms; }
[data-kfn-anim].kfn--in[data-kfn-delay="1"] { transition-delay: 90ms; }
[data-kfn-anim].kfn--in[data-kfn-delay="2"] { transition-delay: 180ms; }
[data-kfn-anim].kfn--in[data-kfn-delay="3"] { transition-delay: 270ms; }
[data-kfn-anim].kfn--in[data-kfn-delay="4"] { transition-delay: 360ms; }
[data-kfn-anim].kfn--in[data-kfn-delay="5"] { transition-delay: 450ms; }
[data-kfn-anim].kfn--in[data-kfn-delay="6"] { transition-delay: 540ms; }
[data-kfn-anim].kfn--in[data-kfn-delay="7"] { transition-delay: 630ms; }
[data-kfn-anim].kfn--in[data-kfn-delay="8"] { transition-delay: 720ms; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-kfn-anim] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─── Page Load: Menu & Hero Entrance Animations ────────────────────────── */

@keyframes kfn-menu-in {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

@keyframes kfn-hero-text-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes kfn-hero-img-in {
  from { opacity: 0; transform: translateX(44px) scale(0.97); }
  to   { opacity: 1; transform: translateX(0)    scale(1);    }
}

/* Masthead + nav bar slide down from above viewport */
.kfn-masthead {
  animation: kfn-menu-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}
.kfn-global-menu {
  animation: kfn-menu-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.07s both;
}

/* Hero slide content — fires on load AND on each slide transition */
.kfn-slide--active .kfn-hero__eyebrow {
  animation: kfn-hero-text-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}
.kfn-slide--active .kfn-hero__headline {
  animation: kfn-hero-text-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}
.kfn-slide--active .kfn-hero__ctas {
  animation: kfn-hero-text-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.60s both;
}
/* .kfn-hero__image-stack load animation is defined inline with the stack styles above */

/* Funnel menu materializes after hero content */
.kfn-funnel-menu {
  animation: kfn-hero-text-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.72s both;
}

/* Reduced-motion override for load animations */
@media (prefers-reduced-motion: reduce) {
  .kfn-masthead,
  .kfn-global-menu,
  .kfn-funnel-menu,
  .kfn-slide--active .kfn-hero__eyebrow,
  .kfn-slide--active .kfn-hero__headline,
  .kfn-slide--active .kfn-hero__ctas,
  .kfn-hero__image-stack {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Leadership Block ──────────────────────────────────────────── */
.kfn-leadership {
  background: #fff;
  padding: 80px 40px;
}
.kfn-leadership__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.kfn-leadership__eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kfn-green);
  margin-bottom: 12px;
}
.kfn-leadership__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--kfn-navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.kfn-leadership__intro {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* Grid */
.kfn-leadership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .kfn-leadership__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}
@media (max-width: 560px) {
  .kfn-leadership {padding: 60px 24px;}
  .kfn-leadership__grid { grid-template-columns: 1fr; gap: 40px; }
  .kfn-leadership__headline { font-size: 32px; }
}

/* Card */
.kfn-team-card {
  cursor: pointer;
  text-align: center;
}
.kfn-team-card__photo-wrap {
  overflow: hidden;
  margin-bottom: 18px;
  aspect-ratio: 1 / 1;
}
.kfn-team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(100%);
  transform: scale(1);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.kfn-team-card__photo--placeholder {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
}
.kfn-team-card:hover .kfn-team-card__photo {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.kfn-team-card__name {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--kfn-navy);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.kfn-team-card:hover .kfn-team-card__name { color: var(--kfn-blue); }
.kfn-team-card__title {
  font-size: 14px;
  color: var(--kfn-blue);
  line-height: 1.4;
}

/* ── Leadership Modal ──────────────────────────────────────────── */
.kfn-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.kfn-modal[hidden] { display: none; }

.kfn-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 53, 0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.kfn-modal__box {
  position: relative;
  background: #fff;
  width: 50%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(9, 117, 186, 0.18);
  animation: kfn-modal-in 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@media (max-width: 900px) {
  .kfn-modal__box { width: 80%; }
}
@media (max-width: 600px) {
  .kfn-modal__box { width: 95%; }
}
@keyframes kfn-modal-in {
  from { opacity: 0; transform: scale(0.93) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.kfn-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f0f4f8;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--kfn-navy);
  z-index: 1;
  transition: background 0.15s, color 0.15s;
}
.kfn-modal__close:hover { background: var(--kfn-blue); color: #fff; }

.kfn-modal__inner {
  display: flex;
  gap: 28px;
  padding: 40px;
}
@media (max-width: 600px) {
  .kfn-modal__inner { flex-direction: column; padding: 28px 20px; }
}
.kfn-modal__photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .kfn-modal__photo { width: 100%; height: 220px; border-radius: 8px; }
}
.kfn-modal__name {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--kfn-navy);
  margin-bottom: 4px;
  margin-top: 0;
}
.kfn-modal__job-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--kfn-blue);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.kfn-modal__bio { font-size: 15px; line-height: 1.75; color: #333; }
.kfn-modal__bio p { margin: 0 0 12px; }
.kfn-modal__bio p:last-child { margin-bottom: 0; }

/* ── Member Logos Slider ─────────────────────────────────────────────────── */
.kfn-member-logos {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #20215a;
}
.kfn-member-logos__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #20215a;
  text-align: center;
  margin: 0 0 28px;
  padding: 0 24px;
}
.kfn-member-logos__track-wrap {
  overflow: hidden;
  width: 100%;
}
.kfn-member-logos__track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: kfn-marquee var(--ml-speed, 40s) linear infinite;
}
.kfn-member-logos__track:hover {
  animation-play-state: paused;
}
.kfn-member-logos__item {
  flex: 0 0 auto;
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kfn-member-logos__item img {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.kfn-member-logos__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.kfn-member-logos__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.kfn-member-logos__name {
  font-size: 11px;
  color: #888;
  text-align: center;
  line-height: 1.3;
}
@keyframes kfn-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Member Directory ────────────────────────────────────────────────────── */
.kfn-member-directory {
  background: #fff;
  padding: 80px 40px;
}
.kfn-member-directory__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.kfn-member-directory__section {
  margin-bottom: 80px;
}
.kfn-member-directory__section:last-child {
  margin-bottom: 0;
}
.kfn-member-directory__section--partners {
  padding-top: 64px;
  border-top: 1px solid #e8edf2;
}
.kfn-member-directory__section-header {
  max-width: 680px;
  margin-bottom: 48px;
}
.kfn-member-directory__eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kfn-green);
  margin-bottom: 12px;
}
.kfn-member-directory__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--kfn-navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.kfn-member-directory__intro {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
.kfn-member-directory__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kfn-member-directory__grid--partners {
  grid-template-columns: repeat(4, 1fr);
}

/* Card */
.kfn-member-card {
  border: 1px solid #e8edf2;
  border-radius: 10px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.kfn-member-card:hover {
  box-shadow: 0 8px 24px rgba(9, 117, 186, 0.1);
  transform: translateY(-2px);
}
.kfn-member-card__logo {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.kfn-member-card__logo img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.kfn-member-card__logo-text {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--kfn-blue);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kfn-member-card__body {
  width: 100%;
  text-align: center;
  border-top: 1px solid #f0f3f6;
  padding-top: 14px;
}
.kfn-member-card__name {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--kfn-navy);
  line-height: 1.35;
  margin: 0 0 8px;
}
.kfn-member-card__location {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 0 8px;
}
.kfn-member-card__website {
  font-size: 12px;
  color: var(--kfn-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  transition: color 0.2s;
}
.kfn-member-card__website:hover { color: var(--kfn-navy); }

@media (max-width: 1100px) {
  .kfn-member-directory__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .kfn-member-directory { padding: 60px 24px; }
  .kfn-member-directory__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .kfn-member-directory__headline { font-size: 28px; }
}
@media (max-width: 480px) {
  .kfn-member-directory__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM  v2
   12-col grid concept:
     Desktop  (>1024px) : current multi-col layouts, no change
     Tablet   (≤1024px) : 2-col grids (6/12), flex rows stack
     Mobile   (≤768px)  : 1-col / full-width (12/12), typography scales down
     XS       (≤480px)  : tightest paddings, single-col everything
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Global overflow + media safety ─────────────────────────────────────── */
html { overflow-x: clip; }
body { overflow-x: clip; max-width: 100%; }
img { max-width: 100%; height: auto; }
video, embed, object { max-width: 100%; }
/* iframes keep their explicit height attribute (maps, embeds, etc.) */

/* ── Mobile hamburger toggle: hidden by default (desktop) ─────────────── */
.kfn-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--kfn-navy);
  line-height: 1;
  border-radius: 4px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.kfn-mobile-toggle:hover { background: #f0f4f8; }
.kfn-mobile-toggle__close { display: none; }
.kfn-global-menu.is-mobile-open .kfn-mobile-toggle__bars  { display: none; }
.kfn-global-menu.is-mobile-open .kfn-mobile-toggle__close { display: block; }

/* ── Desktop panel layout (nav + CTA side-by-side) ────────────────────── */
.kfn-global-menu__panel {
  display: flex;
  align-items: center;
}

/* ──────────────────────────────────────────────────────────────
   ≤1200px  Large tablet / small laptop — reduce wide paddings
   ────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .kfn-masthead     { padding: 0 40px; }
  .kfn-hero__body   { padding: 0 40px; }
  .kfn-funnel-menu { padding: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .kfn-funnel-menu a { font-size: 15px; letter-spacing: 2px; padding: 0 20px; }
  .kfn-services     { padding-left: 40px; padding-right: 40px; }
  .kfn-industries   { padding-left: 40px; padding-right: 40px; }
  .kfn-global-menu > div { padding: 0 40px; }
  .kfn-our-network__content { padding: 0 40px; }
}

/* ──────────────────────────────────────────────────────────────
   ≤1024px  Tablet landscape — hamburger activates
   ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* Hide masthead bar on tablet/mobile */
  .kfn-masthead { display: none; }

  /* ── Global Menu: switch to hamburger ── */
  .kfn-global-menu > div { height: 70px; padding: 0 24px; }
  .kfn-mobile-toggle { display: flex; align-items: center; justify-content: center; }

  /* Panel becomes absolute dropdown when open */
  .kfn-global-menu__panel {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-top: 3px solid var(--kfn-blue);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
    z-index: 150;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .kfn-global-menu.is-mobile-open .kfn-global-menu__panel { display: flex; }

  /* Nav inside panel: vertical column */
  .kfn-global-menu__nav { width: 100%; }
  .kfn-global-menu__nav > ul {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    gap: 0;
  }
  .kfn-global-menu__nav ul li a {
    line-height: 1.4;
    padding: 14px 24px;
    font-size: 16px;
  }
  .kfn-global-menu__nav ul > li.menu-item-has-children > a { padding-right: 56px; }

  /* Chevron toggle button height on mobile */
  .kfn-dropdown-toggle { height: 50px; }

  /* Sub-menus: static, indent left, click-only (no hover) */
  .kfn-global-menu__nav .sub-menu {
    position: static !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--kfn-blue);
    border-top: none;
    border-radius: 0;
    padding: 4px 0;
    margin-left: 24px;
    min-width: 0;
    background: transparent;
  }
  .kfn-global-menu__nav .sub-menu .sub-menu {
    border-left: 3px solid var(--kfn-green);
    margin-left: 20px;
    top: 0; left: 0;
  }
  /* Disable hover/focus-within triggers on mobile */
  .kfn-global-menu__nav ul li:hover > .sub-menu,
  .kfn-global-menu__nav ul li:focus-within > .sub-menu { display: none; }
  /* Only .is-open (JS-driven) opens a sub-menu */
  .kfn-global-menu__nav ul li.is-open > .sub-menu { display: block !important; }
  .kfn-global-menu__nav .sub-menu li a { padding: 10px 20px; font-size: 15px; }

  /* CTA in mobile panel: full-width */
  .kfn-global-menu__cta {
    width: 100%;
    padding: 16px 24px 20px;
    border-top: 1px solid #e8edf2;
  }
  .kfn-global-menu__cta a { display: block; text-align: center; width: 100%; }

  /* ── Hero ── */
  .kfn-hero { min-height: auto; }
  .kfn-hero__body { flex-direction: column; padding: 48px 40px; gap: 32px; }
  /* On tablet/mobile: swap from opacity-based to display-based slide switching
     so container height always matches active slide content — no fixed height needed */
  .kfn-hero__content-area { flex: 1 1 auto; width: 100%; max-width: 100%; min-width: 0; align-self: auto; min-height: 0; }
  .kfn-hero__slides { position: relative; height: auto; }
  .kfn-hero__slide { position: relative; inset: auto; display: none; opacity: 1; pointer-events: none; flex-direction: column; align-items: flex-start; }
  .kfn-hero__slide.kfn-slide--active { display: flex; pointer-events: auto; }
  .kfn-hero__indicators { position: relative; bottom: auto; left: auto; margin-top: 24px; }
  .kfn-hero__headline { font-size: 36px; line-height: 44px; }
  .kfn-hero__image-stack { display: none; }
  .kfn-hero__ctas { flex-wrap: wrap; }
  /* Funnel bar sticky top */
  .kfn-funnel-menu.is-sticky { top: 70px; }

  /* ── Page Hero ── */
  .kfn-page-hero { padding: 56px 0; }
  .kfn-page-hero__inner { flex-direction: column; gap: 40px; padding: 0 40px; }
  .kfn-page-hero__image { flex: 0 0 auto; max-width: 100%; order: -1; } /* image above text on mobile */
  .kfn-page-hero__headline { font-size: 36px; line-height: 44px; }

  /* ── Content Split ── */
  .kfn-content-split__inner { flex-direction: column; }
  .kfn-content-split--image-right .kfn-content-split__inner { flex-direction: column-reverse; }
  .kfn-content-split__image { flex: 0 0 auto; max-width: 100%; width: 100%; min-height: 300px; }
  .kfn-content-split__text { padding: 48px 40px; }
  .kfn-content-split--no-image .kfn-content-split__inner { padding: 0 40px; }

  /* ── Case Study ── */
  .kfn-case-study__inner { flex-direction: column; }
  .kfn-case-study__image { flex: 0 0 auto; max-width: 100%; width: 100%; min-height: 280px; }
  .kfn-case-study__content { padding: 48px 40px; }

  /* ── Solutions ── */
  .kfn-solutions { padding: 60px 40px; }
  .kfn-solutions__cards { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Stats Bar ── */
  /* Stats Bar: 2-col grid on tablet */
  .kfn-stats-bar__inner {
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    justify-items: center;
  }

  /* ── Engagement Grid ── */
  .kfn-engagement-grid__inner { padding: 0 40px; }
  .kfn-engagement-grid__grid { grid-template-columns: 1fr; gap: 40px; }

  /* ── Configurations ── */
  .kfn-configurations { padding: 60px 0; }
  .kfn-configurations__inner { padding: 0 40px; }
  .kfn-configurations__grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Proof Section ── */
  .kfn-proof-section__inner { padding: 0 40px; }
  .kfn-proof-section__split { flex-direction: column; gap: 40px; }
  .kfn-proof-section__quote-col { flex: 0 0 auto; max-width: 100%; }
  .kfn-proof-section__features { flex-wrap: wrap; gap: 32px; }
  .kfn-proof-section__feature { flex: 1 1 calc(50% - 16px); min-width: 200px; }

  /* ── Hyperscale Services ── */
  .kfn-hyperscale-services { padding: 60px 0; }
  .kfn-hyperscale-services__inner { padding: 0 40px; }

  /* ── Process Steps ── */
  .kfn-process-steps__inner { padding: 0 40px; }

  /* ── Regional ── */
  .kfn-regional { padding: 60px 40px; }
  .kfn-regional__top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .kfn-regional__quote-col { order: -1; }
  .kfn-regional__callout { flex-direction: column; gap: 40px; }

  /* ── Blog ── */
  .kfn-blog-hero__inner,
  .kfn-blog-index__inner { padding: 0 40px; }
  .kfn-blog-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  /* ── Single Post ── */
  .kfn-single-hero__inner,
  .kfn-single-wrap__inner { padding: 0 40px; }

  /* ── Our Network ── */
  .kfn-our-network { flex-direction: column; min-height: auto; }
  .kfn-our-network > div { flex-direction: column; }
  .kfn-our-network__image { flex: none; width: 100%; max-width: 100%; height: 340px; min-height: 0; }
  .kfn-our-network__content { padding: 48px 40px; }

  /* ── Numbers ── */
  .kfn-numbers { height: auto; padding: 40px; }
  .kfn-numbers__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ──────────────────────────────────────────────────────────────
   ≤768px  Tablet portrait / mobile
   ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Global typography scale-down ── */
  h1 { font-size: 34px; line-height: 42px; }
  h2 { font-size: 26px; line-height: 33px; }
  h3 { font-size: 21px; line-height: 28px; }

  /* ── Global Menu ── */
  .kfn-global-menu > div { height: 64px; padding: 0 20px; }
  .kfn-global-menu__panel { top: 64px; max-height: calc(100vh - 64px); }
  .kfn-global-menu__logo img { max-height: 38px; }

  /* ── Hero ── */
  .kfn-hero__body { padding: 40px 20px; gap: 24px; }
  .kfn-hero__headline { font-size: 28px; line-height: 36px; }
  .kfn-hero__content { font-size: 17px; line-height: 28px; }
  .kfn-hero__ctas { flex-wrap: wrap; gap: 12px; }
  /* Funnel bar: scrollable on mobile */
  /* Funnel submenu: stack vertically on mobile */
  .kfn-funnel-menu { height: auto; overflow: visible; padding: 0; }
  .kfn-funnel-menu ul { flex-direction: column; align-items: stretch; height: auto; padding: 0; }
  .kfn-funnel-menu ul li { height: auto; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .kfn-funnel-menu ul li:last-child { border-bottom: none; }
  .kfn-funnel-menu a { height: auto; padding: 16px 20px; font-size: 14px; letter-spacing: 2px; white-space: normal; justify-content: flex-start; }
  .kfn-funnel-menu.is-sticky { top: 64px; }

  /* ── Page Hero ── */
  .kfn-page-hero { padding: 40px 0; }
  .kfn-page-hero__inner { padding: 0 20px; gap: 28px; }
  .kfn-page-hero__headline { font-size: 28px; line-height: 36px; }
  .kfn-page-hero__body { font-size: 17px; line-height: 28px; }

  /* ── Stats Bar: 1-col on phone ── */
  .kfn-stats-bar { padding: 32px 0; }
  .kfn-stats-bar__inner {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .kfn-stats-bar__item { width: 100%; }
  .kfn-stats-bar__value { font-size: 32px; }

  /* ── Content Split ── */
  .kfn-content-split__text { padding: 40px 20px; }
  .kfn-content-split__headline { font-size: 26px; line-height: 34px; }
  .kfn-content-split--no-image .kfn-content-split__inner { padding: 0 20px; }

  /* ── Case Study ── */
  .kfn-case-study__content { padding: 40px 20px; }
  .kfn-case-study__headline { font-size: 26px; line-height: 34px; }

  /* ── Solutions ── */
  .kfn-solutions { padding: 48px 20px; }
  .kfn-solutions__cards { grid-template-columns: 1fr !important; }
  .kfn-solutions__headline { font-size: 26px; line-height: 34px; }

  /* ── Industries ── */
  .kfn-industries { padding: 48px 20px; }
  .kfn-industries__headline { font-size: 30px; line-height: 38px; }
  .kfn-industries__grid,
  .kfn-industries__grid--4col,
  .kfn-industries__grid--3col { grid-template-columns: 1fr !important; }
  .kfn-industry-card { min-height: auto; }

  /* ── Services ── */
  .kfn-services { padding: 48px 20px; }
  .kfn-services__headline { font-size: 30px; line-height: 38px; }
  .kfn-services__grid { grid-template-columns: 1fr; }

  /* ── Engagement Grid ── */
  .kfn-engagement-grid { padding: 48px 0; }
  .kfn-engagement-grid__inner { padding: 0 20px; }
  .kfn-engagement-grid__headline { font-size: 28px; line-height: 36px; }

  /* ── Configurations ── */
  .kfn-configurations { padding: 48px 0; }
  .kfn-configurations__inner { padding: 0 20px; }
  .kfn-configurations__headline { font-size: 28px; line-height: 36px; }
  .kfn-configurations__grid { grid-template-columns: 1fr !important; }

  /* ── Proof Section ── */
  .kfn-proof-section { padding: 48px 0; }
  .kfn-proof-section__inner { padding: 0 20px; }
  .kfn-proof-section__headline { font-size: 26px; line-height: 34px; }
  .kfn-proof-section__features { flex-direction: column; gap: 28px; }
  .kfn-proof-section__feature { flex: 1 1 auto; }

  /* ── Hyperscale Services ── */
  .kfn-hyperscale-services { padding: 48px 0; }
  .kfn-hyperscale-services__inner { padding: 0 20px; }
  .kfn-hyperscale-services__headline { font-size: 26px; line-height: 34px; }
  .kfn-hyperscale-services__core-grid,
  .kfn-hyperscale-services__support-grid { grid-template-columns: 1fr !important; }

  /* ── Process Steps ── */
  .kfn-process-steps { padding: 48px 0; }
  .kfn-process-steps__inner { padding: 0 20px; }
  .kfn-process-steps__headline { font-size: 28px; line-height: 36px; }
  .kfn-process-steps__grid { grid-template-columns: 1fr; max-width: 360px; }

  /* ── Regional ── */
  .kfn-regional { padding: 40px 20px; }
  .kfn-regional__headline { font-size: 26px; line-height: 34px; }
  .kfn-regional__top { margin-bottom: 32px; }
  .kfn-regional__features { grid-template-columns: 1fr !important; }

  /* ── Our Network ── */
  .kfn-our-network { flex-direction: column; min-height: auto; }
  .kfn-our-network__image { flex: 0 0 auto; width: 100%; height: 260px; max-width: 100%; min-height: 0; }
  .kfn-our-network__content { padding: 40px 20px; }

  /* ── Numbers ── */
  .kfn-numbers { padding: 40px 20px; }
  .kfn-numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .kfn-number-value { font-size: 28px; }
  .kfn-number-label { font-size: 14px; }

  /* ── Ready Block ── */
  .kfn-ready { padding: 48px 0; }
  .kfn-ready__inner { padding: 0 20px; }
  .kfn-ready__headline { font-size: 28px; line-height: 36px; }
  .kfn-ready__subtitle { font-size: 17px; line-height: 28px; margin-bottom: 40px; }
  .kfn-ready__steps { flex-direction: column; align-items: center; gap: 28px; margin-bottom: 40px; }
  .kfn-ready__step { flex: none; max-width: 300px; width: 100%; }

  /* ── FAQs ── */
  .kfn-faqs { padding: 48px 0; }
  .kfn-faqs__inner { padding: 0 20px; }
  .kfn-faqs__headline { font-size: 28px; line-height: 36px; }

  /* ── Testimonials ── */
  .kfn-testimonials { padding: 48px 20px; }
  .kfn-testimonials__headline { font-size: 26px; line-height: 34px; }
  .kfn-testimonials__arrow { display: none; }
  .kfn-testimonials__card { padding: 28px 20px; }
  .kfn-testimonials__quote { font-size: 17px; line-height: 1.6; }

  /* ── Blog ── */
  .kfn-blog-hero { padding: 48px 0; }
  .kfn-blog-index { padding: 48px 0 60px; }
  .kfn-blog-hero__inner,
  .kfn-blog-index__inner { padding: 0 20px; }
  .kfn-blog-hero__title { font-size: 30px; line-height: 38px; }
  .kfn-blog-grid { grid-template-columns: 1fr; gap: 32px; }
  .kfn-blog-card__title { font-size: 22px; line-height: 30px; }
  .kfn-blog-card__content { padding: 24px 28px 32px; }

  /* ── Single Post ── */
  .kfn-single-hero { padding: 40px 0; }
  .kfn-single-wrap { padding: 32px 0 48px; }
  .kfn-single-hero__inner,
  .kfn-single-wrap__inner { padding: 0 20px; }
  .kfn-single-hero__title { font-size: 26px; line-height: 34px; }
  .kfn-single-layout { flex-direction: column; }
  .kfn-single-sidebar { display: none; }
  /* Content column must fill full width in stacked layout */
  .kfn-single-content { width: 100%; }
  /* Prevent any wide inline images from overflowing */
  .kfn-single-body img { max-width: 100%; height: auto; }

  /* ── Leadership ── */
  .kfn-leadership { padding: 48px 20px; }
  .kfn-leadership__headline { font-size: 30px; }

  /* ── Member Directory ── */
  .kfn-member-directory { padding: 48px 20px; }

  /* ── Gutenberg blocks used directly inside site-main — add mobile padding ── */
  .site-main > .wp-block-columns,
  .site-main > .wp-block-group {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  /* ── Gutenberg table blocks — horizontal scroll on mobile ── */
  .wp-block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .wp-block-table table {
    min-width: 480px;
  }
}

/* ──────────────────────────────────────────────────────────────
   ≤480px  Mobile — further condensing
   ────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  /* ── Typography ── */
  h1 { font-size: 28px; line-height: 36px; }
  h2 { font-size: 24px; line-height: 31px; }

  /* Stats Bar already 1-col from 768px rule */

  /* ── Page Hero ── */
  .kfn-page-hero__headline { font-size: 26px; line-height: 34px; }
  .kfn-page-hero__ctas { flex-direction: column; }

  /* ── Content Split CTAs ── */
  .kfn-content-split__ctas { flex-direction: column; }

  /* ── Numbers: 2 col ── */
  .kfn-numbers__grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Solutions: single col (already, but ensure) ── */
  .kfn-solutions__cards { grid-template-columns: 1fr !important; }

  /* ── Blog card: reduce padding ── */
  .kfn-blog-card__content { padding: 20px 20px 28px; }
  .kfn-blog-card__title { font-size: 20px; line-height: 28px; }

  /* ── Ready: tighter ── */
  .kfn-ready__headline { font-size: 24px; line-height: 32px; }
  .kfn-ready__step { max-width: 100%; }

  /* ── Testimonials ── */
  .kfn-testimonials__headline { font-size: 22px; line-height: 30px; }

  /* ── Process steps: center single col ── */
  .kfn-process-steps__grid { max-width: 100%; }

  /* ── Configurations header ── */
  .kfn-configurations__headline { font-size: 24px; line-height: 32px; }

  /* ── Footer: tighter ── */
  .kfn-footer__main { padding: 48px 0 32px; }
}

/* ── Industry Submenu ───────────────────────────── */
.kfn-industry-submenu {
  background: #1a3c6e;
  width: 100%;
  z-index: 89;
  position: relative;
}
.kfn-industry-submenu.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
}
.kfn-industry-submenu__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kfn-industry-submenu__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.kfn-industry-submenu__link {
  display: block;
  padding: 0.75rem 1.1rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.kfn-industry-submenu__link:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.4);
}
.kfn-industry-submenu__item.is-active .kfn-industry-submenu__link {
  color: #fff;
  border-bottom-color: #6dba4a;
  font-weight: 600;
}
.kfn-industry-submenu__select {
  display: none;
}
.block-editor-page .kfn-industry-submenu.is-sticky {
  position: relative !important;
  top: auto !important;
}
@media (max-width: 965px) {
  .kfn-industry-submenu__list { display: none; }
  .kfn-industry-submenu__select {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
  }
  .kfn-industry-submenu__select option {
    background: #1a3c6e;
    color: #fff;
  }
}

/* ── Contact CTA Block ── */
.kfn-contact-cta {
  background: #f4f7fa;
}
.kfn-contact-cta__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  box-sizing: border-box;
}
.kfn-contact-cta__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #20215a;
  margin: 0 0 12px;
}
.kfn-contact-cta__headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  color: #0975ba;
  margin: 0 0 20px;
}
.kfn-contact-cta__body {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 24px;
}
.kfn-contact-cta__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kfn-contact-cta__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
.kfn-contact-cta__bullets li::before {
  content: '✓';
  color: #a5cf46;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.kfn-contact-cta__form {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

@media (max-width: 1024px) {
  .kfn-contact-cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 40px;
  }
}
@media (max-width: 600px) {
  .kfn-contact-cta__inner {
    padding: 48px 20px;
  }
  .kfn-contact-cta__headline {
    font-size: 26px;
  }
  .kfn-contact-cta__form {
    padding: 24px;
  }
}
