:root {
  --nf-bg-0: #04080c;
  --nf-bg-1: #081218;
  --nf-bg-2: #0e1d25;
  --nf-panel: rgba(14, 29, 37, 0.55);
  --nf-panel-solid: #112430;
  --nf-line: rgba(228, 240, 240, 0.14);
  --nf-line-strong: rgba(174, 255, 28, 0.35);
  --nf-accent: #aeff1c;
  --nf-accent-soft: rgba(174, 255, 28, 0.18);
  --nf-teal: #104042;
  --nf-text: #e4f0f0;
  --nf-text-dim: rgba(228, 240, 240, 0.74);
  --nf-shadow-1: 22px 22px 44px rgba(0, 0, 0, 0.48);
  --nf-shadow-2: -8px -8px 18px rgba(255, 255, 255, 0.02);
  --nf-radius-s: 14px;
  --nf-radius-m: 22px;
  --nf-radius-l: 34px;
  --nf-radius-xl: 48px;
  --nf-space-1: 12px;
  --nf-space-2: 18px;
  --nf-space-3: 24px;
  --nf-space-4: 32px;
  --nf-time-fast: 180ms;
  --nf-time-mid: 320ms;
  --nf-space: clamp(72px, 10vw, 60px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body.nf-body {
  position: relative;
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(16, 64, 66, 0.52), transparent 32%),
    radial-gradient(circle at 92% 0, rgba(174, 255, 28, 0.14), transparent 28%),
    linear-gradient(145deg, var(--nf-bg-0), var(--nf-bg-1) 45%, #020406 100%);
  color: var(--nf-text);
  overflow-x: hidden;
}

body.nf-body::before {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: -5;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(174, 255, 28, 0.12),
      transparent 40%
    ),
    radial-gradient(circle at 85% 20%, rgba(16, 64, 66, 0.36), transparent 46%),
    radial-gradient(
      circle at 50% 90%,
      rgba(174, 255, 28, 0.08),
      transparent 45%
    );
  animation: nfGradientDrift 26s ease-in-out infinite alternate;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", sans-serif;
  color: var(--nf-text);
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

section {
  position: relative;
}

.nf-canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.35;
  pointer-events: none;
}

#nf-lines {
  width: 100%;
  height: 100%;
  display: block;
}

.nf-svg-orbits {
  position: fixed;
  right: -140px;
  top: -120px;
  width: 520px;
  height: 520px;
  opacity: 0.2;
  z-index: -2;
  pointer-events: none;
}

.nf-svg-orbits circle {
  fill: none;
  stroke: rgba(174, 255, 28, 0.34);
  stroke-width: 1;
  stroke-dasharray: 8 10;
  animation: nfOrbitSpin 16s linear infinite;
  transform-origin: 50% 50%;
}

.nf-svg-orbits circle:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 22s;
}

.nf-svg-orbits circle:nth-child(3) {
  animation-duration: 30s;
}

.nf-page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: linear-gradient(135deg, #051017, #0d2930);
  transform: translateY(100%);
  pointer-events: none;
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
}

.nf-page-transition.is-active {
  transform: translateY(0%);
}

.nf-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(174, 255, 28, 0.12),
      transparent 40%
    ),
    linear-gradient(145deg, #03070a, #091118);
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

.nf-loader__word {
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228, 240, 240, 0.6);
  text-shadow: 0 0 18px rgba(174, 255, 28, 0.2);
  animation: nfLoaderWord 1.8s ease-in-out infinite alternate;
}

.nf-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes nfLoaderWord {
  0% {
    transform: scale(0.95);
    letter-spacing: 0.12em;
  }
  100% {
    transform: scale(1.06);
    letter-spacing: 0.2em;
  }
}

@keyframes nfOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes nfGradientDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-4%, -2%, 0) scale(1.08);
  }
}

.nf-cursor,
.nf-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9997;
  transform: translate(-50%, -50%);
}

.nf-cursor {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(174, 255, 28, 0.65);
  transition:
    transform 0.16s ease,
    opacity 0.25s ease;
}

.nf-cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--nf-accent);
}

.nf-progress-ring {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--nf-line);
  background: rgba(5, 14, 18, 0.75);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  color: var(--nf-text);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.nf-progress-ring.is-visible {
  opacity: 1;
  visibility: visible;
}

.nf-progress-ring svg {
  position: absolute;
  inset: 6px;
  transform: rotate(-90deg);
}

.nf-progress-ring__bg,
.nf-progress-ring__bar {
  fill: none;
  stroke-width: 8;
}

.nf-progress-ring__bg {
  stroke: rgba(228, 240, 240, 0.12);
}

.nf-progress-ring__bar {
  stroke: var(--nf-accent);
  stroke-linecap: round;
  stroke-dasharray: 276;
  stroke-dashoffset: 276;
}

.nf-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  padding: 16px 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.nf-header.is-scrolled {
  background: rgba(6, 13, 18, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nf-line);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.nf-nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--nf-line);
  background: rgba(11, 21, 27, 0.38);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 10px 16px 10px 18px;
  box-shadow: var(--nf-shadow-1), var(--nf-shadow-2);
  overflow: visible;
}

.nf-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.nf-logo img {
  width: auto;
  height: clamp(36px, 3vw, 44px);
  display: block;
  object-fit: contain;
}

.nf-logo-text {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.nf-logo-text small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--nf-text-dim);
}

.nf-logo-text strong {
  font-size: 20px;
  letter-spacing: 0.05em;
}

.nf-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  position: relative;
}

.nf-nav a {
  position: relative;
  padding: 6px 4px;
  font-size: 14px;
  color: var(--nf-text-dim);
  transition: color 0.2s ease;
}

.nf-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--nf-accent);
  transition: width 0.25s ease;
}

.nf-nav a:hover,
.nf-nav a.active {
  color: var(--nf-text);
}

.nf-nav a:hover::after,
.nf-nav a.active::after {
  width: 100%;
}

.nf-nav-book-mobile {
  display: none;
}

.nf-nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nf-nav-drop-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 6px 4px;
  font-size: 14px;
  color: var(--nf-text-dim);
  cursor: pointer;
  transition: color 0.2s ease;
}

.nf-nav-drop-toggle:focus {
  outline: none;
}

.nf-nav-drop-toggle i {
  font-size: 15px;
  transition: transform 0.2s ease;
}

.nf-nav-drop-toggle::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -3px;
  height: 2px;
  width: 0;
  background: var(--nf-accent);
  transition: width 0.25s ease;
}

.nf-nav-dropdown.active .nf-nav-drop-toggle,
.nf-nav-dropdown.is-open .nf-nav-drop-toggle {
  color: var(--nf-text);
}

.nf-nav-dropdown.active .nf-nav-drop-toggle::after,
.nf-nav-dropdown.is-open .nf-nav-drop-toggle::after {
  width: calc(100% - 8px);
}

.nf-nav-dropdown.is-open .nf-nav-drop-toggle i {
  transform: rotate(180deg);
}

.nf-nav-drop-menu {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  min-width: min(340px, 70vw);
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--nf-line);
  background: #000;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  max-height: min(72vh, 520px);
  overflow: auto;
  z-index: 100;
}

.nf-nav-dropdown.is-open .nf-nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .nf-nav-dropdown:hover .nf-nav-drop-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nf-nav-dropdown:hover .nf-nav-drop-toggle {
    color: var(--nf-text);
  }

  .nf-nav-dropdown:hover .nf-nav-drop-toggle::after {
    width: calc(100% - 8px);
  }

  .nf-nav-dropdown:hover .nf-nav-drop-toggle i {
    transform: rotate(180deg);
  }
}

.nf-nav-drop-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--nf-text-dim);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nf-nav-drop-menu a::after {
  display: none !important;
}

.nf-nav-drop-menu a:hover,
.nf-nav-drop-menu a.active {
  color: var(--nf-text);
  background: rgba(174, 255, 28, 0.12);
}

.nf-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nf-nav-mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--nf-line);
  display: grid;
  place-items: center;
  color: var(--nf-text-dim);
  transition: all 0.2s ease;
}

.nf-nav-mini:hover {
  color: #03110f;
  background: var(--nf-accent);
  border-color: var(--nf-accent);
}

.nf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(174, 255, 28, 0.4);
  color: #03110f;
  background: linear-gradient(130deg, var(--nf-accent), #9ddf21);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(174, 255, 28, 0.6);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(174, 255, 28, 0.3);
}

.nf-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--nf-line);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nf-nav-toggle span {
  width: 16px;
  height: 2px;
  background: var(--nf-text);
}

.nf-shell {
  padding: 0 clamp(14px, 2vw, 30px);
}

.nf-section {
  padding: var(--nf-space) 0;
}

.nf-chip {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(228, 240, 240, 0.25);
  background: rgba(228, 240, 240, 0.05);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nf-text-dim);
}

.nf-title {
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.04;
}

.nf-sub {
  max-width: 720px;
  color: var(--nf-text-dim);
}

.nf-glass {
  border: 1px solid var(--nf-line);
  background: var(--nf-panel);
  backdrop-filter: blur(16px);
  border-radius: var(--nf-radius-l);
  box-shadow: var(--nf-shadow-1), var(--nf-shadow-2);
}

.nf-neon {
  border: 1px solid rgba(174, 255, 28, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(174, 255, 28, 0.18),
    0 0 24px rgba(174, 255, 28, 0.16);
}

.nf-neo {
  border-radius: var(--nf-radius-m);
  background: #0b1a23;
  box-shadow:
    18px 18px 30px rgba(0, 0, 0, 0.48),
    -10px -10px 20px rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(228, 240, 240, 0.06);
}

.nf-divider-curve::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(
    80% 95px at 50% 0,
    rgba(174, 255, 28, 0.1),
    transparent 75%
  );
}

.nf-intro {
  min-height: min(100svh, 980px);
  display: grid;
  align-items: center;
  padding: clamp(120px, 15vh, 180px) 0 80px;
  overflow: hidden;
}

.nf-intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05) brightness(0.42);
}

.nf-intro__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(174, 255, 28, 0.16),
      transparent 35%
    ),
    linear-gradient(
      115deg,
      rgba(3, 8, 12, 0.82),
      rgba(3, 8, 12, 0.35) 56%,
      rgba(3, 8, 12, 0.86)
    );
}

.nf-intro__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: end;
}

.nf-intro__panel {
  padding: clamp(24px, 3vw, 40px);
}

.nf-intro__panel p {
  margin-top: 20px;
  max-width: 620px;
  color: var(--nf-text-dim);
  font-size: clamp(15px, 1.5vw, 19px);
}

.nf-intro__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.nf-metric {
  padding: 18px 16px;
  border-radius: var(--nf-radius-s);
  border: 1px solid var(--nf-line);
  background: rgba(6, 14, 19, 0.66);
  backdrop-filter: blur(8px);
}

.nf-metric strong {
  display: block;
  font-size: clamp(24px, 2.2vw, 38px);
}

.nf-metric span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nf-text-dim);
}

.nf-orbit {
  padding: var(--nf-space) 0;
}

.nf-orbit__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.nf-orbit__sticky {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 30px;
  min-height: 360px;
}

.nf-orbit__cards {
  display: grid;
  gap: 18px;
}

.nf-float-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
  animation: nfFloat 5.5s ease-in-out infinite;
}

.nf-float-card:nth-child(2) {
  animation-delay: 0.5s;
}

.nf-float-card:nth-child(3) {
  animation-delay: 1s;
}

@keyframes nfFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.nf-float-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.nf-float-card p {
  color: var(--nf-text-dim);
  margin: 0;
}

.nf-horizontal {
  padding: var(--nf-space) 0;
}

.nf-horizontal__rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.nf-horizontal__rail::-webkit-scrollbar {
  height: 8px;
}

.nf-horizontal__rail::-webkit-scrollbar-thumb {
  background: rgba(174, 255, 28, 0.35);
  border-radius: 999px;
}

.nf-h-card {
  flex: 0 0 min(430px, 82vw);
  scroll-snap-align: start;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--nf-line);
  background: linear-gradient(
    145deg,
    rgba(16, 64, 66, 0.2),
    rgba(9, 18, 24, 0.72)
  );
  backdrop-filter: blur(12px);
}

.nf-h-card img {
  border-radius: 16px;
  height: 220px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 14px;
}

.nf-h-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.nf-h-card p {
  color: var(--nf-text-dim);
  margin-bottom: 16px;
}

.nf-h-card a {
  color: var(--nf-accent);
  font-weight: 600;
}

.nf-timeline {
  padding: var(--nf-space) 0;
}

.nf-timeline__track {
  position: relative;
  margin-top: 34px;
  padding-left: 26px;
}

.nf-timeline__track::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(228, 240, 240, 0.15);
}

.nf-timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0%;
  background: linear-gradient(var(--nf-accent), #84cf13);
  box-shadow: 0 0 18px rgba(174, 255, 28, 0.45);
}

.nf-time-card {
  position: relative;
  padding: 22px 22px 20px;
  margin-bottom: 18px;
}

.nf-time-card::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--nf-accent);
  background: #051015;
}

.nf-time-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.nf-time-card p {
  margin: 0;
  color: var(--nf-text-dim);
}

.nf-tilt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.nf-tilt {
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.nf-tilt .nf-tilt__card {
  min-height: 320px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--nf-line);
  background: rgba(9, 18, 24, 0.72);
  backdrop-filter: blur(14px);
}

.nf-tilt__card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.nf-tilt__card p {
  color: var(--nf-text-dim);
}

.nf-split-testimonial {
  padding: var(--nf-space) 0;
}

.nf-split-testimonial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.nf-quote-panel,
.nf-quote-slider {
  min-height: 360px;
  padding: clamp(24px, 3vw, 36px);
}

.nf-quote-panel h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin: 16px 0;
}

.nf-quote-panel p {
  color: var(--nf-text-dim);
}

.nf-quote-slide {
  display: grid;
  gap: 14px;
}

.nf-quote-slide p {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.5;
}

.nf-quote-slide span {
  color: var(--nf-text-dim);
}

.nf-quote-swiper .swiper-pagination {
  position: static;
  margin-top: 16px;
}

.nf-quote-swiper .swiper-pagination-bullet,
.nf-gallery-swiper .swiper-pagination-bullet {
  background: rgba(228, 240, 240, 0.28);
  opacity: 1;
}

.nf-quote-swiper .swiper-pagination-bullet-active,
.nf-gallery-swiper .swiper-pagination-bullet-active {
  background: var(--nf-accent);
}

.nf-story {
  padding: var(--nf-space) 0;
}

.nf-story__video {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--nf-line);
}

.nf-story__video video {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
  filter: brightness(0.8);
}

.nf-story__video img {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
  filter: brightness(0.86);
}

.nf-story__caption {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
/* Performance Signals Stats Style */
.nf-floating-stats {
  padding: var(--nf-space) 0;
  position: relative;
}

.nf-floating-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.nf-stat {
  padding: 32px 20px;
  text-align: center;
  background: rgba(8, 17, 23, 0.65);
  border: 1px solid var(--nf-line);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nf-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--nf-accent),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.nf-stat:hover {
  transform: translateY(-5px);
  border-color: var(--nf-accent);
  box-shadow: 0 15px 30px rgba(174, 255, 28, 0.15);
}

.nf-stat:hover::before {
  transform: translateX(100%);
}

.nf-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--nf-accent);
}

.nf-stat strong .nf-count {
  display: inline-block;
}

.nf-stat span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--nf-text-dim);
  display: block;
}

/* Count animation */
.nf-count {
  animation: countUp 2s ease-out forwards;
}

.nf-floating-stats .nf-stat strong .nf-count {
  font-size: 20px;
}

@keyframes countUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .nf-floating-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nf-floating-stats {
    padding: 60px 0;
  }

  .nf-stat {
    padding: 28px 15px;
  }

  .nf-stat strong {
    font-size: 48px;
  }

  .nf-stat span {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .nf-chip {
    font-size: 11px;
  }

  .nf-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .nf-floating-stats__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .nf-stat {
    padding: 30px 15px;
  }

  .nf-stat strong {
    font-size: 52px;
  }
}

.nf-stat:nth-child(2) {
  animation-delay: 0.3s;
}

.nf-stat:nth-child(3) {
  animation-delay: 0.6s;
}

.nf-stat:nth-child(4) {
  animation-delay: 0.9s;
}

.nf-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(34px, 3vw, 48px);
}

.nf-stat span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--nf-text-dim);
}

.nf-dark-cta {
  padding: var(--nf-space) 0;
}

.nf-dark-cta__box {
  padding: clamp(30px, 5vw, 62px);
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(174, 255, 28, 0.3);
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(174, 255, 28, 0.12),
      transparent 34%
    ),
    linear-gradient(155deg, #09161e, #081117);
  box-shadow: 0 0 36px rgba(174, 255, 28, 0.12);
}

.nf-dark-cta__box h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  margin-bottom: 12px;
}

.nf-dark-cta__box p {
  margin: 0 auto 22px;
  max-width: 720px;
  color: var(--nf-text-dim);
}

.nf-btn-glow {
  display: inline-flex;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #09140e;
  background: var(--nf-accent);
  box-shadow:
    0 0 0 0 rgba(174, 255, 28, 0.4),
    0 0 22px rgba(174, 255, 28, 0.3);
  animation: nfPulse 2s infinite;
}

@keyframes nfPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(174, 255, 28, 0.4),
      0 0 22px rgba(174, 255, 28, 0.3);
  }
  70% {
    box-shadow:
      0 0 0 18px rgba(174, 255, 28, 0),
      0 0 28px rgba(174, 255, 28, 0.38);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(174, 255, 28, 0),
      0 0 22px rgba(174, 255, 28, 0.28);
  }
}

.nf-page-hero {
  padding: clamp(120px, 16vh, 180px) 0 64px;
}

.nf-page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nf-page-hero__media {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--nf-line);
}

.nf-page-hero__media img,
.nf-page-hero__media video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.nf-page-hero__content {
  padding: 30px;
}

.nf-gallery-swiper .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--nf-line);
}

.nf-gallery-swiper .swiper-slide img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.nf-mosaic {
  padding: var(--nf-space) 0;
}

.nf-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.nf-mosaic__item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--nf-line);
}

.nf-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nf-mosaic__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.nf-mosaic__item:nth-child(4) {
  grid-column: span 2;
}

.nf-service-morph {
  padding: var(--nf-space) 0;
}

.nf-service-morph__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.nf-morph-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--nf-line);
  background: rgba(10, 20, 27, 0.68);
  transition:
    border-radius 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.nf-morph-card:hover {
  border-radius: 40px 16px 40px 16px;
  transform: translateY(-8px);
  background: rgba(16, 64, 66, 0.36);
}

.nf-morph-card i {
  font-size: 24px;
  color: var(--nf-accent);
  margin-bottom: 12px;
}

.nf-panel-stack {
  padding: var(--nf-space) 0;
}

.nf-panel-stack__wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.nf-panel-stack__intro {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 30px;
}

.nf-stack-list {
  display: grid;
  gap: 16px;
}

.nf-stack-item {
  padding: 22px;
}

.nf-stack-item h3 {
  margin-bottom: 10px;
}

.nf-split-contact {
  padding: var(--nf-space) 0;
}

.nf-split-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.nf-contact-card,
.nf-contact-form {
  padding: clamp(24px, 3vw, 36px);
}

.nf-contact-card p {
  color: var(--nf-text-dim);
  display: flex;
  align-items: center;
  gap: 9px;
}

.nf-contact-card p i {
  color: var(--nf-accent);
}

.nf-contact-form .form-control,
.nf-contact-form .form-select,
.nf-contact-form .form-control:focus,
.nf-contact-form .form-select:focus {
  background: rgba(4, 10, 14, 0.62);
  border: 1px solid rgba(228, 240, 240, 0.16);
  color: var(--nf-text);
  box-shadow: none;
}

.nf-contact-form .form-control::placeholder {
  color: rgba(228, 240, 240, 0.55);
}

.nf-map {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--nf-line);
}

.nf-map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.nf-footer {
  position: relative;
  padding: 70px 0 30px;
  border-top: 1px solid var(--nf-line);
  background: #04090d;
  overflow: hidden;
}

.nf-common-strip {
  padding: 44px 0 18px;
}

.nf-common-strip__wrap {
  min-height: 96px;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nf-common-strip__wrap p {
  margin: 0;
  color: var(--nf-text-dim);
}

.nf-footer__glow {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  width: min(76vw, 860px);
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 255, 28, 0.2), transparent 70%);
  pointer-events: none;
}

.nf-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr;
  gap: 22px;
}

.nf-footer h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.nf-footer h4 {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--nf-text);
}

.nf-footer p,
.nf-footer li,
.nf-footer a {
  color: var(--nf-text-dim);
  font-size: 14px;
}

.nf-footer li + li {
  margin-top: 8px;
}

.nf-footer a:hover {
  color: var(--nf-accent);
}

.nf-footer__social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.nf-footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--nf-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.nf-footer__contact p {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.nf-footer__bottom {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--nf-line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nf-footer__bottom p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nf-footer__bottom .nf-footer-copy {
  color: var(--nf-text-dim);
}

.nf-footer__bottom .nf-footer-stack {
  border: 1px solid rgba(174, 255, 28, 0.34);
  background: rgba(174, 255, 28, 0.08);
  color: var(--nf-accent);
  border-radius: 999px;
  padding: 8px 14px;
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .nf-nav {
    gap: 14px;
  }

  .nf-title {
    font-size: clamp(32px, 4.6vw, 56px);
  }

  .nf-page-hero__grid,
  .nf-split-testimonial__grid,
  .nf-panel-stack__wrap,
  .nf-orbit__grid,
  .nf-intro__content,
  .nf-split-contact__grid {
    grid-template-columns: 1fr;
  }

  .nf-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .nf-footer__brand,
  .nf-footer__contact {
    grid-column: span 2;
  }

  .nf-orbit__sticky,
  .nf-panel-stack__intro {
    position: static;
  }

  .nf-intro__metrics,
  .nf-tilt-grid,
  .nf-service-morph__grid,
  .nf-floating-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nf-mosaic__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .nf-mosaic__item:nth-child(1),
  .nf-mosaic__item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 991px) {
  body.nf-nav-open {
    overflow: hidden;
  }

  .nf-nav {
    position: fixed;
    top: 82px;
    right: 12px;
    left: 12px;
    z-index: 5200;
    display: grid;
    gap: 10px;
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--nf-line);
    background: rgba(5, 12, 16, 0.96);
    backdrop-filter: blur(12px);
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .nf-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

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

  .nf-nav a,
  .nf-nav-drop-toggle {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--nf-line);
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
  }

  .nf-nav a::after,
  .nf-nav-drop-toggle::after {
    display: none !important;
  }

  .nf-nav-dropdown {
    display: block;
  }

  .nf-nav-drop-toggle {
    justify-content: space-between;
    color: var(--nf-text-dim);
  }

  .nf-nav-dropdown.is-open .nf-nav-drop-toggle {
    border-color: rgba(174, 255, 28, 0.4);
    color: var(--nf-text);
  }

  .nf-nav-drop-menu {
    position: static;
    min-width: 0;
    margin-top: 6px;
    max-height: 0;
    opacity: 1;
    pointer-events: none;
    transform: none;
    overflow: hidden;
    padding: 0;
    border: 0;
    box-shadow: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    transition: max-height 0.25s ease;
  }

  .nf-nav-dropdown:hover .nf-nav-drop-menu {
    max-height: 0;
  }

  .nf-nav-dropdown.is-open .nf-nav-drop-menu {
    pointer-events: auto;
    max-height: min(80vh, 600px);
    padding: 8px;
    border: 1px solid var(--nf-line);
  }

  .nf-nav-drop-menu a {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  /* .nf-nav-mini {
    display: none;
  } */

  .nf-nav-cta {
    justify-content: end;
    gap: 8px;
  }

  .nf-nav-cta .nf-btn {
    display: none;
  }

  .nf-nav-book-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 4px;
    border-radius: 12px;
    border: 1px solid rgba(174, 255, 28, 0.4);
    color: #03110f;
    background: linear-gradient(130deg, var(--nf-accent), #9ddf21);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .nf-nav-book-mobile:hover {
    color: #03110f;
  }

  .nf-cursor,
  .nf-cursor-dot {
    display: none;
  }

  .nf-header {
    padding-top: 8px;
  }

  .nf-nav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 8px 10px 8px 12px;
    border-radius: 18px;
  }

  .nf-logo img {
    height: 34px;
  }

  .nf-logo-text {
    display: none;
  }
}

@media (min-width: 992px) {
  .nf-nav {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    position: static !important;
  }
}

@media (max-width: 767px) {
  .nf-section,
  .nf-orbit,
  .nf-horizontal,
  .nf-timeline,
  .nf-split-testimonial,
  .nf-story,
  .nf-floating-stats,
  .nf-dark-cta,
  .nf-page-hero,
  .nf-mosaic,
  .nf-service-morph,
  .nf-panel-stack,
  .nf-split-contact {
    padding: 72px 0;
  }

  .nf-intro {
    padding: 120px 0 62px;
  }

  .nf-intro__metrics,
  .nf-tilt-grid,
  .nf-service-morph__grid,
  .nf-floating-stats__grid,
  .nf-mosaic__grid {
    grid-template-columns: 1fr;
  }

  .nf-nav-shell {
    border-radius: 18px;
  }

  .nf-nav {
    top: 74px;
    right: 10px;
    left: 10px;
    max-height: calc(100dvh - 86px);
    padding: 12px;
  }

  .nf-nav a,
  .nf-nav-drop-toggle,
  .nf-nav-book-mobile {
    font-size: 13px;
  }

  .nf-btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 12px;
  }

  .nf-title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .nf-footer {
    padding-top: 62px;
  }

  .nf-footer__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nf-footer__brand,
  .nf-footer__contact {
    grid-column: auto;
  }

  .nf-common-strip__wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nf-footer__bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .nf-footer__bottom .nf-footer-stack {
    max-width: 100%;
    line-height: 1.45;
    white-space: normal;
  }
}

.nf-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity var(--nf-time-mid) ease,
    transform var(--nf-time-mid) ease;
}

.nf-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.nf-home-intro {
  padding: var(--nf-space) 0;
}

.nf-home-slider {
  position: relative;
  min-height: min(86svh, 820px);
  padding-top: clamp(100px, 12vw, 150px);
  padding-bottom: clamp(70px, 9vw, 104px);
  overflow: hidden;
  border-bottom: 1px solid var(--nf-line);
  isolation: isolate;
}

/* .nf-home-slider::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 16%;
  height: 240px;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(174, 255, 28, 0.16), transparent 66%);
  filter: blur(14px);
} */

.nf-home-slider::after {
  content: "";
  position: absolute;
  left: clamp(14px, 4vw, 52px);
  right: clamp(14px, 4vw, 52px);
  bottom: clamp(16px, 4vw, 34px);
  height: 1px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(174, 255, 28, 0.52),
    transparent
  );
}

.nf-home-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 620ms ease;
}

.nf-home-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.nf-home-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.94) contrast(1.05);
  transform: scale(1.08) rotate(-0.8deg);
  transition: transform 4.2s ease;
}

.nf-home-slide.is-active img {
  transform: scale(1) rotate(0deg);
}

.nf-home-slide__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 84% 16%,
      rgba(174, 255, 28, 0.22),
      transparent 34%
    ),
    radial-gradient(circle at 12% 82%, rgba(16, 64, 66, 0.28), transparent 38%),
    linear-gradient(
      108deg,
      rgba(3, 8, 12, 0.94) 0%,
      rgba(3, 8, 12, 0.38) 56%,
      rgba(3, 8, 12, 0.9) 100%
    );
}

.nf-home-slide__content {
  position: relative;
  z-index: 2;
  margin-top: clamp(42px, 7vw, 110px);
  max-width: min(780px, 92vw);
  padding: clamp(22px, 3vw, 38px);
  border-radius: 28px;
  border: 1px solid rgba(228, 240, 240, 0.2);
  background: linear-gradient(
    145deg,
    rgba(9, 18, 24, 0.82),
    rgba(6, 13, 18, 0.66)
  );
  backdrop-filter: blur(15px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  transform: translateY(22px) scale(0.985);
  opacity: 0;
  overflow: hidden;
  transition:
    transform 520ms ease,
    opacity 520ms ease;
}

.nf-home-slide__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(174, 255, 28, 0.82),
    rgba(16, 64, 66, 0.45)
  );
}

.nf-home-slide.is-active .nf-home-slide__content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.nf-slider-steering {
  position: absolute;
  right: clamp(20px, 5vw, 62px);
  bottom: clamp(88px, 11vw, 150px);
  z-index: 4;
  width: clamp(114px, 12vw, 150px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: nfSteerFloat 4.6s ease-in-out infinite;
}

.nf-slider-steering__wheel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(228, 240, 240, 0.62);
  box-shadow:
    inset 0 0 0 8px rgba(5, 12, 16, 0.42),
    0 0 0 1px rgba(174, 255, 28, 0.22),
    0 14px 20px rgba(0, 0, 0, 0.32);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(9, 20, 25, 0.94),
    rgba(7, 14, 19, 0.84)
  );
  animation: nfSteerTurn 3.2s cubic-bezier(0.58, 0.11, 0.45, 0.89) infinite;
}

.nf-slider-steering__wheel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(174, 255, 28, 0.32);
}

.nf-slider-steering__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(174, 255, 28, 0.44);
  background: rgba(174, 255, 28, 0.12);
}

.nf-slider-steering__spoke {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(228, 240, 240, 0.86),
    rgba(174, 255, 28, 0.66)
  );
  transform-origin: 50% 0%;
}

.nf-slider-steering__spoke--up {
  height: 30%;
  transform: translateX(-50%) translateY(-104%);
}

.nf-slider-steering__spoke--left {
  height: 22%;
  transform: translateX(-50%) translateY(-20%) rotate(-58deg);
}

.nf-slider-steering__spoke--right {
  height: 22%;
  transform: translateX(-50%) translateY(-20%) rotate(58deg);
}

.nf-slider-steering__arc {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(174, 255, 28, 0.35);
  opacity: 0.85;
  animation: nfSteerOrbit 11s linear infinite;
}

@keyframes nfSteerTurn {
  0% {
    transform: rotate(-20deg);
  }
  45% {
    transform: rotate(14deg);
  }
  100% {
    transform: rotate(-14deg);
  }
}

@keyframes nfSteerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes nfSteerOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.nf-home-slider__controls {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 4vw, 50px);
  transform: translateX(-50%);
  z-index: 6;
  width: min(430px, calc(100% - 30px));
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--nf-line);
  background: rgba(7, 15, 20, 0.82);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.nf-home-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nf-home-slider__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(228, 240, 240, 0.34);
  transition:
    width var(--nf-time-mid) ease,
    background var(--nf-time-mid) ease;
}

.nf-home-slider__dots button.is-active {
  width: 32px;
  border-radius: 999px;
  background: var(--nf-accent);
}

.nf-home-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--nf-line);
  background: linear-gradient(
    145deg,
    rgba(11, 22, 27, 0.92),
    rgba(7, 14, 18, 0.96)
  );
  color: var(--nf-text);
  display: grid;
  place-items: center;
  transition:
    background var(--nf-time-fast) ease,
    border-color var(--nf-time-fast) ease,
    transform var(--nf-time-fast) ease;
}

.nf-home-slider__btn:hover {
  background: rgba(174, 255, 28, 0.16);
  border-color: rgba(174, 255, 28, 0.44);
  transform: translateY(-2px);
}

.nf-home-intro__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 20px;
  align-items: stretch;
}

.nf-home-intro__panel {
  padding: clamp(24px, 3vw, 42px);
}

.nf-home-intro__signal {
  display: grid;
  gap: 12px;
}

.nf-signal-card {
  min-height: 140px;
  padding: 20px;
  display: grid;
  gap: 6px;
}

.nf-signal-card small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--nf-text-dim);
}

.nf-signal-card strong {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.nf-signal-card span {
  color: var(--nf-text-dim);
  font-size: 13px;
}

.nf-home-split__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: center;
}

.nf-home-split__visual {
  border-radius: var(--nf-radius-xl);
  overflow: hidden;
  border: 1px solid var(--nf-line);
}

.nf-home-split__visual img {
  width: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.nf-bullet-grid {
  display: grid;
  gap: 12px;
}

.nf-bullet-card {
  padding: 18px;
}

.nf-bullet-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.nf-bullet-card p {
  margin: 0;
  color: var(--nf-text-dim);
}

.nf-morph-float__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.nf-morph-float__card {
  grid-column: span 6;
  position: relative;
  min-height: 214px;
  padding: 22px;
  border-radius: 24px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--nf-line);
  background: linear-gradient(
    145deg,
    rgba(10, 21, 27, 0.88),
    rgba(8, 16, 22, 0.78)
  );
  overflow: hidden;
  transition:
    transform var(--nf-time-mid) ease,
    border-color var(--nf-time-mid) ease,
    box-shadow var(--nf-time-mid) ease;
}

.nf-morph-float__card::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 132px;
  height: 132px;
  border-radius: 40% 60% 55% 45%;
  background: rgba(174, 255, 28, 0.12);
  filter: blur(2px);
}

.nf-morph-float__card::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 16px;
  width: 56px;
  height: 2px;
  border-radius: 99px;
  background: rgba(174, 255, 28, 0.62);
  transition: width var(--nf-time-mid) ease;
}

.nf-morph-float__card:nth-child(1) {
  grid-column: span 7;
  min-height: 250px;
}

.nf-morph-float__card:nth-child(2) {
  grid-column: span 5;
}

.nf-morph-float__card:nth-child(3) {
  grid-column: span 5;
}

.nf-morph-float__card:nth-child(4) {
  grid-column: span 7;
}

.nf-morph-float__card i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  font-size: 24px;
  color: var(--nf-accent);
  border: 1px solid rgba(174, 255, 28, 0.35);
  background: rgba(174, 255, 28, 0.08);
}

.nf-morph-float__card h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 2px 0 0;
}

.nf-morph-float__card p {
  margin: 0;
  color: var(--nf-text-dim);
  max-width: 52ch;
  line-height: 1.65;
}

.nf-morph-float__card:hover {
  transform: translateY(-8px);
  border-color: rgba(174, 255, 28, 0.48);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.33);
}

.nf-morph-float__card:hover::after {
  width: 104px;
}

.nf-micro__grid {
  counter-reset: nfMicroStep;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 12px;
}

/* .nf-micro__grid::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  border: 1px dashed rgba(174, 255, 28, 0.22);
  pointer-events: none;
} */

.nf-micro__card {
  counter-increment: nfMicroStep;
  position: relative;
  min-height: 224px;
  padding: 24px 22px 22px 28px;
  border: 1px solid var(--nf-line);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(9, 19, 25, 0.88),
    rgba(7, 15, 20, 0.86)
  );
  overflow: hidden;
  transition:
    border-color var(--nf-time-mid) ease,
    transform var(--nf-time-mid) ease,
    box-shadow var(--nf-time-mid) ease;
}

.nf-micro__card::before {
  content: counter(nfMicroStep, decimal-leading-zero);
  position: absolute;
  right: 16px;
  top: 10px;
  color: rgba(174, 255, 28, 0.16);
  font-family: "Sora", sans-serif;
  font-size: clamp(44px, 5vw, 60px);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.nf-micro__card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(
    180deg,
    rgba(174, 255, 28, 0.88),
    rgba(16, 64, 66, 0.36)
  );
}

.nf-micro__card h3 {
  font-size: clamp(23px, 2.1vw, 30px);
  margin-bottom: 8px;
  max-width: 20ch;
}

.nf-micro__card p {
  margin: 0;
  color: var(--nf-text-dim);
  line-height: 1.72;
}

.nf-micro__card:hover {
  transform: translateY(-6px);
  border-color: var(--nf-line-strong);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.32);
}

.nf-dark-strip {
  padding: 0 0 var(--nf-space);
}

.nf-dark-strip__box {
  min-height: 140px;
  border-radius: 26px;
  border: 1px solid rgba(174, 255, 28, 0.35);
  background:
    radial-gradient(
      circle at 12% 50%,
      rgba(174, 255, 28, 0.12),
      transparent 38%
    ),
    linear-gradient(140deg, rgba(5, 11, 15, 0.95), rgba(11, 22, 27, 0.95));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
}

.nf-dark-strip__box h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  max-width: 740px;
}

.nf-video-cta {
  padding: 0 0 var(--nf-space);
}

.nf-video-cta__shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(320px, 44vw, 430px);
  border-radius: 28px;
  border: 1px solid rgba(174, 255, 28, 0.34);
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(174, 255, 28, 0.18),
      transparent 42%
    ),
    linear-gradient(125deg, rgba(4, 10, 14, 0.9), rgba(8, 18, 24, 0.82));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.36);
}

.nf-video-cta__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.nf-video-cta__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.04);
  transform: scale(1.03);
}

.nf-video-cta__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      rgba(4, 10, 14, 0.88) 14%,
      rgba(4, 10, 14, 0.72) 48%,
      rgba(4, 10, 14, 0.46) 100%
    ),
    radial-gradient(
      circle at 82% 28%,
      rgba(174, 255, 28, 0.14),
      transparent 36%
    );
}

.nf-video-cta__content {
  max-width: 760px;
}

.nf-video-cta__content .nf-title {
  max-width: 18ch;
}

.nf-modern .testimonials {
  padding: var(--nf-space) 0;
}

.nf-modern .testimonials .container {
  max-width: 1320px;
}

.nf-modern .testimonials-header {
  text-align: center;
  margin-bottom: 24px;
}

.nf-modern .testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(174, 255, 28, 0.34);
  background: rgba(174, 255, 28, 0.11);
  color: var(--nf-accent);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.nf-modern .testimonials-header h2 {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 54px);
}

.nf-modern .nf-testimonial-slider {
  --visible: 3;
  display: grid;
  gap: 14px;
}

.nf-modern .nf-testimonial-viewport {
  overflow: hidden;
}

.nf-modern .nf-testimonial-track {
  display: flex;
  gap: 16px;
  transition: transform 420ms ease;
  will-change: transform;
}

.nf-modern .nf-testimonial-slide {
  flex: 0 0 calc((100% - (var(--visible) - 1) * 16px) / var(--visible));
}

.nf-modern .testimonial-card {
  height: 100%;
  min-height: 276px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--nf-line);
  background: rgba(9, 19, 25, 0.84);
  transition:
    transform var(--nf-time-mid) ease,
    border-color var(--nf-time-mid) ease;
}

.nf-modern .testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(174, 255, 28, 0.4);
}

.nf-modern .testimonial-rating {
  color: var(--nf-accent);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.nf-modern .testimonial-card p {
  margin-bottom: 14px;
  color: var(--nf-text-dim);
  font-style: italic;
  min-height: 132px;
}

.nf-modern .testimonial-author {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--nf-line);
}

.nf-modern .author-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(174, 255, 28, 0.36);
  color: var(--nf-accent);
  font-weight: 700;
}

.nf-modern .author-info strong {
  display: block;
  font-size: 18px;
}

.nf-modern .author-info span {
  color: var(--nf-text-dim);
  font-size: 13px;
}

.nf-modern .nf-testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.nf-modern .nf-testimonial-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--nf-line);
  border-radius: 50%;
  background: rgba(6, 14, 18, 0.8);
  color: var(--nf-text);
  display: grid;
  place-items: center;
  transition:
    background var(--nf-time-fast) ease,
    border-color var(--nf-time-fast) ease;
}

.nf-modern .nf-testimonial-btn:hover {
  background: rgba(174, 255, 28, 0.16);
  border-color: rgba(174, 255, 28, 0.44);
}

.nf-modern .nf-testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nf-modern .nf-testimonial-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(228, 240, 240, 0.36);
  transition:
    width var(--nf-time-mid) ease,
    background var(--nf-time-mid) ease;
}

.nf-modern .nf-testimonial-dots button.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--nf-accent);
}

.nf-modern .faq {
  padding: var(--nf-space) 0;
}

.nf-modern .faq .container {
  max-width: 1220px;
}

.nf-modern .faq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: start;
}

.nf-modern .faq-header {
  position: sticky;
  top: 112px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--nf-line);
  background: rgba(9, 19, 25, 0.72);
}

.nf-modern .faq-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(174, 255, 28, 0.34);
  background: rgba(174, 255, 28, 0.11);
  color: var(--nf-accent);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nf-modern .faq-header h2 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: clamp(30px, 3.4vw, 48px);
}

.nf-modern .faq-header p {
  margin: 0;
  color: var(--nf-text-dim);
}

.nf-modern .faq-header a {
  color: var(--nf-accent);
}

.nf-modern .faq-accordion {
  display: grid;
  gap: 10px;
}

.nf-modern .faq-item {
  border: 1px solid var(--nf-line);
  border-radius: 14px;
  background: rgba(9, 19, 25, 0.78);
  overflow: hidden;
}

.nf-modern .faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--nf-text);
  font-weight: 600;
  text-align: left;
}

.nf-modern .faq-question i {
  color: var(--nf-accent);
  transition: transform var(--nf-time-fast) ease;
}

.nf-modern .faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.nf-modern .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--nf-time-mid) ease;
}

.nf-modern .faq-answer p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--nf-text-dim);
}

.nf-legal {
  padding-top: clamp(34px, 6vw, 72px);
}

.nf-legal .policy-content {
  max-width: 980px;
  margin: 0 auto;
}

.nf-legal .policy-section {
  margin-bottom: 16px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--nf-line);
  border-radius: 20px;
  background: rgba(9, 19, 25, 0.78);
  backdrop-filter: blur(12px);
}

.nf-legal .policy-section h2 {
  color: var(--nf-accent);
  margin-bottom: 12px;
  font-size: clamp(26px, 2.6vw, 36px);
}

.nf-legal .policy-section h3 {
  color: var(--nf-text);
  margin: 24px 0 12px;
  font-size: clamp(20px, 2vw, 28px);
}

.nf-legal .policy-section p {
  margin: 0;
  color: var(--nf-text-dim);
}

.nf-legal .policy-section p + p {
  margin-top: 12px;
}

.nf-legal .policy-section ul,
.nf-legal .policy-section ol {
  margin: 16px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.nf-legal .policy-section li {
  color: var(--nf-text-dim);
  line-height: 1.6;
}

.nf-legal .contact-info {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.nf-legal .contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.nf-legal .contact-info i {
  color: var(--nf-accent);
  margin-top: 3px;
}

.nf-legal .last-updated {
  margin-top: 14px;
  color: var(--nf-text-dim);
  font-style: italic;
}

.services-hero.ppf-hero {
  position: relative;
  padding: clamp(128px, 14vw, 176px) 0 clamp(56px, 8vw, 92px);
  text-align: center;

  /* Method 1: Using background shorthand with !important to override */
  background: url("../img/real/slides/banner-2.jpeg") center center / cover
    no-repeat !important;

  /* Method 2: Using background-image specifically */
  background-image: url("../img/real/slides/banner-2.jpeg") !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;

  overflow: hidden;
}

/* overlay */
.services-hero.ppf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

/* content above overlay */
.services-hero.ppf-hero .container {
  position: relative;
  z-index: 2;
}

.services-hero.ppf-hero h1 {
  margin: 0 auto;
  max-width: 980px;
  font-size: clamp(34px, 4.8vw, 64px);
}

.services-hero.ppf-hero p {
  margin: 12px auto 0;
  max-width: 760px;
  color: var(--nf-text-dim);
}

.ppf-split {
  padding: var(--nf-space) 0;
}

.ppf-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.ppf-split-alt .ppf-split-media {
  order: 1;
}

.ppf-split-alt .ppf-split-content {
  order: 2;
}

.ppf-split-content {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--nf-line);
  border-radius: 24px;
  background: rgba(10, 21, 27, 0.72);
  backdrop-filter: blur(12px);
}

.ppf-split-content h2 {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.3vw, 46px);
}

.ppf-split-content p {
  color: var(--nf-text-dim);
  margin-bottom: 12px;
}

.ppf-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(174, 255, 28, 0.34);
  background: rgba(174, 255, 28, 0.11);
  color: var(--nf-accent);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ppf-feature-list {
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.ppf-feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--nf-text-dim);
}

.ppf-feature-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nf-accent);
}

.ppf-split-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--nf-line);
  min-height: 360px;
}

.ppf-split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.ppf-media-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(174, 255, 28, 0.34);
  background: rgba(4, 10, 14, 0.8);
  color: var(--nf-accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ppf-process {
  padding: var(--nf-space) 0;
}

.ppf-process .section-title {
  text-align: left;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.4vw, 48px);
}

.ppf-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ppf-process-step {
  min-height: 220px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--nf-line);
  background: rgba(10, 20, 26, 0.74);
  transition:
    transform var(--nf-time-mid) ease,
    border-color var(--nf-time-mid) ease;
}

.ppf-process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(174, 255, 28, 0.36);
}

.ppf-process-step span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(174, 255, 28, 0.34);
  background: rgba(174, 255, 28, 0.12);
  color: var(--nf-accent);
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.ppf-process-step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.ppf-process-step p {
  color: var(--nf-text-dim);
  margin: 0;
}

.ppf-compare {
  padding: var(--nf-space) 0;
}

.ppf-compare-head {
  margin-bottom: 20px;
}

.ppf-compare-head h2 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: clamp(30px, 3.4vw, 48px);
}

.ppf-compare-head p {
  color: var(--nf-text-dim);
  margin: 0;
}

.ppf-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ppf-compare-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--nf-line);
  border-radius: 18px;
  background: rgba(9, 19, 25, 0.8);
}

.ppf-compare-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.ppf-compare-card ul {
  margin: 0;
  display: grid;
  gap: 8px;
}

.ppf-compare-card li {
  position: relative;
  padding-left: 18px;
  color: var(--nf-text-dim);
}

.ppf-compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nf-accent);
}

.nf-process-glass {
  padding: 22px;
  transition:
    transform var(--nf-time-mid) ease,
    border-color var(--nf-time-mid) ease;
}

.nf-process-glass:hover {
  transform: translateY(-6px);
  border-color: rgba(174, 255, 28, 0.34);
}

.nf-process-glass h3 {
  font-size: 23px;
  margin-bottom: 9px;
}

.nf-process-glass p {
  margin: 0;
  color: var(--nf-text-dim);
}

.nf-tech-panels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.nf-tech-panel {
  min-height: 190px;
  border-radius: 20px;
  border: 1px solid rgba(174, 255, 28, 0.34);
  background: linear-gradient(
    145deg,
    rgba(16, 64, 66, 0.28),
    rgba(8, 17, 23, 0.88)
  );
  box-shadow: 0 0 20px rgba(174, 255, 28, 0.08);
  padding: 20px;
  display: grid;
  gap: 8px;
  transition:
    transform var(--nf-time-mid) ease,
    box-shadow var(--nf-time-mid) ease;
}

.nf-tech-panel__media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(174, 255, 28, 0.24);
  aspect-ratio: 16 / 10;
  background: rgba(6, 16, 20, 0.78);
}

.nf-tech-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--nf-time-mid) ease;
}

.nf-tech-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 32px rgba(174, 255, 28, 0.18);
}

.nf-tech-panel:hover .nf-tech-panel__media img {
  transform: scale(1.04);
}

.nf-tech-panel h3 {
  margin: 0;
  font-size: 22px;
}

.nf-tech-panel p {
  margin: 0;
  color: var(--nf-text-dim);
}

.nf-tech-video__card {
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: center;
}

.nf-tech-video__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--nf-line);
}

.nf-tech-video__media video {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.nf-showcase-grid {
  padding-top: 24px;
}

.nf-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.nf-work-card {
  position: relative;
  min-height: 310px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--nf-line);
  transition: transform var(--nf-time-mid) ease;
}

.nf-work-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  display: block;
  transition:
    transform var(--nf-time-mid) ease,
    filter var(--nf-time-mid) ease;
}

.nf-work-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent 0, rgba(5, 12, 16, 0.9) 66%);
  transform: translateY(16px);
  opacity: 0;
  transition:
    opacity var(--nf-time-mid) ease,
    transform var(--nf-time-mid) ease;
}

.nf-work-card__overlay h3 {
  margin-bottom: 5px;
  font-size: 20px;
}

.nf-work-card__overlay p {
  margin: 0;
  color: var(--nf-text-dim);
  font-size: 14px;
}

.nf-work-card:hover {
  transform: translateY(-7px);
}

.nf-work-card:hover img {
  transform: scale(1.06);
  filter: blur(1px) saturate(1.05);
}

.nf-work-card:hover .nf-work-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.nf-connect-screen {
  min-height: calc(100svh - 104px);
  padding: clamp(120px, 14vw, 170px) 0 clamp(60px, 8vw, 96px);
  display: flex;
  align-items: center;
}

.nf-connect-screen__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.nf-connect-screen__cards {
  display: grid;
  gap: 10px;
}

.nf-connect-mini {
  padding: 14px 16px;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
}

.nf-connect-mini i {
  color: var(--nf-accent);
  font-size: 19px;
}

.nf-connect-mini strong {
  display: block;
  font-size: 14px;
}

.nf-connect-mini span {
  color: var(--nf-text-dim);
  font-size: 13px;
}

.nf-connect-form {
  padding: clamp(22px, 3vw, 34px);
}

.nf-connect-form h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 2.8vw, 40px);
}

.nf-connect-form .form-control,
.nf-connect-form .form-select,
.nf-connect-form .form-control:focus,
.nf-connect-form .form-select:focus {
  background: rgba(4, 10, 14, 0.64);
  border: 1px solid rgba(228, 240, 240, 0.18);
  color: var(--nf-text);
  box-shadow: none;
}

.nf-connect-form .form-control::placeholder {
  color: rgba(228, 240, 240, 0.6);
}

.nf-footer {
  position: relative;
}

.nf-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(174, 255, 28, 0.6),
    transparent
  );
  background-size: 200% 100%;
  animation: nfFooterLine 6s linear infinite;
}

@keyframes nfFooterLine {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@media (max-width: 1199px) {
  .nf-home-intro__grid,
  .nf-home-split__grid,
  .nf-tech-video__card,
  .nf-connect-screen__grid,
  .nf-modern .faq-grid {
    grid-template-columns: 1fr;
  }

  .nf-morph-float__grid,
  .nf-micro__grid,
  .nf-tech-panels__grid,
  .nf-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nf-connect-screen {
    min-height: auto;
  }

  .nf-video-cta__shell {
    min-height: 320px;
  }

  .nf-modern .faq-header {
    position: static;
  }

  .nf-modern .nf-testimonial-slider {
    --visible: 2;
  }

  .nf-slider-steering {
    right: 16px;
    bottom: 96px;
    width: 108px;
    opacity: 0.82;
  }

  .nf-micro__grid::before {
    inset: -6px;
  }

  .nf-morph-float__card {
    grid-column: span 1;
  }

  .nf-morph-float__card:nth-child(1),
  .nf-morph-float__card:nth-child(4) {
    grid-column: span 2;
  }

  .nf-micro__card {
    min-height: 208px;
  }

  .nf-micro__card:hover {
    transform: none;
  }

  .ppf-split-grid,
  .ppf-compare-grid {
    grid-template-columns: 1fr;
  }

  .ppf-split-alt .ppf-split-media,
  .ppf-split-alt .ppf-split-content {
    order: initial;
  }

  .ppf-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .nf-home-slider {
    min-height: 72svh;
    padding-top: 96px;
  }

  .nf-home-slide__content {
    margin-top: 28px;
    padding: 20px 18px 20px 22px;
  }

  .nf-home-slider__controls {
    width: min(360px, calc(100% - 18px));
    bottom: 12px;
    padding: 8px 10px;
  }

  .nf-home-slider__btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .nf-home-slider__dots button.is-active {
    width: 26px;
  }

  .nf-slider-steering {
    display: none;
  }

  .nf-morph-float__grid,
  .nf-micro__grid,
  .nf-tech-panels__grid,
  .nf-work-grid {
    grid-template-columns: 1fr;
  }

  .nf-modern .nf-testimonial-slider {
    --visible: 1;
  }

  .nf-morph-float__card,
  .nf-morph-float__card:nth-child(1),
  .nf-morph-float__card:nth-child(2),
  .nf-morph-float__card:nth-child(3),
  .nf-morph-float__card:nth-child(4) {
    grid-column: span 1;
  }

  .nf-morph-float__card {
    min-height: 0;
  }

  .nf-home-split__visual img,
  .nf-work-card,
  .nf-work-card img {
    min-height: 260px;
  }

  .nf-video-cta__shell {
    min-height: 300px;
    border-radius: 20px;
    padding: 20px 18px;
  }

  .nf-video-cta__content .d-flex {
    width: 100%;
  }

  .nf-micro__card {
    min-height: 0;
    padding: 20px 18px 18px 24px;
  }

  .nf-micro__card::before {
    font-size: 46px;
    right: 12px;
    top: 10px;
  }

  .services-hero.ppf-hero {
    padding-top: 116px;
  }

  .ppf-process-grid {
    grid-template-columns: 1fr;
  }

  .ppf-split-media,
  .ppf-split-media img {
    min-height: 250px;
  }

  .ppf-process .section-title,
  .ppf-compare-head h2,
  .ppf-split-content h2 {
    font-size: clamp(26px, 7vw, 38px);
  }

  .nf-dark-strip__box {
    flex-direction: column;
    align-items: flex-start;
  }

  .nf-modern .nf-testimonial-controls {
    gap: 10px;
  }

  .nf-modern .testimonial-card p {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .nf-video-cta__media video {
    display: none;
  }
}

/* Mobile Responsive Styles - Add to your neo-future.css */

/* Tablet (768px to 992px) */
@media screen and (max-width: 992px) {
  .nf-horizontal__rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .nf-h-card {
    flex: none;
    width: 100%;
    padding: 18px;
  }

  .nf-h-card img {
    height: 180px;
  }

  .nf-h-card h3 {
    font-size: 20px;
  }

  .nf-title {
    font-size: 36px;
  }
}

/* Mobile Landscape (576px to 768px) */
@media screen and (max-width: 768px) {
  .nf-horizontal {
    padding: 60px 0;
  }

  .nf-horizontal__rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .nf-h-card {
    padding: 15px;
  }

  .nf-h-card img {
    height: 150px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .nf-h-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .nf-h-card p {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .nf-chip {
    font-size: 11px;
    padding: 6px 12px;
  }

  .nf-title {
    font-size: 32px;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }
}

/* Mobile Portrait (below 576px) */
@media screen and (max-width: 575px) {
  .nf-horizontal {
    padding: 50px 0;
  }

  .nf-horizontal__rail {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
  }

  .nf-h-card {
    padding: 18px;
    border-radius: 20px;
  }

  .nf-h-card img {
    height: 200px; /* Taller images for mobile */
    border-radius: 14px;
  }

  .nf-h-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .nf-h-card p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  /* Optional: Show "Learn More" link on mobile */
  .nf-h-card a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--nf-accent);
  }

  .nf-h-card a i {
    font-size: 16px;
  }

  .nf-chip {
    font-size: 10px;
    padding: 5px 10px;
  }

  .nf-title {
    font-size: 28px;
    line-height: 1.2;
  }

  /* Container padding adjustment */
  .container-fluid.px-lg-5.px-3 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Small Mobile (below 400px) */
@media screen and (max-width: 400px) {
  .nf-h-card img {
    height: 180px;
  }

  .nf-h-card h3 {
    font-size: 18px;
  }

  .nf-h-card p {
    font-size: 14px;
  }

  .nf-title {
    font-size: 26px;
  }
}

/* Optional: Add smooth transitions */
.nf-h-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Optional: Touch-friendly hover effect (for mobile tap) */
.nf-h-card:active {
  transform: scale(0.98);
  background: rgba(16, 64, 66, 0.3);
}

/* Optional: Hide scrollbar on mobile since we're using grid */
.nf-horizontal__rail::-webkit-scrollbar {
  display: none;
}

/* ----- Accessories Grid Layout ----- */
.nf-accessories-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

/* ----- Accessory Cards ----- */
.nf-accessory-card {
  padding: 24px 20px 28px;
  border-radius: var(--nf-radius-m);
  border: 1px solid var(--nf-line);
  background: var(--nf-panel);
  backdrop-filter: blur(16px);
  transition: all var(--nf-time-mid) ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nf-accessory-card:hover {
  transform: translateY(-8px);
  border-color: var(--nf-line-strong);
  box-shadow: 0 20px 32px -8px rgba(0, 0, 0, 0.5);
}

.nf-accessory-card:hover::before {
  opacity: 1;
}

.nf-accessory-card__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 16 / 12;
  border: 1px solid var(--nf-line);
}

.nf-accessory-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.nf-accessory-card:hover .nf-accessory-card__media img {
  transform: scale(1.05);
}

.nf-accessory-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  position: relative;
}

.nf-accessory-card p {
  color: var(--nf-text-dim);
  margin-bottom: 20px;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
}

.nf-accessory-card .nf-btn {
  align-self: flex-start;
  min-height: 38px;
  padding: 0 18px;
  font-size: 12px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Large Desktops */
@media (max-width: 1399px) {
  .nf-accessories-grid__grid,
  .nf-products-grid {
    gap: 18px;
  }
}

/* Desktops */
@media (max-width: 1199px) {
  .nf-accessories-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nf-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nf-page-hero__media {
    min-height: 360px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .nf-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nf-accessories-grid__grid {
    gap: 16px;
  }

  .nf-accessory-card {
    padding: 20px 16px 24px;
  }

  .nf-accessory-card h3 {
    font-size: 20px;
  }
}

/* Mobile Landscape */
@media (max-width: 767px) {
  .nf-accessories-grid__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nf-products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nf-page-hero__media {
    min-height: 280px;
  }

  .nf-accessory-card,
  .nf-product-card {
    max-width: 100%;
  }

  .nf-accessories-detail__content .nf-title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .nf-product-card__media {
    aspect-ratio: 16 / 10;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .nf-page-hero__content {
    padding: 24px 18px;
  }

  .nf-accessory-card__media {
    aspect-ratio: 16 / 10;
  }

  .nf-product-card {
    padding: 16px 14px 20px;
  }
}

/* Mobile Responsive Footer - 2 Column Layout */
@media screen and (max-width: 767px) {
  .nf-footer__top {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px 15px;
  }

  /* First row - Navigate and Legal */
  .nf-footer__col:nth-child(1),
  .nf-footer__col:nth-child(2) {
    grid-column: span 1;
  }

  /* Second row - Contact (full width) */
  .nf-footer__contact {
    grid-column: span 2;
    order: 3;
    margin-top: 5px;
  }

  /* Third row - Scan QR Code (centered) */
  .nf-footer__col:last-child {
    grid-column: span 2;
    text-align: center !important;
    order: 4;
    margin-top: 10px;
    display: grid;
    justify-content: center;
  }

  /* Typography and spacing */
  .nf-footer h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--nf-text);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 6px;
  }

  .nf-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--nf-accent);
  }

  /* Center align for QR code heading */
  .nf-footer__col:last-child h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Navigation and Legal links */
  .nf-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nf-footer li {
    margin-bottom: 10px;
  }

  .nf-footer li a {
    color: var(--nf-text-dim);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 3px 0;
  }

  .nf-footer li a:hover {
    color: var(--nf-accent);
  }

  /* Contact section */
  .nf-footer__contact p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--nf-text-dim);
  }

  .nf-footer__contact p a {
    color: var(--nf-text-dim);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .nf-footer__contact p i {
    color: var(--nf-accent);
    font-size: 16px;
    margin-top: 2px;
    min-width: 20px;
  }

  /* QR Code section */
  .nf-footer__col:last-child img {
    width: 120px;
    height: auto;
    margin-top: 5px;
    display: inline-block;
  }

  /* Override any inline styles */
  .nf-footer__col[style*="text-align: end"] {
    text-align: center !important;
  }

  /* Bottom footer */
  .nf-footer__bottom {
    grid-column: span 2;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--nf-line);
    text-align: center;
  }

  .nf-footer__bottom p {
    font-size: 12px;
    color: var(--nf-text-dim);
    margin: 0;
  }
}

/* Small Mobile (below 400px) */
@media screen and (max-width: 400px) {
  .nf-footer__top {
    gap: 20px 10px;
  }

  .nf-footer h4 {
    font-size: 15px;
  }

  .nf-footer li a {
    font-size: 13px;
  }

  .nf-footer__contact p {
    font-size: 12px;
  }

  .nf-footer__col:last-child img {
    width: 100px;
  }
}

/* Optional: Add hover effects for touch devices */
@media (hover: none) and (max-width: 767px) {
  .nf-footer li a:active {
    color: var(--nf-accent);
  }

  .nf-footer__contact p a:active {
    color: var(--nf-accent);
  }
}

/* Ensure proper spacing in the footer container */
@media screen and (max-width: 767px) {
  .nf-footer .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .nf-footer__top {
    margin-bottom: 10px;
  }
}

/* Fix for the QR code alignment - remove any conflicting styles */
.nf-footer__col[style*="text-align: end"] img {
  display: inline-block;
}

/* ===== CONTACT MINI CARD HOVER ===== */
.nf-connect-screen__cards .nf-connect-mini span:hover {
  color: var(--nf-accent);
}

/* ===== MAP SECTION ===== */

.nf-map-box {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--nf-radius-l);
}

.nf-map-iframe {
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--nf-line);
}

.nf-map-iframe iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .nf-qr-map-grid {
    grid-template-columns: 1fr;
  }
}
