/* ===================================================================
   FLICKER SPORTS INDUSTRIES — DESIGN TOKENS
=================================================================== */
:root {
  --fsi-navy: #0e2340;
  --fsi-navy-2: #14315a;
  --fsi-orange: #26489f;
  --fsi-orange-dark: #042068;
  --fsi-white: #ffffff;
  --fsi-cream: #fef6f0;
  --fsi-gray: #6a7688;
  --fsi-line: #eef1f5;
  --crimson: #8b1a2e;
  --crimson-d: #6b1223;
  --navy: #162740;
  --gold: #c9a84c;
  --gold-l: #e8cc7a;

  --phero-blue: #26489f;
  --phero-blue-light: rgba(59, 130, 246, 0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255, 255, 255, 0.65);
  --phero-sep: rgba(255, 255, 255, 0.4);

  --fsi-black: #121212;
  --fsi-black-2: #1a1a1a;
  --fsi-blue: #26489f;
  --fsi-muted: #4e535a;

  --fsi-blue-lt: #4d7dff;
  --fsi-ink: #0f1f33;
  --fsi-bg: #ffffff;

  --fsi-teal: #17b89a;
  --fsi-coral: #ff5d6c;

  --fsi-font-nav: "Poppins", sans-serif;
  --fsi-font-body: "Inter", sans-serif;

  --fsi-skew: -12deg;
  --fsi-shadow: 0 14px 30px rgba(14, 35, 64, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--fsi-font-body);
  background: linear-gradient(180deg, #fff6ee 0%, #fdeee2 100%);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

strong {
  color: var(--fsi-ink);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* ===================================================================
   HEADER SHELL
=================================================================== */
.fsi-header {
  position: absolute;
  z-index: 50;
  width: 100%;
  top: 0;
  left: 0;
}

/* ---- Top bar : left email/address | right phone (desktop only) ---- */
.fsi-topbar {
  padding: 10px 0;
}

.fsi-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.fsi-topbar__list {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.fsi-topbar__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fsi-white);
  white-space: nowrap;
}

.fsi-topbar__list i {
  color: var(--fsi-white);
  font-size: 13px;
}

.fsi-topbar__list a:hover {
  font-size: 14px;
}

/* Top bar with contact details is desktop-only */
@media (max-width: 991.98px) {
  .fsi-topbar {
    display: none;
  }
}

/* ---- Sticky wrapper ---- */
.fsi-mainbar {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-bottom: 14px;
  transition: padding 0.25s ease;
}

.fsi-mainbar.is-fixed {
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(254, 246, 240, 0.96);
  backdrop-filter: blur(6px);
}

@media (max-width: 991.98px) {
  .fsi-mainbar {
    padding-top: 10px;
    padding-bottom: 10px;
    /* background: rgba(254, 246, 240, .96); */
    backdrop-filter: blur(6px);
  }
}

/* ---- Box header : skewed white panel behind the bar ---- */
.fsi-box-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 84px;
  padding: 0 26px;
}

.fsi-box-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: calc(100% + 30px);
  background: #fff;
  box-shadow: var(--fsi-shadow);
  border-radius: 8px;
  transform: translateX(-50%) skewX(var(--fsi-skew));
  z-index: -1;
}

@media (max-width: 991.98px) {
  .fsi-box-header::after {
    transform: translateX(-50%) skewX(0);
    width: 100%;
    border-radius: 8px;
  }

  .fsi-box-header {
    min-height: 64px;
    padding: 0 14px;
  }
}

@media (max-width: 380px) {
  .fsi-box-header {
    padding: 0 10px;
  }
}

/* ===================================================================
   LOGO
=================================================================== */
.fsi-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.fsi-logo__img {
  width: auto;
  height: 58px;
  max-width: 140px;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .fsi-logo__img {
    height: 46px;
    max-width: 110px;
  }
}

@media (max-width: 380px) {
  .fsi-logo__img {
    height: 40px;
    max-width: 95px;
  }
}

/* ===================================================================
   DESKTOP NAV
=================================================================== */
.fsi-nav {
  display: flex;
  align-items: center;
}

.fsi-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.fsi-nav__item {
  position: relative;
}

.fsi-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 30px 14px;
  font-family: var(--fsi-font-nav);
  font-weight: 600;
  font-size: 15px;
  color: var(--fsi-navy);
  position: relative;
}

.fsi-nav__link::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 26px;
  height: 3px;
  background: var(--fsi-orange);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.fsi-nav__item:hover > .fsi-nav__link,
.fsi-nav__link.is-active {
  color: var(--fsi-orange-dark);
}

.fsi-nav__item:hover > .fsi-nav__link::before,
.fsi-nav__link.is-active::before {
  opacity: 1;
  transform: translateY(0);
}

.fsi-nav__link .fsi-caret {
  font-size: 10px;
  color: var(--fsi-gray);
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.fsi-nav__item:hover > .fsi-nav__link .fsi-caret {
  transform: rotate(180deg);
  color: var(--fsi-orange-dark);
}

/* ---- dropdown level 1 ---- */
.fsi-drop {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  min-width: 255px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(14, 35, 64, 0.18);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 30;
}

.fsi-nav__item:hover > .fsi-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fsi-drop__item {
  position: relative;
}

.fsi-drop__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fsi-navy);
}

.fsi-drop__link:hover,
.fsi-drop__item:hover > .fsi-drop__link {
  background: #26489f24;
  color: var(--fsi-orange-dark);
}

.fsi-drop__link i.fsi-sub-caret {
  font-size: 11px;
  color: var(--fsi-gray);
}

/* ---- dropdown level 2 (nested) ---- */
.fsi-drop--sub {
  top: -8px;
  left: calc(100% + 8px);
  min-width: 265px;
}

.fsi-drop__item:hover > .fsi-drop--sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===================================================================
   EXTRA NAV : search + CTA (skewed, BodyShape-style)
=================================================================== */
.fsi-extra {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.fsi-search-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--fsi-cream);
  color: var(--fsi-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transform: skewX(var(--fsi-skew));
}

.fsi-search-btn i {
  transform: skewX(calc(-1 * var(--fsi-skew)));
}

.fsi-search-btn:hover {
  background: var(--fsi-navy);
  color: #fff;
}

.fsi-cta-wrap {
  display: flex;
  align-items: center;
}

.fsi-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--fsi-orange);
  color: #fff;
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
  transform: skewX(var(--fsi-skew));
  transition: background 0.2s ease;
}

.fsi-cta span,
.fsi-cta i {
  transform: skewX(calc(-1 * var(--fsi-skew)));
  display: inline-block;
}

.fsi-cta:hover {
  background: var(--fsi-orange-dark);
}

.fsi-cta-slash {
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin-left: 8px;
  height: 46px;
}

.fsi-cta-slash span {
  width: 7px;
  background: var(--fsi-orange);
  transform: skewX(var(--fsi-skew));
  opacity: 0.85;
}

.fsi-cta-slash span:last-child {
  opacity: 0.45;
  width: 5px;
}

@media (max-width: 1279.98px) {
  .fsi-cta-wrap {
    display: none;
  }
}

/* ===================================================================
   MOBILE TOGGLER (skewed 3-bar icon) — visible below 992px
=================================================================== */
.fsi-toggler {
  display: none;
  width: 42px;
  height: 38px;
  border: none;
  background: var(--fsi-cream);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  transform: skewX(var(--fsi-skew));
}

.fsi-toggler span {
  display: block;
  height: 3px;
  width: 20px;
  background: var(--fsi-navy);
  border-radius: 2px;
  transform: skewX(calc(-1 * var(--fsi-skew)));
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

@media (max-width: 991.98px) {
  .fsi-nav {
    display: none;
  }

  .fsi-search-btn {
    display: none;
  }

  .fsi-toggler {
    display: flex;
  }
}

/* ===================================================================
   MOBILE DRAWER — slides in from the right
=================================================================== */
.fsi-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 35, 64, 0.55);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 998;
}

.fsi-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.fsi-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  height: 100dvh;
  width: min(320px, 84%);
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 34px rgba(14, 35, 64, 0.22);
}

.fsi-drawer.is-open {
  transform: translateX(0);
}

.fsi-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--fsi-line);
  flex-shrink: 0;
}

.fsi-drawer__head .fsi-logo__img {
  height: 40px;
  max-width: 95px;
}

.fsi-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--fsi-cream);
  color: var(--fsi-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.fsi-drawer__body {
  padding: 6px 0 20px;
  overflow-y: auto;
  flex: 1 1 auto;
}

.fsi-macc__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--fsi-navy);
  border-bottom: 1px solid var(--fsi-line);
}

.fsi-macc__link .fsi-macc__toggle {
  font-size: 11px;
  color: var(--fsi-gray);
  transition: transform 0.2s ease;
}

.fsi-macc__link.is-open .fsi-macc__toggle {
  transform: rotate(90deg);
  color: var(--fsi-orange-dark);
}

.fsi-macc__panel {
  display: grid;
  grid-template-rows: 0fr;
  background: var(--fsi-cream);
  transition: grid-template-rows 0.28s ease;
}

.fsi-macc__panel.is-open {
  grid-template-rows: 1fr;
}

.fsi-macc__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.fsi-macc__panel .fsi-macc__link {
  padding-left: 28px;
  font-size: 13.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(14, 35, 64, 0.06);
}

.fsi-macc__leaf {
  display: block;
  padding: 11px 18px 11px 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fsi-gray);
  border-bottom: 1px solid rgba(14, 35, 64, 0.06);
}

.fsi-macc__leaf:hover {
  color: var(--fsi-orange-dark);
}

.fsi-macc__leaf--top {
  padding-left: 18px;
}

.fsi-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 16px 4px;
  padding: 12px 16px;
  background: var(--fsi-orange);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 6px;
}

.fsi-drawer__contact {
  padding: 16px 18px 18px;
  margin-top: 8px;
  border-top: 1px solid var(--fsi-line);
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fsi-drawer__contact li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fsi-navy);
}

.fsi-drawer__contact i {
  color: var(--fsi-orange);
  flex-shrink: 0;
}

body.fsi-lock {
  overflow: hidden;
}

/* ===================================================================
   RESPONSIVE FINE-TUNING
=================================================================== */
@media (max-width: 575.98px) {
  .fsi-drawer {
    width: min(300px, 88%);
  }
}

.slider-container {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease-in-out,
    visibility 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.content-box {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 900px;
}

.slide-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  transform: translateY(60px);
  opacity: 0;
}

.slide.active .slide-title.animate {
  animation: slideUpFade 1s ease-out forwards;
}

.slide-description {
  font-size: clamp(1rem, 2vw, 1rem);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  transform: translateY(60px);
  opacity: 0;
}

.slide.active .slide-description.animate {
  animation: slideUpFade 1s ease-out 0.3s forwards;
}

.slide-btn {
  display: inline-block;
  padding: 16px 45px;
  background: #26489f;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.slide.active .slide-btn.animate {
  animation: zoomInBounce 0.8s ease-out 0.6s forwards;
}

.slide-btn:hover {
  transform: scale(1.1) !important;
  /* box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4); */
  color: #fff;
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.15);
}

.nav-arrow.prev {
  left: 30px;
}

.nav-arrow.next {
  right: 30px;
}

/* Dots Navigation */
.dots-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.dot.active {
  background: white;
  width: 45px;
  border-radius: 7px;
}

/* Animation Keyframes */
@keyframes slideUpFade {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomInBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeSlideLeft {
  from {
    transform: translateX(-80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeSlideRight {
  from {
    transform: translateX(80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes rotateZoomIn {
  from {
    transform: rotate(-90deg) scale(0);
    opacity: 0;
  }
  to {
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

@keyframes bounceInDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  60% {
    transform: translateY(15px);
    opacity: 1;
  }
  80% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes flipIn {
  from {
    transform: perspective(400px) rotateX(-90deg);
    opacity: 0;
  }
  to {
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
}

/* Pattern Animation Classes */
.pattern-slide-left .slide-title.animate {
  animation: fadeSlideLeft 1s ease-out forwards !important;
}

.pattern-slide-right .slide-title.animate {
  animation: fadeSlideRight 1s ease-out forwards !important;
}

.pattern-rotate .slide-title.animate {
  animation: rotateZoomIn 1s ease-out forwards !important;
}

.pattern-bounce .slide-title.animate {
  animation: bounceInDown 1s ease-out forwards !important;
}

.pattern-flip .slide-title.animate {
  animation: flipIn 1s ease-out forwards !important;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .nav-arrow.prev {
    left: 15px;
  }

  .nav-arrow.next {
    right: 15px;
  }

  .content-box {
    padding: 1.5rem;
  }

  .slide-btn {
    padding: 14px 35px;
    font-size: 1rem;
  }

  .slide-title {
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .dots-container {
    bottom: 25px;
    gap: 10px;
  }

  .dot {
    width: 11px;
    height: 11px;
  }

  .dot.active {
    width: 35px;
  }

  .nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

/* ===================================================================
   SECTION SHELL
=================================================================== */
.fsi-feat {
  position: relative;
  background: radial-gradient(
    120% 140% at 15% 0%,
    #1c2740 0%,
    var(--fsi-black) 55%
  );
  padding: 0px 0 50px;
  overflow: hidden;
}

.fsi-feat__dot {
  position: absolute;
  top: 64px;
  left: 56px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fsi-white);
  opacity: 0.7;
}

/* ---- scroll cue ---- */
.fsi-feat__scroll {
  display: block;
  max-width: 125px;
  margin: auto;
  margin-top: 26px auto 64px;
  border: none;
  background: transparent;
  color: var(--fsi-blue);
  font-size: 16px;
  cursor: pointer;
  animation: fsiBounce 2.2s ease-in-out infinite;
}

@keyframes fsiBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fsi-feat__scroll {
    animation: none;
  }
}

/* ===================================================================
   FEATURE GRID
=================================================================== */
.fsi-feat__grid {
  position: relative;
  z-index: 2;
}

.fsi-feat__card {
  text-align: center;
  padding: 10px 14px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fsi-feat__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fsi-feat__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  margin-bottom: 22px;
}

.fsi-feat__icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(77, 125, 255, 0.12);
  border: 2px solid var(--fsi-blue);
  color: var(--fsi-blue);
  font-size: 34px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.fsi-feat__card:hover .fsi-feat__icon-circle {
  background: rgba(77, 125, 255, 0.2);
  animation: fsiIconBounce 0.6s ease;
}

@keyframes fsiIconBounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-12px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fsi-feat__card:hover .fsi-feat__icon-circle {
    animation: none;
  }
}

.fsi-feat__card-title {
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 18px;
  color: var(--fsi-white);
  margin-bottom: 10px;
}

.fsi-feat__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fsi-muted);
  max-width: 230px;
  margin: 0 auto;
}

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 991.98px) {
  .fsi-feat {
    padding: 76px 0 70px;
  }
  .fsi-feat__dot {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .fsi-feat {
    padding: 60px 0 54px;
  }
  .fsi-feat__scroll {
    margin-bottom: 44px;
  }
  .fsi-feat__img-wrap {
    height: 76px;
    margin-bottom: 18px;
  }
  .fsi-feat__icon-circle {
    width: 76px;
    height: 76px;
    font-size: 28px;
  }
}

/* ===================================================================
   SECTION SHELL  (static fields — title / eyebrow — assumed to come
   from their own DB columns, not the rich-text body)
=================================================================== */
.fsi-about {
  padding: 50px 0;
  background: var(--fsi-bg);
  position: relative;
}

.football-net {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 250px;
}

.fsi-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fsi-blue);
  background: #eef2fb;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.fsi-about__title {
  font-family: var(--fsi-font-nav);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.3;
  color: var(--fsi-ink);
  margin-bottom: 30px;
}
.fsi-about__title span {
  color: var(--fsi-blue);
}

/* === fsi-about__content === */
.fsi-about__content {
  overflow: hidden;
  position: relative;
}

.fsi-about__content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--fsi-muted);
  margin: 0 0 18px;
}

/* a small typographic flourish that needs zero extra markup */
.fsi-about__content > p:first-of-type::first-letter {
  font-family: var(--fsi-font-nav);
  font-weight: 800;
  font-size: 3.2em;
  line-height: 0.78;
  float: left;
  padding: 4px 10px 0 0;
  color: var(--fsi-blue);
}

.fsi-about__content a {
  color: var(--fsi-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fsi-about__content strong {
  color: var(--fsi-ink);
  font-weight: 700;
}

/* ---- images : alternate sides automatically via nth-of-type,
   decorated purely with CSS (no wrapper divs / spans needed) ---- */
.fsi-about__content img {
  display: block;
  width: min(400px, 100%);
  height: auto;
  border-radius: 14px;
  margin: 6px 0 18px;
  /* box-shadow: 0 20px 40px -16px rgba(14, 35, 64, 0.32); */
  box-sizing: border-box;
  background-repeat: repeat;
  background-size: 14px 14px;
  transition: transform 0.45s ease;
}
.fsi-about__content img:hover {
  transform: scale(1.035);
}

.fsi-about__tag--bl {
  left: 14px;
  top: 20px;
}

.fsi-about__tag {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 12px 26px -12px rgba(14, 35, 64, 0.4);
  font-size: 12px;
  font-weight: 700;
  color: var(--fsi-ink);
  white-space: nowrap;
}

.fsi-about__content img:nth-of-type(odd) {
  float: left;
  margin-right: 26px;
  padding: 0 30px 30px 0; /* reveals the dot pattern
                                              bottom-right of the photo */
  background-image: radial-gradient(var(--fsi-blue) 2px, transparent 2.3px);
  background-position: bottom right;
}

.fsi-about__content img:nth-of-type(even) {
  float: right;
  margin-left: 26px;
  padding: 0 0 18px 18px; /* mirrored: dot pattern
                                              bottom-left instead */
  background-image: radial-gradient(var(--fsi-blue-lt) 2px, transparent 2.3px);
  background-position: bottom left;
}

/* second image onward reads a little smaller so the flow keeps moving */
.fsi-about__content img:nth-of-type(n + 2) {
  width: min(240px, 100%);
}

/* ---- lists : styled as a checklist with zero added classes ---- */
.fsi-about__content ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.fsi-about__content li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--fsi-ink);
}

.fsi-about__content li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  background: var(--fsi-blue);
  border-radius: 50%;
}

/* nested lists still work without any extra classes */
.fsi-about__content li ul {
  margin-top: 10px;
}
.fsi-about__content li li::before {
  background: var(--fsi-blue-lt);
}

/* ===================================================================
   STAT STRIP  (separate, structured block — not part of the CMS body)
=================================================================== */
.fsi-about__stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 20px;
  padding-top: 34px;
  border-top: 1px solid var(--fsi-line);
}

.fsi-about__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fsi-about__stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fsi-about__stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--fsi-blue-lt), var(--fsi-blue));
  color: #fff;
  font-size: 18px;
}

.fsi-about__stat-num {
  font-family: var(--fsi-font-nav);
  font-weight: 800;
  font-size: 22px;
  color: var(--fsi-ink);
  line-height: 1.1;
  margin: 0;
}
.fsi-about__stat-label {
  font-size: 12.5px;
  color: var(--fsi-muted);
  font-weight: 600;
  margin: 0;
}

.fsi-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 14px 26px;
  background: var(--fsi-blue);
  color: #fff;
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.fsi-about__cta:hover {
  background: var(--fsi-navy);
  color: #fff;
  transform: translateY(-2px);
}

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 767.98px) {
  .fsi-about {
    padding: 70px 0;
  }
  .fsi-about__title {
    font-size: 28px;
  }

  /* floats collapse to a plain stacked flow — wrapped text around a
     float is unreadable at narrow widths, so this is the one place
     the behaviour changes */
  .fsi-about__content img:nth-of-type(odd),
  .fsi-about__content img:nth-of-type(even) {
    float: none;
    width: 100%;
    margin: 0 0 22px;
    padding: 0 0 16px 16px;
    background-position: bottom left;
  }

  .fsi-about__content img:nth-of-type(n + 2) {
    width: 100%;
  }

  .fsi-about__stats {
    gap: 24px;
  }
}

@media (max-width: 575.98px) {
  .fsi-about__title {
    font-size: 24px;
  }
}

/* ===================================================================
   MISSION & VISION
=================================================================== */
.fsi-mv {
  position: relative;
  padding: 70px 0;
  background: var(--fsi-bg);
  overflow: hidden;
}

.fsi-mv__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.fsi-mv__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fsi-blue);
  background: #eef1fa;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.fsi-mv__title {
  font-family: var(--fsi-font-nav);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.3;
  color: var(--fsi-ink);
}
.fsi-mv__title span {
  color: var(--fsi-blue);
}

/* ---- row / divider ---- */
.fsi-mv__row {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--fsi-shadow);
}

/* vertical court-line divider between the two cards, desktop only */
.fsi-mv__row::before {
  content: "";
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: 50%;
  width: 1px;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0px,
    rgba(255, 255, 255, 0.35) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 3;
}
.fsi-mv__row::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--fsi-blue);
  z-index: 4;
}

/* ---- cards ---- */
.fsi-mv__card {
  position: relative;
  height: 100%;
  padding: 48px 44px;
  color: #fff;
  overflow: hidden;
}

.fsi-mv__card--mission {
  background: linear-gradient(
    150deg,
    var(--fsi-navy) 0%,
    var(--fsi-navy-2) 100%
  );
}
.fsi-mv__card--vision {
  background: linear-gradient(150deg, var(--fsi-blue) 0%, #1a3374 100%);
}

/* faint net-crosshatch texture, ties to "ring/net" product line */
.fsi-mv__card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background:
    repeating-linear-gradient(
      60deg,
      #fff 0px,
      #fff 1px,
      transparent 1px,
      transparent 26px
    ),
    repeating-linear-gradient(
      -60deg,
      #fff 0px,
      #fff 1px,
      transparent 1px,
      transparent 26px
    );
  pointer-events: none;
}

.fsi-mv__tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--fsi-font-nav);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 26px;
}

.fsi-mv__icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  transform: rotate(-6deg);
  transition: transform 0.3s ease;
}
.fsi-mv__card:hover .fsi-mv__icon {
  transform: rotate(0deg) scale(1.05);
}

.fsi-mv__label {
  position: relative;
  z-index: 1;
  font-family: var(--fsi-font-nav);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 16px;
}

.fsi-mv__text {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}

.fsi-mv__points {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.fsi-mv__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.fsi-mv__points li:last-child {
  margin-bottom: 0;
}
.fsi-mv__points li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex: none;
}

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 991.98px) {
  .fsi-mv__row::before,
  .fsi-mv__row::after {
    display: none;
  }
  .fsi-mv__card {
    padding: 40px 32px;
  }
  .fsi-mv__title {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .fsi-mv {
    padding: 56px 0;
  }
  .fsi-mv__title {
    font-size: 23px;
  }
  .fsi-mv__card {
    padding: 36px 24px;
  }
}

/* ===================================================================
   SECTION SHELL
=================================================================== */
.fsi-prod {
  position: relative;
  padding: 50px 0;
  background: url("../images/3.webp") right center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  z-index: 1;
}

.fsi-prod::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff91;
  z-index: -1;
}

.fsi-prod__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.fsi-prod__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fsi-blue);
  background: #e8edfb;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.fsi-prod__title {
  font-family: var(--fsi-font-nav);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.28;
  color: var(--fsi-ink);
}
.fsi-prod__title span {
  color: var(--fsi-blue);
}

.fsi-prod__lede {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fsi-muted);
}

/* ===================================================================
   CARD
=================================================================== */
.fsi-prod__grid {
  position: relative;
}

.fsi-prod__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 34px -18px rgba(14, 35, 64, 0.22);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.25s ease;
}
.fsi-prod__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fsi-prod__card:hover {
  box-shadow: 0 24px 46px -18px rgba(14, 35, 64, 0.32);
}

/* ---- media : image + sporty overlays ---- */
.fsi-prod__media {
  position: relative;
  aspect-ratio: 4 / 6;
  overflow: hidden;
  background: var(--fsi-navy);
}

.fsi-prod__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.fsi-prod__card:hover .fsi-prod__img {
  transform: scale(1.08);
}

/* dark gradient wash for badge/number legibility */
.fsi-prod__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 35, 64, 0.35) 0%,
    transparent 34%,
    transparent 100%
  );
  pointer-events: none;
}

/* jersey-style diagonal stripe transition into the card body */
.fsi-prod__stripe {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -1px;
  height: 34px;
  background: linear-gradient(100deg, var(--fsi-blue-lt), var(--fsi-blue));
  clip-path: polygon(0 100%, 0 35%, 100% 0, 100% 100%);
  z-index: 2;
}

.fsi-prod__category {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
}
.fsi-prod__category--pole {
  background: var(--fsi-blue);
}
.fsi-prod__category--floor {
  background: var(--fsi-teal);
}
.fsi-prod__category--ring {
  background: var(--fsi-coral);
}

.fsi-prod__num {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- body ---- */
.fsi-prod__body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.fsi-prod__name {
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 17px;
  color: var(--fsi-ink);
  margin-bottom: 18px;
}

.fsi-prod__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.fsi-prod__btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 10px;
  border-radius: 8px;
  font-family: var(--fsi-font-nav);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.fsi-prod__btn--quote {
  background: var(--fsi-blue);
  color: #fff;
}
.fsi-prod__btn--quote:hover {
  background: var(--fsi-navy);
  color: #fff;
  transform: translateY(-2px);
}

.fsi-prod__btn--view {
  background: #fff;
  color: var(--fsi-blue);
  border: 1.5px solid var(--fsi-line);
}
.fsi-prod__btn--view:hover {
  border-color: var(--fsi-blue);
  background: #eef2fb;
  color: var(--fsi-blue);
}

/* ===================================================================
   OWL CAROUSEL OVERRIDES
=================================================================== */
.fsi-prod__carousel {
  margin: 0 -12px;
}
.fsi-prod__carousel .owl-stage-outer {
  overflow: visible;
}
.fsi-prod__carousel .owl-item {
  padding: 0 12px;
  opacity: 1 !important;
  transform: none !important;
}

/* remove the old scroll-reveal state; every card is visible in the track */
.fsi-prod__card {
  opacity: 1;
  transform: none;
}

/* ---- nav row (arrows + dots) ---- */
.fsi-prod__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

.fsi-prod__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--fsi-line);
  background: #fff;
  color: var(--fsi-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.fsi-prod__arrow:hover {
  background: var(--fsi-blue);
  border-color: var(--fsi-blue);
  color: #fff;
  transform: translateY(-2px);
}

.fsi-prod__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fsi-prod__dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fsi-line);
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.fsi-prod__dots .owl-dot.active span {
  width: 22px;
  border-radius: 5px;
  background: var(--fsi-blue);
}

@media (max-width: 575.98px) {
  .fsi-prod__nav {
    gap: 12px;
    margin-top: 26px;
  }
  .fsi-prod__arrow {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
}

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 991.98px) {
  .fsi-prod {
    padding: 76px 0 80px;
  }
  .fsi-prod__title {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .fsi-prod {
    padding: 60px 0 64px;
  }
  .fsi-prod__title {
    font-size: 24px;
  }
  .fsi-prod__eyebrow {
    font-size: 11.5px;
  }
  .fsi-prod__btn {
    font-size: 12.5px;
    padding: 10px 8px;
  }
}

/* ===================== SECTION SHELL ===================== */
.wcu-section {
  position: relative;
  background: #fff;
  padding: 90px 0;
  overflow: hidden;
}

.wcu-lane {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 46%;
  height: 140%;
  background: linear-gradient(
    180deg,
    var(--fsi-navy) 0%,
    var(--fsi-navy-2) 100%
  );
  transform: skewX(var(--fsi-skew));
  z-index: 0;
  opacity: 0.06;
}

.wcu-container {
  position: relative;
  z-index: 1;
}

/* ===================== INTRO COLUMN ===================== */
.wcu-intro {
  padding-right: 30px;
}

.wcu-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fsi-font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fsi-orange);
  margin: 0 0 16px;
}

.wcu-tag::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--fsi-coral);
  display: inline-block;
  transform: skewX(var(--fsi-skew));
}

.wcu-title {
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 30px);
  line-height: 1.15;
  color: var(--fsi-navy);
  margin: 0 0 18px;
}

.wcu-title span {
  color: var(--fsi-orange);
}

.wcu-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--fsi-muted);
  margin: 0 0 30px;
  max-width: 480px;
}

/* ---- image collage ---- */
.wcu-collage {
  position: relative;
  max-width: 460px;
  margin-bottom: 34px;
}

.wcu-collage-main {
  width: 100%;
  height: 450px;
  object-fit: contain;
  border-radius: var(--wcu-radius);
  /* box-shadow: var(--fsi-shadow); */
  display: block;
}

.wcu-collage-float {
  position: absolute;
  bottom: -30px;
  left: 300px;
  /* width: 100%; */
  height: 150px;
  object-fit: contain;
  border-radius: var(--wcu-radius);
  border: 5px solid var(--fsi-white);
  /* box-shadow: var(--fsi-shadow); */
}

.wcu-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--fsi-navy);
  color: var(--fsi-white);
  font-family: var(--fsi-font-nav);
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--fsi-shadow);
}

.wcu-badge strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--fsi-teal);
}

.wcu-badge em {
  display: block;
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fsi-line);
  opacity: 0.8;
}

/* ---- contact strip ---- */
.wcu-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.wcu-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--fsi-navy);
  background: var(--fsi-white);
  border: 1px solid var(--fsi-line);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  transition:
    border-color var(--wcu-transition),
    transform var(--wcu-transition);
}

.wcu-contact-link:hover {
  border-color: var(--fsi-orange);
  transform: translateY(-2px);
  color: var(--fsi-orange);
}

.wcu-contact-link .wcu-ico {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: var(--fsi-navy);
  color: var(--fsi-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.wcu-contact-link span {
  line-height: 1.3;
}

.wcu-contact-link small {
  display: block;
  font-size: 10.5px;
  color: var(--fsi-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================== FEATURE CARDS ===================== */
.wcu-grid {
  padding-left: 10px;
}

.wcu-card {
  position: relative;
  background: var(--fsi-white);
  border: 1px solid var(--fsi-line);
  border-radius: var(--wcu-radius);
  padding: 26px 22px 24px;
  height: 100%;
  overflow: hidden;
  transition:
    transform var(--wcu-transition),
    box-shadow var(--wcu-transition),
    border-color var(--wcu-transition);
}

.wcu-card::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  background: var(--fsi-cream);
  top: -22px;
  right: -22px;
  transform: skewX(var(--fsi-skew));
  transition: background var(--wcu-transition);
}

.wcu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fsi-shadow);
  border-color: transparent;
}

.wcu-card:hover::after {
  background: var(--fsi-orange);
}

.wcu-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--fsi-navy);
  color: var(--fsi-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  transform: skewX(var(--fsi-skew));
  transition: background var(--wcu-transition);
}

.wcu-card-icon i {
  transform: skewX(calc(var(--fsi-skew) * -1));
}

.wcu-card:hover .wcu-card-icon {
  background: var(--fsi-orange);
}

.wcu-card-title {
  font-family: var(--fsi-font-nav);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--fsi-navy);
  margin: 0 0 10px;
}

.wcu-card-text {
  font-size: 13.8px;
  line-height: 1.65;
  color: var(--fsi-gray);
  margin: 0;
}

.wcu-card.is-visible {
  animation: wcuRise 0.6s ease forwards;
}

@keyframes wcuRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .wcu-intro {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .wcu-grid {
    padding-left: 0;
  }
  .wcu-lane {
    opacity: 0.04;
  }
}

@media (max-width: 767.98px) {
  .wcu-section {
    padding: 60px 0;
  }
  .wcu-collage {
    max-width: 100%;
    margin: 0 auto 60px;
  }
  .wcu-collage-main {
    height: 240px;
  }
  .wcu-collage-float {
    width: 50%;
    height: 120px;
    left: -14px;
    bottom: -24px;
  }
  .wcu-badge {
    top: 12px;
    right: 12px;
    padding: 8px 12px;
  }
  .wcu-badge strong {
    font-size: 17px;
  }
  .wcu-contact {
    flex-direction: column;
  }
  .wcu-card-icon,
  .wcu-card::after {
    transform: none;
  }
  .wcu-card-icon i {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wcu-card,
  .wcu-card-icon,
  .wcu-contact-link {
    transition: none;
  }
  .wcu-card.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============ SECTION SHELL ============ */
.ft-tf {
  background: var(--fsi-cream);
  padding: 100px 0;
}
.ft-tf__inner {
  padding: 0 10px;
}

.ft-tf__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.ft-tf__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.ft-tf__badge span {
  width: 24px;
  height: 3px;
  border-radius: 4px;
  background: var(--fsi-coral);
  display: inline-block;
  transform: skewX(var(--fsi-skew));
}
.ft-tf__badge p {
  margin: 0;
  color: var(--fsi-orange-dark);
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ft-tf__title {
  font-family: var(--fsi-font-nav);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.25;
  color: var(--fsi-navy);
  margin: 0 0 14px;
}
.ft-tf__title span {
  color: var(--fsi-orange);
}
.ft-tf__subtitle {
  margin: 0;
  color: var(--fsi-gray);
  font-size: 0.96rem;
  line-height: 1.7;
}

.ft-tf__col-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
}
.ft-tf__col-title i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--fsi-navy);
  color: var(--fsi-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transform: skewX(var(--fsi-skew));
}
.ft-tf__col-title p {
  margin: 0;
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fsi-navy);
}

/* ============ TESTIMONIALS: vertical auto-scrolling marquee ============ */
.ft-testi-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ft-testi {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  min-height: 520px;
}
.ft-testi__viewport {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.ft-testi__track {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: ftTestiScroll linear infinite;
  animation-duration: 26s;
}
.ft-testi.is-paused .ft-testi__track {
  animation-play-state: paused;
}
@keyframes ftTestiScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.ft-testi-slide {
  display: flex;
  width: 100%;
  flex-shrink: 0;
  background: var(--fsi-white);
  border: 1px solid var(--fsi-line);
  border-radius: 18px;
  padding: 28px 30px 24px;
  flex-direction: column;
  justify-content: center;
}
.ft-testi-slide__quote {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(38, 72, 159, 0.1);
  color: var(--fsi-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 14px;
}
.ft-testi-slide__stars {
  color: var(--fsi-teal);
  font-size: 0.8rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.ft-testi-slide__text {
  margin: 0 0 16px;
  color: var(--fsi-ink);
  font-size: 0.94rem;
  line-height: 1.6;
}
.ft-testi-slide__person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--fsi-line);
}
.ft-testi-slide__person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ft-testi-slide__name {
  margin: 0;
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--fsi-navy);
}
.ft-testi-slide__role {
  margin: 0;
  color: var(--fsi-gray);
  font-size: 0.78rem;
}

/* ============ FAQ ACCORDION ============ */
.ft-faq {
  height: 100%;
}
.ft-faq__item {
  background: var(--fsi-white);
  border-radius: 14px;
  border: 1px solid var(--fsi-line);
  margin-bottom: 14px;
  overflow: hidden;
}
.ft-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--fsi-font-nav);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--fsi-navy);
}
.ft-faq__q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fsi-cream);
  color: var(--fsi-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}
.ft-faq__q[aria-expanded="true"] .ft-faq__q-icon {
  transform: rotate(45deg);
  background: var(--fsi-coral);
  color: var(--fsi-white);
}
.ft-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.ft-faq__a-inner {
  padding: 0 22px 20px;
  color: var(--fsi-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}
.ft-faq__item.ft-open .ft-faq__a {
  max-height: 260px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .ft-testi {
    margin-bottom: 40px;
    min-height: 420px;
  }
}
@media (max-width: 575.98px) {
  .ft-tf {
    padding: 64px 0;
  }
  .ft-tf__title {
    font-size: 1.6rem;
  }
  .ft-testi {
    min-height: 360px;
  }
  .ft-testi-slide {
    padding: 22px 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-testi__track {
    animation: none;
  }
  .ft-faq__a,
  .ft-faq__q-icon {
    transition: none;
  }
}

/* ===================== SECTION SHELL ===================== */
.gt-section {
  position: relative;
  background: linear-gradient(
    165deg,
    var(--fsi-navy) 0%,
    var(--fsi-navy-2) 55%,
    var(--fsi-navy) 100%
  );
  padding: 110px 0 100px;
  overflow: hidden;
}

.gt-section::before,
.gt-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.gt-section::before {
  width: 560px;
  height: 560px;
  top: -220px;
  left: -160px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
}

.gt-section::after {
  width: 460px;
  height: 460px;
  bottom: -200px;
  right: -140px;
  background: radial-gradient(
    circle,
    rgba(23, 184, 154, 0.07) 0%,
    transparent 70%
  );
}

.gt-watermark {
  position: absolute;
  top: -34px;
  right: -10px;
  font-family: var(--fsi-font-nav);
  font-weight: 900;
  font-size: 260px;
  line-height: 1;
  letter-spacing: -8px;
  color: rgba(255, 255, 255, 0.035);
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.gt-container {
  position: relative;
  z-index: 1;
}

/* ===================== HEADER ===================== */
.gt-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 46px;
}

.gt-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fsi-font-nav);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fsi-teal);
  margin: 0 0 16px;
}

.gt-tag span {
  width: 24px;
  height: 3px;
  background: var(--fsi-coral);
  display: inline-block;
  transform: skewX(var(--fsi-skew));
}

.gt-title {
  font-family: var(--fsi-font-nav);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.2;
  color: var(--fsi-white);
  margin: 0 0 14px;
}

.gt-title span {
  color: var(--fsi-teal);
}

.gt-subtitle {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--fsi-line);
  opacity: 0.7;
  margin: 0;
}

/* ===================== SCOREBOARD CONTACT RIBBON ===================== */
.gt-ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 60px;
}

.gt-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: var(--fsi-white);
  padding: 16px 26px 16px 18px;
  border-radius: 12px;
  box-shadow: var(--fsi-shadow);
  transform: skewX(var(--fsi-skew));
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.gt-chip:hover {
  transform: skewX(var(--fsi-skew)) translateY(-4px);
  box-shadow: 0 20px 34px rgba(14, 35, 64, 0.2);
}

.gt-chip > * {
  transform: skewX(calc(var(--fsi-skew) * -1));
}

.gt-chip__ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--fsi-white);
}

.gt-chip:nth-child(1) .gt-chip__ico {
  background: var(--fsi-orange);
}
.gt-chip:nth-child(2) .gt-chip__ico {
  background: var(--fsi-coral);
}
.gt-chip:nth-child(3) .gt-chip__ico {
  background: var(--fsi-teal);
}

.gt-chip small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fsi-gray);
  margin-bottom: 2px;
}

.gt-chip p {
  margin: 0;
  font-family: var(--fsi-font-nav);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--fsi-navy);
  max-width: 220px;
  line-height: 1.35;
}

/* ===================== FORM CARD ===================== */
.gt-form-card {
  position: relative;
  background: var(--fsi-white);
  border-radius: 20px;
  padding: 46px 42px;
  box-shadow: var(--fsi-shadow);
  height: 100%;
}

.gt-form-flag {
  position: absolute;
  top: 26px;
  right: -1px;
  background: var(--fsi-teal);
  color: var(--fsi-white);
  font-family: var(--fsi-font-nav);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px 7px 20px;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gt-form-title {
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 21px;
  color: var(--fsi-navy);
  margin: 0 0 6px;
}

.gt-form-sub {
  font-size: 13.4px;
  color: var(--fsi-gray);
  margin: 0 0 30px;
}

.gt-field {
  position: relative;
  margin-bottom: 22px;
}

.gt-field input,
.gt-field select,
.gt-field textarea {
  width: 100%;
  border: 1px solid var(--fsi-line);
  border-radius: 10px;
  padding: 18px 16px 8px;
  font-family: var(--fsi-font-body);
  font-size: 14px;
  color: var(--fsi-ink);
  background: var(--fsi-cream);
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
  appearance: none;
}

.gt-field textarea {
  resize: none;
  min-height: 96px;
  padding-top: 20px;
}

.gt-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236a7688' stroke-width='1.6' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.gt-field input:focus,
.gt-field select:focus,
.gt-field textarea:focus {
  border-color: var(--fsi-orange);
  background: var(--fsi-white);
}

.gt-field label {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 13.6px;
  color: var(--fsi-gray);
  padding: 0 5px;
  pointer-events: none;
  transition:
    top 0.2s ease,
    font-size 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.gt-field input:focus + label,
.gt-field input:not(:placeholder-shown) + label,
.gt-field textarea:focus + label,
.gt-field textarea:not(:placeholder-shown) + label,
.gt-field select:focus + label,
.gt-field select:valid + label {
  top: -9px;
  font-size: 10.6px;
  color: var(--fsi-orange);
  background: var(--fsi-white);
}

.gt-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gt-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  background: var(--fsi-orange);
  color: var(--fsi-white);
  font-family: var(--fsi-font-nav);
  font-weight: 600;
  font-size: 14px;
  padding: 15px 32px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.gt-submit:hover {
  background: var(--fsi-orange-dark);
  transform: translateY(-2px);
}

.gt-form-note {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--fsi-teal);
  display: none;
  align-items: center;
  gap: 6px;
}

.gt-form-note.is-visible {
  display: flex;
}

/* ===================== MAP + FACTS COLUMN ===================== */
.gt-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.gt-map-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--fsi-shadow);
  flex: 1 1 auto;
  min-height: 240px;
}

.gt-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: absolute;
  inset: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.gt-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.gt-map-pin::before,
.gt-map-pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--fsi-coral);
  opacity: 0.55;
  animation: gtPing 2.2s ease-out infinite;
}

.gt-map-pin::after {
  animation-delay: 1.1s;
}

.gt-map-pin i {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--fsi-coral);
  border: 2px solid var(--fsi-white);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

@keyframes gtPing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(7);
    opacity: 0;
  }
}

.gt-map-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: var(--fsi-white);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--fsi-font-nav);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fsi-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--fsi-shadow);
  z-index: 2;
}

.gt-map-label i {
  color: var(--fsi-coral);
}

.gt-facts {
  background: var(--fsi-white);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: var(--fsi-shadow);
}

.gt-facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--fsi-line);
}

.gt-facts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.gt-facts li:first-child {
  padding-top: 0;
}

.gt-facts ul {
  margin: 0;
  padding: 0;
}

.gt-facts__ico {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: var(--fsi-cream);
  color: var(--fsi-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.gt-facts p {
  margin: 0;
  font-size: 12.6px;
  color: var(--fsi-muted);
  line-height: 1.4;
}

.gt-facts strong {
  display: block;
  font-family: var(--fsi-font-nav);
  font-size: 13px;
  color: var(--fsi-navy);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .gt-watermark {
    font-size: 180px;
    top: -20px;
  }
  .gt-side {
    margin-top: 24px;
  }
}

@media (max-width: 767.98px) {
  .gt-chip {
    transform: none;
  }
  .gt-chip > * {
    transform: none;
  }
  .gt-chip:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 575.98px) {
  .gt-section {
    padding: 70px 0 64px;
  }
  .gt-watermark {
    display: none;
  }
  .gt-form-card,
  .gt-facts {
    padding: 30px 22px;
  }
  .gt-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .gt-chip {
    width: 100%;
    padding: 14px 18px;
  }
  .gt-chip p {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gt-map-pin::before,
  .gt-map-pin::after {
    animation: none;
    opacity: 0.3;
  }
  .gt-submit,
  .gt-chip,
  .gt-field label,
  .gt-field input,
  .gt-field select,
  .gt-field textarea {
    transition: none;
  }
}

.fsi-preview-spacer {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fsi-gray);
  font-family: var(--fsi-font-body);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===================================================================
   FOOTER SHELL — light theme
=================================================================== */
.fsi-foot {
  position: relative;
  background: var(--fsi-cream);
  color: var(--fsi-muted);
  font-family: var(--fsi-font-body);
  overflow: hidden;
}

/* navy scoreboard header band, cut with the jersey-stripe angle */
.fsi-foot__band {
  position: relative;
  background: linear-gradient(
    120deg,
    var(--fsi-navy) 0%,
    var(--fsi-navy-2) 100%
  );
  padding: 54px 0 74px;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  overflow: hidden;
}
.fsi-foot__band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: repeating-linear-gradient(
    115deg,
    #fff 0px,
    #fff 2px,
    transparent 2px,
    transparent 46px
  );
  pointer-events: none;
}

.fsi-foot__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fsi-foot__stat {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.fsi-foot__stat:last-child {
  border-right: none;
}

.fsi-foot__stat-num {
  font-family: var(--fsi-font-nav);
  font-weight: 900;
  font-size: 34px;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}
.fsi-foot__stat-num span {
  color: #7ba0ff;
}

.fsi-foot__stat-label {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9fb0d6;
}

/* ring watermark in the light body, tinted */
.fsi-foot__ring {
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 2px dashed rgba(77, 125, 255, 0.16);
  z-index: 0;
  pointer-events: none;
  animation: fsi-spin 90s linear infinite;
}
.fsi-foot__ring::before {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  border: 38px solid rgba(77, 125, 255, 0.045);
}
@keyframes fsi-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fsi-foot__ring {
    animation: none;
  }
}

.fsi-foot .container {
  position: relative;
  z-index: 1;
}

/* court-line divider set into the light body, just under the band */
.fsi-foot__courtline {
  position: relative;
  height: 18px;
  margin: 44px 0 46px;
}
.fsi-foot__courtline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--fsi-line) 0px,
    var(--fsi-line) 10px,
    #4d7dff 10px,
    #d1000000 20px
  );
}
.fsi-foot__courtline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--fsi-blue);
  border-radius: 50%;
  background: var(--fsi-cream);
}

/* ===================================================================
   MAIN GRID
=================================================================== */
.fsi-foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}

.fsi-foot__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--fsi-font-nav);
  font-weight: 800;
  font-size: 25px;
  color: var(--fsi-ink);
  margin-bottom: 6px;
}
.fsi-foot__logo span {
  color: var(--fsi-blue);
}
.fsi-foot__logo small {
  font-family: var(--fsi-font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fsi-gray);
  align-self: flex-end;
  margin-left: 2px;
}

.fsi-foot__tagline {
  font-family: var(--fsi-font-nav);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--fsi-ink);
  line-height: 1.6;
  margin: 14px 0 12px;
}

.fsi-foot__about {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--fsi-gray);
  max-width: 340px;
  margin-bottom: 26px;
}

/* jersey-skewed outlined social buttons */
.fsi-foot__social {
  display: flex;
  gap: 12px;
}
.fsi-foot__social-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fsi-navy);
  font-size: 15px;
  background: #fff;
  border: 1.5px solid var(--fsi-line);
  box-shadow: 0 6px 14px -8px rgba(14, 35, 64, 0.18);
  transform: skewX(var(--fsi-skew));
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}
.fsi-foot__social-btn i {
  display: inline-block;
  transform: skewX(calc(var(--fsi-skew) * -1));
}
.fsi-foot__social-btn:hover {
  transform: skewX(var(--fsi-skew)) translateY(-4px);
  color: #fff;
  border-color: transparent;
}
.fsi-foot__social-btn--pole:hover {
  background: var(--fsi-blue);
}
.fsi-foot__social-btn--floor:hover {
  background: var(--fsi-teal);
}
.fsi-foot__social-btn--ring:hover {
  background: var(--fsi-coral);
}

.fsi-foot__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.6px;
  color: var(--fsi-ink);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.fsi-foot__label::before {
  content: "";
  width: 16px;
  height: 3px;
  background: var(--fsi-blue);
  border-radius: 2px;
}

.fsi-foot__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fsi-foot__links li {
  margin-bottom: 13px;
}
.fsi-foot__links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--fsi-gray);
  text-decoration: none;
  font-size: 13.5px;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}
.fsi-foot__links a i {
  font-size: 9px;
  color: var(--fsi-blue);
  transition: transform 0.2s ease;
}
.fsi-foot__links a:hover {
  color: var(--fsi-ink);
  gap: 12px;
}
.fsi-foot__links a:hover i {
  transform: translateX(2px);
}

.fsi-foot__contact {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.fsi-foot__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--fsi-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
.fsi-foot__contact li i {
  margin-top: 2px;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 7px;
  background: rgba(77, 125, 255, 0.1);
  color: var(--fsi-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.fsi-foot__contact a {
  color: var(--fsi-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}
.fsi-foot__contact a:hover {
  color: var(--fsi-ink);
}

/* whistle-style CTA */
.fsi-foot__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 8px;
  background: var(--fsi-blue);
  color: #fff;
  font-family: var(--fsi-font-nav);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 0 0 0 rgba(77, 125, 255, 0.45);
  animation: fsi-pulse 2.6s ease-out infinite;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.fsi-foot__cta:hover {
  background: var(--fsi-navy);
  transform: translateY(-2px);
}
@keyframes fsi-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 125, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(77, 125, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(77, 125, 255, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fsi-foot__cta {
    animation: none;
  }
}

/* ===================================================================
   BOTTOM BAR
=================================================================== */
.fsi-foot__bottom {
  border-top: 1px solid var(--fsi-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  font-size: 12.5px;
  color: var(--fsi-gray);
}
.fsi-foot__copy {
  margin: 0;
}
.fsi-foot__credit {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.fsi-foot__credit .fsi-foot__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fsi-blue);
  flex: none;
}
.fsi-foot__credit a {
  color: var(--fsi-ink);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.fsi-foot__credit a:hover {
  color: var(--fsi-blue);
}

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 991.98px) {
  .fsi-foot__stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }
  .fsi-foot__stat:nth-child(2) {
    border-right: none;
  }
  .fsi-foot__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .fsi-foot__grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .fsi-foot__band {
    padding: 42px 0 60px;
  }
  .fsi-foot__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .fsi-foot__stat {
    border-right: none;
    padding: 0 8px;
  }
  .fsi-foot__stat-num {
    font-size: 27px;
  }
  .fsi-foot__grid {
    grid-template-columns: 1fr;
  }
  .fsi-foot__ring {
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: -100px;
  }
  .fsi-foot__bottom {
    flex-direction: column;
    text-align: center;
  }
}

.phero-wrap {
  font-family: "DM Sans", sans-serif;
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0; 
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 30, 60, 0.82) 0%,
    rgba(29, 78, 216, 0.55) 100%
  );
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--phero-blue),
    #60a5fa,
    var(--phero-blue)
  );
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition:
    color 0.18s ease,
    background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--phero-blue);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.sitemap-sec {
  padding: 50px;
  background: #f5f8ff;
}

.sitemap-title {
  color: #2b2a28;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sitemap-card {
  background-color: white;
  border: 2px solid var(--fsi-orange);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: #2b2a28;
}

.sitemap-card:hover {
  background-color: var(--fsi-orange);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
  text-decoration: none;
}

.card-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.sitemap-card:hover .card-description {
  opacity: 1;
}

.category-section {
  margin-bottom: 40px;
}

.category-header {
  color: var(--fsi-orange);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--fsi-orange);
}

.main-links {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .sitemap-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .category-header {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .sitemap-card {
    padding: 15px;
  }

  .card-label {
    font-size: 1rem;
  }
}

/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Tooltip bubble above the button */
.wa-tooltip {
  background: #fff;
  border-radius: 14px 14px 14px 4px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
  margin-bottom: 10px;
  max-width: 210px;
  position: relative;
  transform: translateY(6px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom left;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-tip-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}
.wa-tip-name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
  }
}
.wa-tip-msg {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.5;
}
/* Tiny tail on tooltip */
.wa-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  border: 5px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

/* Main WA button */
.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.wa-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}
.wa-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}
@keyframes wa-spin-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Second pulse ring */
.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Circle core */
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}
.wa-btn:hover .wa-circle {
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 10px 36px rgba(37, 211, 102, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.wa-circle i {
  font-size: 1.55rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Chat" label pill that slides out on hover */
.wa-label-pill {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.wa-btn:hover .wa-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 3;
  animation: badge-bounce 0.6s 0.5s ease both;
}
@keyframes badge-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

/* ══════════════════════════════════════════════
       GO TO TOP — RIGHT BOTTOM
    ══════════════════════════════════════════════ */
.gtt-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Circular progress track */
.gtt-btn {
  position: relative;
  width: 54px;
  height: 54px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG progress ring */
.gtt-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.gtt-track {
  fill: none;
  stroke: rgba(22, 39, 64, 0.1);
  stroke-width: 2.5;
}
.gtt-progress {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.1s linear;
}

/* Inner circle */
.gtt-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(22, 39, 64, 0.35);
  transition:
    background 0.25s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-btn:hover .gtt-inner {
  background: var(--crimson);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(139, 26, 46, 0.45);
}
.gtt-btn:hover .gtt-inner i {
  animation: arrow-up 0.4s ease both;
}
@keyframes arrow-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  45% {
    transform: translateY(-6px);
    opacity: 0;
  }
  46% {
    transform: translateY(6px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tiny % label below */
.gtt-pct {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted, #6b7a8d);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1;
}

/* ── Responsive tweak ── */
@media (max-width: 480px) {
  .wa-float {
    left: 16px;
    bottom: 20px;
  }
  .gtt-float {
    right: 16px;
    bottom: 20px;
  }
  .wa-circle {
    width: 52px;
    height: 52px;
  }
  .wa-circle i {
    font-size: 1.35rem;
  }
}
