@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --nd-header-offset: 108px;
}

@media (max-width: 767px) {
  :root {
    --nd-header-offset: 100px;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nd-header-offset);
}

.nd-body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
}

.nd-main {
  min-height: 100vh;
  padding-top: var(--nd-header-offset);
}

.nd-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (min-width: 1024px) {
  .nd-container {
    padding: 0 64px;
  }
}
@media (max-width: 767px) {
  .nd-container {
    padding: 0 24px;
  }
}
.nd-container--narrow {
  max-width: 720px;
}
.nd-container--wide {
  max-width: 1600px;
}

.nd-section {
  padding: 100px 0;
}
@media (min-width: 768px) {
  .nd-section {
    padding: 120px 0;
  }
}
.nd-section--alt {
  background: #f8fafc;
}
.nd-section--dark {
  background: #0f2942;
  color: #fff;
}
.nd-section--cta {
  text-align: center;
}
.nd-section--no-padding {
  padding: 0;
}
.nd-section--intro-wrap {
  padding: 48px 24px;
}
@media (min-width: 768px) {
  .nd-section--intro-wrap {
    padding: 64px 48px;
  }
}
@media (min-width: 1024px) {
  .nd-section--intro-wrap {
    padding: 80px 64px;
  }
}
.nd-section--full-bleed-hero {
  padding: 0;
}
.nd-section--full-bleed-hero .nd-intro-hero {
  min-height: 60vh;
  height: 60vh;
  border-radius: 0;
  box-shadow: none;
}
.nd-section--full-bleed-hero .nd-intro-hero__bg {
  border-radius: 0;
}
.nd-section--full-bleed-hero .nd-intro-hero__overlay {
  border-radius: 0;
}
.nd-section--full-bleed-hero .nd-intro-hero__content {
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .nd-section--full-bleed-hero .nd-intro-hero__content {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 1024px) {
  .nd-section--full-bleed-hero .nd-intro-hero__content {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.nd-section--full-bleed-hero.nd-section--contact-hero .nd-intro-hero {
  min-height: 40vh;
  height: 40vh;
}
.nd-section__title {
  margin: 0 0 40px;
  font-size: 2rem;
  font-weight: 500;
  color: #0f172a;
}
.nd-section__title--light {
  color: #fff;
}

.nd-intro-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .nd-intro-hero {
    min-height: 440px;
  }
}
@media (min-width: 1024px) {
  .nd-intro-hero {
    min-height: 500px;
  }
}
.nd-intro-hero--no-image {
  background: #0f2942;
}

.nd-intro-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.nd-intro-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 41, 66, 0.2) 0%, rgba(15, 41, 66, 0.5) 40%, rgba(15, 41, 66, 0.92) 70%, rgba(15, 41, 66, 0.95) 100%);
  border-radius: 16px;
}

.nd-intro-hero__content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 60px 24px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .nd-intro-hero__content {
    padding: 80px 64px 80px 35%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

.nd-intro-hero__title {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .nd-intro-hero__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .nd-intro-hero__title {
    font-size: 3rem;
  }
}

.nd-intro-hero__text {
  margin: 0 0 28px;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 480px;
}
@media (min-width: 768px) {
  .nd-intro-hero__text {
    font-size: 1.125rem;
    margin-bottom: 32px;
  }
}

.nd-intro-hero__btn {
  margin-top: 0;
}

.nd-content p {
  margin: 0 0 1em;
  color: #64748b;
}
.nd-content p:last-child {
  margin-bottom: 0;
}

.nd-content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .nd-content-block {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.nd-content-block--image-right .nd-content-block__text {
  order: 1;
}
.nd-content-block--image-right .nd-content-block__image {
  order: 2;
}
.nd-content-block--image-left .nd-content-block__image {
  order: 1;
}
.nd-content-block--image-left .nd-content-block__text {
  order: 2;
}
.nd-content-block--text-only {
  grid-template-columns: 1fr;
}
.nd-content-block--text-only .nd-content-block__text {
  max-width: 720px;
  margin: 0 auto;
}

.nd-content-block__image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.nd-content-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nd-content-block__title {
  margin: 0 0 20px;
  font-size: 1.75rem;
  font-weight: 500;
  color: #0f172a;
}
@media (min-width: 768px) {
  .nd-content-block__title {
    font-size: 2rem;
  }
}

.nd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}
.nd-btn--primary {
  background: #00bce4;
  color: #fff;
}
.nd-btn--primary:hover {
  background: #00a0c4;
}
.nd-btn--white {
  background: #fff;
  color: #0f172a;
}
.nd-btn--white:hover {
  background: #00bce4;
  color: #fff;
}
.nd-btn--secondary {
  background: transparent;
  color: #00bce4;
  border: 2px solid #00bce4;
}
.nd-btn--secondary:hover {
  background: rgba(0, 188, 228, 0.08);
}
.nd-btn--cta {
  padding: 8px 18px;
  font-size: 0.875rem;
  background: #00bce4;
  color: #fff;
  border: none;
}
.nd-btn--cta:hover {
  background: #00a0c4;
}

.nd-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 1px 0 0 #e2e8f0;
}
.nd-header__inner {
  width: 100%;
  margin: 0;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.3s ease;
}
@media (max-width: 767px) {
  .nd-header__inner {
    padding: 16px 24px;
  }
}
.nd-header--scrolled .nd-header__inner {
  padding: 12px 48px;
}
@media (max-width: 767px) {
  .nd-header--scrolled .nd-header__inner {
    padding: 10px 24px;
  }
}
.nd-header__logo {
  flex-shrink: 0;
  text-decoration: none;
  outline: none;
  position: relative;
  display: block;
  height: 68px;
  transition: height 0.3s ease;
}
.nd-header__logo:focus {
  outline: none;
}
.nd-header__logo-full {
  height: 68px;
  width: auto;
  display: block;
  filter: none;
  transition: opacity 0.25s ease;
}
.nd-header__logo-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nd-header--scrolled .nd-header__logo {
  min-width: 40px;
  height: 48px;
}
.nd-header--scrolled .nd-header__logo-full {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.nd-header--scrolled .nd-header__logo-icon {
  opacity: 1;
  pointer-events: auto;
}
.nd-header__nav {
  display: none;
}
@media (min-width: 768px) {
  .nd-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-start;
    margin-left: 48px;
  }
}
.nd-header__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0f172a;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 6px;
}
.nd-header__link:hover {
  color: #00bce4;
  background: #f1f5f9;
}
.nd-header__link--active {
  color: #00bce4;
  font-weight: 500;
}
.nd-header__link--secondary {
  color: #64748b;
}
.nd-header__link--secondary:hover {
  color: #00bce4;
  background: #f1f5f9;
}
.nd-header__link--secondary.nd-header__link--active {
  color: #00bce4;
}
.nd-header__actions {
  display: none;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .nd-header__actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
  }
}
.nd-header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  background: #0f172a;
  border-radius: 6px;
  text-decoration: none;
}
.nd-header__cta-btn:hover {
  background: #1e293b;
  color: #fff;
}
.nd-header__cta-btn--active {
  background: #00bce4;
  color: #fff;
}
.nd-header__cta-btn--active:hover {
  background: #00a0c4;
  color: #fff;
}
.nd-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .nd-header__hamburger {
    display: none;
  }
}
.nd-header__hamburger-line {
  width: 24px;
  height: 2px;
  background: #0f172a;
}
.nd-header__mobile {
  display: none;
  padding: 24px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
  .nd-header__mobile {
    display: none !important;
  }
}
.nd-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nd-header__mobile-link {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #0f172a;
  text-decoration: none;
}
.nd-header__mobile-link:hover {
  color: #00bce4;
}
.nd-header__mobile-link--active {
  color: #00bce4;
  font-weight: 500;
}

.nd-mobile-menu-open .nd-header__mobile {
  display: block;
}

.nd-hero {
  width: 100%;
  padding: 48px 0 56px;
  background: #ffffff;
}
.nd-hero__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .nd-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 64px 48px 72px;
  }
}
@media (min-width: 1024px) {
  .nd-hero__inner {
    padding: 72px 64px 80px;
    gap: 64px;
  }
}
@media (max-width: 767px) {
  .nd-hero__inner {
    padding: 0 24px;
  }
}
.nd-hero__title {
  margin: 0 0 20px;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.2;
  color: #0f172a;
}
@media (min-width: 768px) {
  .nd-hero__title {
    font-size: 3rem;
  }
}
.nd-hero__subtext {
  margin: 0 0 32px;
  font-size: 1.125rem;
  color: #64748b;
  max-width: 520px;
}
.nd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (min-width: 768px) {
  .nd-hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}
.nd-hero__image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.nd-hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.nd-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .nd-features {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
  }
}
@media (min-width: 1024px) {
  .nd-features {
    gap: 40px;
    margin-top: 72px;
  }
}

.nd-feature-card {
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .nd-feature-card {
    min-height: 380px;
    padding: 44px;
  }
}
.nd-feature-card--link {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nd-feature-card--link:hover {
  border-color: #00bce4;
  box-shadow: 0 4px 12px rgba(0, 188, 228, 0.15);
}
.nd-feature-card--link:hover .nd-feature-card__link {
  color: #00bce4;
}
.nd-feature-card--featured {
  padding: 0;
  min-height: 360px;
  border: none;
  overflow: hidden;
}
@media (min-width: 768px) {
  .nd-feature-card--featured {
    min-height: 400px;
  }
}
.nd-feature-card--featured.nd-feature-card--no-image {
  background: #0f2942;
}
.nd-feature-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.nd-feature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 41, 66, 0.9) 0%, rgba(15, 41, 66, 0.4) 50%, transparent 100%);
}
.nd-feature-card__featured-content {
  position: relative;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 360px;
  z-index: 1;
}
@media (min-width: 768px) {
  .nd-feature-card__featured-content {
    min-height: 400px;
    padding: 48px 44px;
  }
}
.nd-feature-card__featured-title {
  margin: 0 0 20px;
  max-width: 100%;
  font-size: 1.375rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .nd-feature-card__featured-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}
.nd-feature-card__title {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .nd-feature-card__title {
    min-height: 2.8em;
  }
}
.nd-feature-card__desc {
  margin: 0 0 0;
  flex: 1;
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}
.nd-feature-card__link {
  margin-top: auto;
  padding-top: 24px;
  font-weight: 600;
  color: #00bce4;
  text-decoration: none;
}
.nd-feature-card__link:hover {
  color: #00a0c4;
  text-decoration: underline;
}

.nd-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .nd-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
  }
}
@media (min-width: 768px) {
  .nd-stats--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nd-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: left;
}
@media (min-width: 768px) {
  .nd-stat-card {
    padding: 40px 36px;
  }
}

.nd-stat-card__number {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 200;
  color: #fff;
  margin-right: 8px;
}
@media (min-width: 768px) {
  .nd-stat-card__number {
    font-size: 5rem;
  }
}

.nd-stat-card__label {
  display: block;
  margin-top: 16px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 280px;
}

.nd-product-results {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.nd-product-results__item {
  position: relative;
  padding-left: 28px;
  color: #64748b;
  line-height: 1.6;
  font-size: 1rem;
}
.nd-product-results__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00bce4;
  font-weight: 600;
}

.nd-section--cta {
  background: #ffffff;
}

.nd-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #f5f4f0;
  border-radius: 24px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .nd-cta {
    grid-template-columns: 1fr 1.2fr; /* foto links, tekst rechts */
  }
}
.nd-cta--no-image {
  max-width: 720px;
}
.nd-cta--no-image .nd-cta__content {
  text-align: center;
}

.nd-cta__content {
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .nd-cta__content {
    padding: 80px 72px 80px 16px;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .nd-cta__content {
    padding: 48px 32px;
    text-align: center;
  }
}
.nd-cta__content .nd-btn {
  align-self: flex-start;
}
@media (max-width: 767px) {
  .nd-cta__content .nd-btn {
    align-self: center;
  }
}

.nd-cta__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
@media (min-width: 768px) {
  .nd-cta__image {
    padding: 56px 16px 56px 56px;
  }
}
@media (max-width: 767px) {
  .nd-cta__image {
    padding: 40px;
  }
}
.nd-cta__image img {
  border-radius: 12px;
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.nd-cta__title {
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .nd-cta__title {
    font-size: 1.875rem;
  }
}

.nd-cta__subtitle {
  margin: 0 0 28px;
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.5;
  max-width: 600px;
}

.nd-cta--no-image .nd-cta__title {
  font-size: 1.625rem;
}
@media (min-width: 768px) {
  .nd-cta--no-image .nd-cta__title {
    font-size: 2rem;
  }
}

.nd-footer {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.nd-footer__main {
  padding: 80px 48px;
}
@media (min-width: 1024px) {
  .nd-footer__main {
    padding: 100px 64px;
  }
}
@media (max-width: 767px) {
  .nd-footer__main {
    padding: 64px 24px;
  }
}

.nd-footer__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .nd-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
  }
}

@media (min-width: 768px) {
  .nd-footer__col--wide {
    padding-right: 32px;
  }
}

.nd-footer__heading {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
}

.nd-footer__tagline {
  margin: 0 0 24px;
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.nd-footer__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
}

.nd-footer__stat strong {
  display: block;
  font-size: 1.25rem;
  color: #0f172a;
}
.nd-footer__stat span {
  font-size: 0.875rem;
  color: #64748b;
}

.nd-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nd-footer__links li {
  margin-bottom: 12px;
}
.nd-footer__links a {
  color: #64748b;
  text-decoration: none;
}
.nd-footer__links a:hover {
  color: #00bce4;
}

.nd-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nd-footer__contact-item .nd-footer__contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.nd-footer__contact-item a {
  color: #64748b;
  text-decoration: none;
}
.nd-footer__contact-item a:hover {
  color: #00bce4;
}

.nd-footer__linkedin {
  display: inline-block;
  color: #64748b;
}
.nd-footer__linkedin:hover {
  color: #00bce4;
}

.nd-footer__bottom {
  padding: 24px 48px;
}
@media (max-width: 767px) {
  .nd-footer__bottom {
    padding: 24px;
  }
}

.nd-footer__bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  color: #64748b;
}

.nd-footer__bottom-links a {
  color: #64748b;
  text-decoration: none;
}
.nd-footer__bottom-links a:hover {
  color: #00bce4;
}

.nd-fvdt-layout {
  display: grid;
  gap: 48px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .nd-fvdt-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 56px;
  }
}
@media (min-width: 768px) {
  .nd-fvdt-layout--trajectory {
    align-items: stretch;
  }
}

@media (min-width: 768px) {
  .nd-fvdt-layout__left {
    grid-column: 1;
  }
}

@media (min-width: 768px) {
  .nd-fvdt-layout__right {
    grid-column: 2;
  }
}

.nd-fvdt-intro {
  max-width: 720px;
  margin: 0 0 24px;
  text-align: left;
}
.nd-fvdt-intro--wide {
  max-width: none;
  width: 100%;
}

.nd-fvdt-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.nd-fvdt-image img {
  width: 100%;
  height: auto;
  display: block;
}

.nd-fvdt-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nd-fvdt-steps--horizontal {
  flex-direction: column;
  gap: 16px;
}
.nd-fvdt-steps--horizontal .nd-fvdt-step {
  width: 100%;
  min-width: 0;
}

.nd-fvdt-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.nd-fvdt-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00bce4;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.125rem;
}

.nd-fvdt-step__title {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.nd-fvdt-step__desc {
  margin: 0;
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
}

.nd-fvdt-followup-wrap {
  position: relative;
}

.nd-fvdt-followup-wrap .nd-section__title {
  margin-bottom: 0;
}

.nd-fvdt-followup {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .nd-fvdt-followup {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
  }
}

.nd-fvdt-followup-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: left;
}
@media (min-width: 768px) {
  .nd-fvdt-followup-card {
    padding: 40px 36px;
  }
}
.nd-fvdt-followup-card__title {
  margin: 0 0 16px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.nd-fvdt-followup-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.nd-fvdt-followup-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.nd-section--dark .nd-fvdt-followup-links .nd-btn--primary {
  background: #fff;
  color: #0f2942;
  border-color: #fff;
}
.nd-section--dark .nd-fvdt-followup-links .nd-btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.nd-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 40px;
  justify-content: flex-start;
}

.nd-filter-btn {
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nd-filter-btn:hover {
  border-color: #00bce4;
  color: #00bce4;
}
.nd-filter-btn--active {
  background: #00bce4;
  border-color: #00bce4;
  color: #fff;
}
.nd-filter-btn--active:hover {
  background: #00a0c4;
  border-color: #00a0c4;
  color: #fff;
}

.nd-portfolio-item--hidden {
  display: none !important;
}

.nd-portfolio-item__sector {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

.nd-section--contact-main {
  background: #f8fafc;
  padding-top: 64px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .nd-section--contact-main {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.nd-contact-panels {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.nd-contact-panels--with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--nd-contact-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.nd-contact-panels--with-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 28%, rgba(255, 255, 255, 0.45) 58%, rgba(255, 255, 255, 0.12) 82%, rgba(255, 255, 255, 0) 100%);
}

.nd-contact-panels > .nd-section {
  position: relative;
  z-index: 1;
}

.nd-contact-panels > .nd-section--contact-main,
.nd-contact-panels > .nd-section--cta {
  background: transparent;
}

.nd-contact-panels > .nd-section--contact-main {
  padding-bottom: 28px;
}
@media (min-width: 768px) {
  .nd-contact-panels > .nd-section--contact-main {
    padding-bottom: 36px;
  }
}

.nd-contact-panels > .nd-section--cta {
  padding-top: 28px;
}
@media (min-width: 768px) {
  .nd-contact-panels > .nd-section--cta {
    padding-top: 36px;
  }
}

.nd-contact-form-placeholder {
  max-width: 640px;
  margin-top: 24px;
}

.nd-contact-form-fallback {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}
.nd-contact-form-fallback a {
  color: #00bce4;
  text-decoration: none;
}
.nd-contact-form-fallback a:hover {
  text-decoration: underline;
}

.nd-contact-hero-text p {
  margin: 0 0 0.5em;
}
.nd-contact-hero-text p:last-child {
  margin-bottom: 0;
}

.nd-contact-intro {
  margin: 0 0 32px;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  max-width: none;
  width: 100%;
}

.nd-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
  align-items: stretch;
}
@media (min-width: 640px) {
  .nd-contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .nd-contact-grid {
    gap: 24px;
  }
}

.nd-contact-actions {
  margin-top: 0;
}

.nd-contact-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.nd-contact-card:hover {
  border-color: rgba(0, 188, 228, 0.3);
  box-shadow: 0 4px 20px rgba(0, 188, 228, 0.08);
}

.nd-contact-panels--with-bg .nd-contact-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.nd-contact-panels--with-bg .nd-cta {
  background: rgba(245, 244, 240, 0.92);
  backdrop-filter: blur(8px);
}

.nd-contact-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00bce4;
  background: rgba(0, 188, 228, 0.08);
  border-radius: 10px;
}

.nd-contact-card__title {
  margin: 0 0 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.nd-contact-card__content {
  flex: 1;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.nd-contact-card__text {
  font-size: 1rem;
  color: #0f172a;
  line-height: 1.5;
}

.nd-contact-card__link {
  color: #00bce4;
  text-decoration: none;
}
.nd-contact-card__link:hover {
  color: #00a0c4;
  text-decoration: underline;
}

.nd-contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.nd-contact-card__actions .nd-btn {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.nd-contact-intro-block {
  margin-bottom: 40px;
}
.nd-contact-intro-block:last-child {
  margin-bottom: 0;
}

.nd-contact-intro-title {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 600;
  color: #0f172a;
}
@media (min-width: 768px) {
  .nd-contact-intro-title {
    font-size: 2.5rem;
  }
}

.nd-contact-intro-subtitle {
  margin: 32px 0 16px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
}

.nd-contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.nd-contact-details-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
  max-width: 720px;
}
@media (min-width: 768px) {
  .nd-contact-details-block {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 56px;
  }
}

.nd-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nd-contact-detail__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}
.nd-contact-detail__value {
  font-size: 1rem;
  color: #0f172a;
  line-height: 1.5;
}
.nd-contact-detail__link {
  color: #00bce4;
  text-decoration: none;
}
.nd-contact-detail__link:hover {
  text-decoration: underline;
}

.nd-team-category {
  margin: 48px 0 24px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
}
.nd-team-category:first-of-type {
  margin-top: 0;
}

.nd-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .nd-team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .nd-team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nd-team-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
}
.nd-team-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.nd-team-card__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f8fafc;
}
.nd-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nd-team-card__info {
  padding: 20px;
}
.nd-team-card__name {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}
.nd-team-card__role {
  margin: 0 0 12px;
  font-size: 0.875rem;
  color: #64748b;
}
.nd-team-card__contact {
  display: flex;
  gap: 12px;
}
.nd-team-card__link {
  color: #64748b;
  transition: color 0.2s ease;
}
.nd-team-card__link:hover {
  color: #00bce4;
}

.nd-testimonials-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.nd-testimonials-slider {
  display: flex;
  gap: 32px;
  padding: 24px calc(50vw - 225px);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nd-testimonials-slider::-webkit-scrollbar {
  display: none;
}
.nd-testimonials-slider:active {
  cursor: grabbing;
}
@media (max-width: 768px) {
  .nd-testimonials-slider {
    gap: 20px;
    padding: 16px calc(50vw - 160px);
  }
}

.nd-testimonial-slide {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 40px 32px 28px;
  min-width: 450px;
  max-width: 450px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
  position: relative;
  scroll-snap-align: center;
  opacity: 0.6;
  transform: scale(0.92);
}
.nd-testimonial-slide::before {
  content: '"';
  position: absolute;
  top: 18px;
  left: 22px;
  font-size: 72px;
  line-height: 1;
  color: rgba(0, 188, 228, 0.25);
  font-family: Georgia, serif;
  font-weight: 700;
  transition: all 0.35s ease;
}
.nd-testimonial-slide.active {
  opacity: 1;
  transform: scale(1.04);
  z-index: 2;
}
.nd-testimonial-slide.active::before {
  color: rgba(0, 188, 228, 0.4);
}
@media (max-width: 768px) {
  .nd-testimonial-slide {
    min-width: 320px;
    max-width: 320px;
    padding: 32px 24px 22px;
  }
}

.nd-testimonial-slide__quote {
  flex: 1;
  margin-top: 18px;
  margin-bottom: 24px;
}
.nd-testimonial-slide__quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.9);
  font-style: italic;
  font-weight: 400;
}
@media (max-width: 768px) {
  .nd-testimonial-slide__quote p {
    font-size: 0.98rem;
    line-height: 1.6;
  }
}

.nd-testimonial-slide__logo {
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}
.nd-testimonial-slide__logo img {
  max-width: 150px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.nd-testimonial-slide.active .nd-testimonial-slide__logo img {
  filter: grayscale(0%);
  opacity: 1;
}

.nd-slider-progress {
  width: 80%;
  max-width: 600px;
  height: 3px;
  background: rgba(15, 41, 66, 0.12);
  border-radius: 2px;
  margin: 28px auto 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .nd-slider-progress {
    width: 90%;
    margin-top: 20px;
  }
}

.nd-progress-bar {
  height: 100%;
  background: #00bce4;
  width: 0%;
  border-radius: 2px;
  transition: none;
}

.nd-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .nd-portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
  }
}
@media (min-width: 1024px) {
  .nd-portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nd-portfolio-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
}
.nd-portfolio-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.nd-portfolio-item__logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.nd-portfolio-item__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.nd-portfolio-item__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}
.nd-portfolio-item__fonds {
  font-size: 0.75rem;
  color: #64748b;
  background: #f8fafc;
  padding: 4px 10px;
  border-radius: 6px;
}

.nd-section--dark .nd-fvdt-followup-links .nd-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.nd-section--dark .nd-fvdt-followup-links .nd-btn--secondary:hover {
  border-color: #fff;
  color: #fff;
}

.nd-mentoring-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .nd-mentoring-principles {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
  }
}

.nd-mentoring-principle-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .nd-mentoring-principle-card {
    padding: 40px 36px;
    flex-direction: column;
    gap: 16px;
  }
}
.nd-mentoring-principle-card__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00bce4;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
}
.nd-mentoring-principle-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.9375rem;
}