/* New Design Styles */

:root {
  --nd-primary-color: #30C5FF;
  --nd-dark-bg: #0A1628;
  --nd-dark-blue: #1a2332;
  --nd-text-dark: #131927;
  --nd-text-gray: #52636E;
  --nd-text-light: #999999;
  --nd-border-color: #e5e5e5;
  --nd-bg-light: #f8f9fa;
  --nd-bg-lighter: #ffffff;
  --nd-highlight-color: #13B2F0;
  --nd-spacing-xs: 10px;
  --nd-spacing-sm: 16px;
  --nd-spacing-md: 24px;
  --nd-spacing-lg: 36px;
  --nd-spacing-xl: 48px;
  --nd-spacing-2xl: 64px;
  --nd-spacing-3xl: 96px;
  --nd-border-radius: 8px;
  --nd-border-radius-lg: 16px;
  --nd-transition: all 0.3s ease;
  --nd-font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Apply Manrope font to entire new design page */
body {
  font-family: var(--nd-font-family);
}

* {
  font-family: var(--nd-font-family);
}

/* Remove gaps between sections */
#main-content > section, footer {
  margin-top: -1px;
}

.nd-container {
  margin: 0 auto;
  max-width: 1400px;
}

/* Buttons */
.nd-btn {
  display: inline-block;
  padding: var(--nd-spacing-sm) var(--nd-spacing-md);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--nd-border-radius);
  transition: var(--nd-transition);
  cursor: pointer;
  border: none;
  text-align: center;
  min-width: 163px;
}

.nd-btn-primary {
  background-color: var(--nd-bg-lighter);
  color: var(--nd-text-dark);
}

.nd-btn-primary:hover {
  background-color: var(--nd-primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 168, 232, 0.2);
}

.nd-btn-secondary {
  background-color: transparent;
  color: var(--nd-bg-lighter);
  border: 2px solid var(--nd-border-color);
}

.nd-btn-secondary:hover {
  background-color: var(--nd-bg-light);
  color: var(--nd-text-dark);
  transform: translateY(-2px);
}

.nd-btn-large {
  padding: 18px 36px;
  font-size: 18px;
}

/* Typography */
.nd-highlight {
  color: var(--nd-highlight-color);
}

.nd-hero-section {
  padding: var(--nd-spacing-2xl) 0;
  background: linear-gradient(to bottom, #030406 0%, #5F87B2 50%, #D9E3EC 100%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nd-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.nd-hero-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 var(--nd-spacing-md);
  text-align: center;
}

.nd-hero-title-line {
  display: block;
}

.nd-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0 0 var(--nd-spacing-lg);
  max-width: 605px;
  text-align: center;
}

.nd-hero-buttons {
  display: flex;
  gap: var(--nd-spacing-sm);
}

/* Hero Silhouette */
.nd-hero-silhouette {
  position: relative;
  margin-top: 6%;
  width: 100vw;
  height: auto;
  min-height: 60vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: translateY(-10%);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.nd-hero-silhouette img {
  position: absolute;
  max-width: 100vw;
  height: auto;
}

.nd-silhouette-scene {
  width: 100%;
  z-index: 1;
}

.nd-silhouette-mockup {
  width: 100%;
  z-index: 2;
}

.nd-silhouette-group {
  width: 40%;
  z-index: 3;
}

.nd-silhouette-truss {
  z-index: 4;
  width: 38%;
  margin-top: -5%;
}

.nd-hero-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Partners Section */
.nd-partners-section {
  height: 288px;
  padding-bottom: var(--nd-spacing-2xl);
  background: linear-gradient(to bottom, #D9E3EC 0%, #D9E3EC 100%);
}

.nd-partners-grid {
  display: flex;
  gap: var(--nd-spacing-3xl);
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: var(--nd-spacing-md) 0;
  -webkit-overflow-scrolling: touch;
  max-width: 1200px;
  margin: 0 auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.nd-partners-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.nd-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  &:first-child {
    margin-left: var(--nd-spacing-lg);
  }
}

.nd-partner-img {
  max-width: 240px;
  height: auto;
}

/* Features Section */
.nd-features-section {
  padding: var(--nd-spacing-3xl) 0;
  background-color: #D9E3EC;
  position: relative;
  display: flex;
  justify-content: center;
}

.nd-features-wrapper {
  position: relative;
  width: 100%;
  padding-left: var(--nd-spacing-3xl);
}

.nd-features-grid {
  display: flex;
  gap: var(--nd-spacing-md);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--nd-spacing-md) 0;
}

.nd-features-grid::-webkit-scrollbar {
  display: none;
}

.nd-feature-card {
  background: white;
  border-radius: var(--nd-border-radius-lg);
  overflow: hidden;
  transition: var(--nd-transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  width: 455px;
  flex-shrink: 0;

  &:last-child {
    margin-right: 50px;
  }
}

.nd-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.nd-feature-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--nd-bg-light);
}

.nd-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nd-feature-content {
  padding: var(--nd-spacing-md);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  height: 100%;
}

.nd-feature-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--nd-text-dark);
}

.nd-feature-description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #344248;
  max-width: 256px;
}

.nd-feature-link {
  display: inline-block;
  color: var(--nd-primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--nd-transition);
}

.nd-feature-link:hover {
  transform: translateX(4px);
}

.nd-feature-dots {
  display: flex;
  gap: 8px;
  padding: 0 var(--nd-spacing-md) var(--nd-spacing-md);
}

.nd-carousel-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: var(--nd-spacing-lg);
}

.nd-carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--nd-transition);
}

.nd-carousel-arrow:hover {
  background-color: var(--nd-bg-light);
  border-color: var(--nd-primary-color);
}

.nd-carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nd-carousel-dots {
  display: flex;
  gap: 12px;
  background: #FFFFFF80;
  padding: var(--nd-spacing-xs);
  border-radius: 30px;
}

.nd-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--nd-text-dark);
  cursor: pointer;
  transition: var(--nd-transition);
}

.nd-dot:hover {
  background-color: var(--nd-text-gray);
}

.nd-dot-active {
  background-color: var(--nd-primary-color);
  width: 24px;
  border-radius: 4px;
}

/* Showcase Section */
.nd-showcase-section {
  padding: var(--nd-spacing-3xl) 0;
  background-color: #D9E3EC;
}

.nd-showcase-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--nd-spacing-sm);

  > * {
    flex: 1;
  }

  img {
    width: 100%;
  }
}

.nd-showcase-content {
  max-width: 612px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  > * {
    max-width: 480px;
    width: 100%;
  }
}

.nd-showcase-image {
  position: relative;
}

.nd-showcase-img {
  max-width: 610px;
  width: 100%;
  height: auto;
  border-radius: var(--nd-border-radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.nd-showcase-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background-color: var(--nd-text-dark);
  color: white;
  border-radius: var(--nd-border-radius);
  margin-bottom: var(--nd-spacing-md);
}

.nd-showcase-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 46px;
  text-align: center;
  color: var(--nd-text-dark);
  margin: 0 0 var(--nd-spacing-lg);
}

.nd-showcase-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--nd-spacing-md);
}

.nd-showcase-feature {
  display: flex;
  align-items: center;
  gap: var(--nd-spacing-xs);
  color: var(--nd-text-dark);
  font-weight: 500;
  padding: 12px;
  border-radius: 30px;
  position: relative;
  border: none;
}

.nd-showcase-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.nd-showcase-feature:nth-child(odd) {
  background: linear-gradient(to right, rgba(231, 238, 244, 0) 0%, rgba(231, 238, 244, 1) 100%);
}

.nd-showcase-feature:nth-child(odd)::before {
  background: linear-gradient(to right, rgba(185, 201, 216, 0) 0%, #B9C9D8 100%);
}

.nd-showcase-feature:nth-child(even) {
  background: linear-gradient(to left, rgba(231, 238, 244, 0) 0%, rgba(231, 238, 244, 1) 100%);
}

.nd-showcase-feature:nth-child(even)::before {
  background: linear-gradient(to left, rgba(185, 201, 216, 0) 0%, #B9C9D8 100%);
}

.nd-showcase-feature svg {
  color: var(--nd-primary-color);
}

/* Program Section */
.nd-program-section {
  padding: var(--nd-spacing-3xl) 0;
  background-color: #D9E3EC;
  position: relative;
  display: flex;
  justify-content: center;
}

.nd-program-wrapper {
  position: relative;
  width: 100%;
  padding-left: var(--nd-spacing-3xl);
}

.nd-program-carousel {
  display: flex;
  gap: var(--nd-spacing-md);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--nd-spacing-md) 0;
}

.nd-program-carousel::-webkit-scrollbar {
  display: none;
}

.nd-program-card {
  background: white;
  border-radius: var(--nd-border-radius-lg);
  overflow: hidden;
  transition: var(--nd-transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 1240px;
  height: 561px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: var(--nd-spacing-lg);
  align-items: center;
  padding: var(--nd-spacing-xl);

  &:last-child {
    margin-right: 50px;
  }
}

.nd-program-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.nd-program-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.nd-program-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--nd-text-dark);
  margin: 0 0 var(--nd-spacing-md);
}

.nd-program-description {
  width: 450px;
  font-size: 20px;
  line-height: 24px;
  color: var(--nd-text-gray);
}

.nd-program-tags {
  display: flex;
  gap: var(--nd-spacing-xs);
  flex-wrap: wrap;
}

.nd-program-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(to right, rgba(231, 238, 244, 1) 0%, rgba(231, 238, 244, 0.7) 100%);
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--nd-text-dark);
  cursor: pointer;
  transition: var(--nd-transition);
  position: relative;

  span {
    display: flex;
    align-items: center;
  }
}

.nd-program-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(to right, rgba(185, 201, 216, 1) 0%, rgba(185, 201, 216, 0.7) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.nd-program-tag:hover {
  background: linear-gradient(to right, rgba(231, 238, 244, 1) 0%, rgba(231, 238, 244, 0.8) 100%);
}

.nd-program-types {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}

.nd-program-type {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: #EBF0F5;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--nd-text-dark);
  cursor: pointer;
  transition: var(--nd-transition);
}

.nd-program-type:last-child {
  border-right: none;
}

.nd-program-type svg {
  width: 24px;
  height: 24px;
  color: var(--nd-text-dark);
}

.nd-program-type-active {
  background: var(--nd-text-dark);
  color: white;
  border-radius: 12;
}

.nd-program-type-active svg {
  color: white;
}

.nd-program-type:hover:not(.nd-program-type-active) {
  background: #d1d5da;
}

.nd-program-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  .cropped {
    transform: translate(20px, 40px);
    scale: 1.1;
  }

  .slided {
    transform: translateX(50px);
  }
}

.nd-program-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--nd-border-radius);
}

.nd-benefits-section {
  padding: calc(var(--nd-spacing-3xl) * 1.56) 0;
  background: linear-gradient(to bottom, #D9E3EC 0%, #5F87B2 64%, #040507 100%);
  position: relative;
}

.nd-benefits-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: var(--nd-text-dark);
  margin: 0 0 var(--nd-spacing-2xl);
  line-height: 1.3;
}

.nd-benefits-grid {
  display: grid;
  grid-template-columns: 453fr 301fr 453fr;
  gap: var(--nd-spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.nd-benefit-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--nd-spacing-md) 36px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--nd-transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--nd-spacing-md);

  .nd-quote-visual, .nd-workflow-visual, .nd-order-visual {
    scale: 1.14;
  }
}

.nd-benefit-card:nth-child(1) {
  background: linear-gradient(to bottom right, rgba(231, 238, 244, 0.2) 0%, rgba(231, 238, 244, 0.8) 100%);
}

.nd-benefit-card:nth-child(2) {
  background: linear-gradient(to top left, rgba(231, 238, 244, 0.8) 0%, rgba(231, 238, 244, 0.2) 100%);
}

.nd-benefit-card:nth-child(3) {
  background: linear-gradient(to bottom left, rgba(231, 238, 244, 0.2) 0%, rgba(231, 238, 244, 0.8) 100%);
}

.nd-benefit-card:nth-child(4) {
  background: linear-gradient(to top right, rgba(231, 238, 244, 0.8) 0%, rgba(231, 238, 244, 0.2) 100%);
}

.nd-benefit-card:hover:not(:last-child) {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.nd-benefit-card-wide {
  grid-column: span 3;
  height: 130px;
}

.nd-quote-visual,
.nd-workflow-visual,
.nd-order-visual {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nd-benefit-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--nd-text-dark);
  line-height: 30px;
  margin-bottom: 16px;
}

.nd-benefit-description {
  font-size: 16px;
  line-height: 20px;
  color: #344248;
  margin: 0;
  font-weight: 500;
}

.nd-benefit-wide-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--nd-spacing-xl);
  flex-wrap: wrap;
}

.nd-benefit-tags {
  position: absolute;
  right: 10px;
  top: 0;
}

.nd-benefit-tags-desktop {
  display: block;
}

.nd-benefit-tags-mobile {
  display: none;
}

.nd-benefit-wide-text {
  flex: 1;
  min-width: 300px;
}

/* Reshaping Section */
.nd-reshaping-section {
  padding: var(--nd-spacing-3xl) 0;
  background: #040507 url('/reshaping-section.png') center/cover no-repeat;
  color: white;
  position: relative;
  overflow: hidden;
  height: 95vh;
}

.nd-reshaping-header {
  text-align: center;
  margin-bottom: var(--nd-spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.nd-reshaping-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: white;
}

.nd-reshaping-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nd-reshaping-item {
  display: flex;
  flex-direction: row;
  gap: var(--nd-spacing-md);
  position: relative;
}

.nd-reshaping-item:not(:first-child) {
  transform: translateY(-1px);
}

.nd-timeline-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.nd-timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  border: 3px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  z-index: 2;
}

.nd-timeline-connector::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #FFFFFF;
  z-index: 1;
}

.nd-reshaping-item:last-child .nd-timeline-connector::after {
  display: none;
}

.nd-timeline-content {
  flex: 1;
  padding-bottom: var(--nd-spacing-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nd-timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.nd-timeline-icon svg {
  width: 24px;
  height: 24px;
  color: #000;
}

.nd-reshaping-item-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
}

.nd-reshaping-item-description {
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.nd-reshaping-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin: 0 auto;
}

/* Desktop horizontal timeline */
@media (min-width: 769px) {
  .nd-reshaping-content {
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    padding: 0 var(--nd-spacing-lg);
    scrollbar-width: none;
    width: 100vw;
    -ms-overflow-style: none;
  }

  .nd-reshaping-content::-webkit-scrollbar {
    display: none;
  }

  .nd-reshaping-item {
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 394px;
  }

  .nd-reshaping-item:not(:first-child) {
    transform: translateX(-1px);
  }

  .nd-timeline-connector {
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nd-timeline-dot {
    position: relative;
    z-index: 2;
  }

  .nd-timeline-connector::after {
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
  }

  .nd-reshaping-item:last-child .nd-timeline-connector::after {
    display: none;
  }

  .nd-timeline-content {
    padding-bottom: 0;
    padding-top: var(--nd-spacing-lg);
    gap: 16px;
    width: 394px;
  }

  .nd-timeline-icon {
    margin-bottom: 8px;
  }

  .nd-reshaping-item-description {
    max-width: 330px;
  }
}

.nd-reshaping-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--nd-spacing-lg);
  margin-top: var(--nd-spacing-2xl);
}

.nd-reshaping-feature {
  text-align: center;
  padding: var(--nd-spacing-md);
}

.nd-reshaping-feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--nd-border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--nd-spacing-md);
  color: var(--nd-primary-color);
}

.nd-reshaping-feature-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 var(--nd-spacing-xs);
}

.nd-reshaping-feature-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* FAQ Section */
.nd-faq-section {
  padding: var(--nd-spacing-3xl) 0;
  background-color: #D9E3EC;

  .nd-container {
    display: flex;
    gap: 16px;
  }
}

.faq-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  max-height: 594px;

  .faq-small-title {
    display: flex;
    font-weight: 500;
    gap: 8px;
    padding: 12px var(--nd-spacing-sm);
    color: var(--nd-text-dark);
    border: #B9C9D8 1px solid;
    border-radius: 29px;
    margin-bottom: var(--nd-spacing-md);
    font-size: 16px;
    width: fit-content;
  }
}

.nd-faq-title > span {
  font-size: 40px;
  font-weight: 600;
  color: var(--nd-text-dark);
  line-height: 46px;
}

.nd-faq-list {
  flex: 1.6;
  margin: 0 auto var(--nd-spacing-2xl);
}

.nd-faq-item {
  background: white;
  border-radius: var(--nd-border-radius-lg);
  margin-bottom: var(--nd-spacing-sm);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid #B9C9D8;
  background: linear-gradient(to bottom right, rgba(231, 238, 244, 0.8) 0%, rgba(231, 238, 244, 0.2) 100%);
}

.nd-faq-question {
  width: 100%;
  padding: var(--nd-spacing-md) var(--nd-spacing-lg);
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--nd-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--nd-transition);
  background: none;

  span {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
  }
}

.nd-faq-question:hover {
  color: var(--nd-primary-color);
}

.nd-faq-icon {
  flex-shrink: 0;
  transition: var(--nd-transition);
  transform: rotate(180deg);
}

.nd-faq-item.active .nd-faq-icon {
  transform: rotate(0deg);
}

.nd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nd-faq-item.active .nd-faq-answer {
  max-height: 500px;
}

.nd-faq-answer p {
  padding: 0 0 var(--nd-spacing-md) var(--nd-spacing-lg);
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #344248;
  max-width: 623px;
}

.nd-faq-cta {
  border-radius: var(--nd-border-radius-lg);
  max-width: 391px;

  a {
    background: var(--nd-text-dark);
    color: var(--nd-bg-lighter);
  }
}

.nd-faq-cta-text {
  font-size: 24px;
  font-weight: 600;
  color: var(--nd-text-dark);
  margin: 0 0 var(--nd-spacing-md);
}

.nd-faq-cta-subtext {
  font-size: 20px;
  color: var(--nd-text-dark);
  margin: 0 0 var(--nd-spacing-md);
}

/* Final CTA Section */
.nd-final-cta-section {
  padding: var(--nd-spacing-3xl) var(--nd-spacing-2xl);
  background: linear-gradient(to bottom, #D9E3EC 0%, #5F87B2 64%, #040507 100%);
  min-height: 418px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nd-final-cta-card {
  max-width: 1400px;
  width: 100%;
  padding: var(--nd-spacing-lg);
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 24px;
  border: 1px solid rgba(185, 201, 216, 0.6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nd-final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px var(--nd-spacing-sm);
  background: linear-gradient(to right, rgba(231, 238, 244, 0.9) 0%, rgba(231, 238, 244, 0.6) 100%);
  outline: 1px solid rgba(185, 201, 216, 0.8);
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--nd-text-dark);
  margin-bottom: 36px;
}

.nd-final-cta-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--nd-text-dark);
  line-height: 46px;
  margin-bottom: var(--nd-spacing-sm);
}

.nd-final-cta-description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--nd-text-gray);
  margin: 0;
  max-width: 700px;
}

.nd-btn-cta {
  background: var(--nd-text-dark);
  color: var(--nd-bg-lighter);
  padding: var(--nd-spacing-sm) var(--nd-spacing-xl);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--nd-border-radius);
  text-decoration: none;
  transition: var(--nd-transition);
  margin-top: 12px;
}

.nd-btn-cta:hover {
  background: var(--nd-highlight-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(7, 153, 212, 0.3);
}

/* Footer Navigation */
.nd-footer-nav {
  background: #040507;
  padding: var(--nd-spacing-3xl) 100px;
  color: white;
  min-height: 468px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 64px;
}

.nd-footer-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;

  gap: var(--nd-spacing-3xl);
  align-items: start;
}

.nd-footer-left {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--nd-spacing-md);

  .nd-logo-link {
    margin: 0;
  }
}

.nd-footer-logo {
  width: fit-content;
}

.nd-footer-left {
  display: flex;
  flex-direction: column;
  gap: 42px;

  .inner {
    gap: 16px;
  }
}

.nd-footer-heading {
  font-size: 40px;
  font-weight: 600;
  line-height: 46px;
  color: #FFFFFF;
}

.nd-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;

  .nd-footer-contact-card {
    width: 100%;
    display: flex;
    gap: 16px;

    p {
      font-size: 14px;
      line-height: 18px;
      font-weight: 500;
    }

    p:first-child {
      width: 100px;
      font-weight: 700;
    }
  }
}

.nd-footer-phone {
  font-size: 18px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: var(--nd-transition);
}

.nd-footer-phone:hover {
  color: var(--nd-primary-color);
}

.nd-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: var(--nd-spacing-sm);
}

.nd-footer-social-btn {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--nd-transition);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nd-footer-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.nd-footer-social-btn svg {
  width: 24px;
  height: 24px;
}

.nd-footer-right {
  display: flex;
  flex: 1.5;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 338px;
}

.nd-footer-nav-links {
  display: flex;
  gap: 16px;
  width: 100%;
}

.nd-footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  max-width: 160px;
  width: 100%;

  h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 30px;
  }
}

.nd-footer-column-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: white;
  margin: 0 0 4px 0;
}

.nd-footer-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: white;
  text-decoration: none;
  transition: var(--nd-transition);
}

.nd-footer-link:hover {
  color: var(--nd-primary-color);
}

.nd-footer-buttons {
  display: flex;
  gap: 16px;
}

.nd-footer-btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
  text-align: center;
  transition: var(--nd-transition);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
}

.nd-footer-btn-primary {
  background: white;
  color: #131927;
  border-color: white;
}

.nd-footer-btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.nd-footer-btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.nd-footer-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.nd-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
}

.nd-footer-bottom-link {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--nd-transition);
}

.nd-footer-bottom-link:hover {
  color: white;
}

.nd-footer-copyright {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.4);
}

/* Tablet & Mobile Responsiveness */

/* Medium Desktop - 1340px and below */
@media (max-width: 1535px) {
  .nd-benefits-grid {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 1340px) {
  .nd-benefits-grid {
    max-width: 1000px;
  }

  .nd-container {
    padding: 0 var(--nd-spacing-md);
  }
}

/* Desktop - 1280px and below */
@media (max-width: 1280px) {
  .nd-benefits-grid {
    max-width: 960px;

  }

  .nd-benefit-tags {
    transform: scale(0.9);
    right: 0;
  }
}

/* Tablet Landscape - 1024px and below */
@media (max-width: 1024px) {
  .nd-faq-title {
    margin-bottom: 36px;
  }

  .nd-container {
    max-width: 920px;
  }

  .nd-showcase-section {
    padding: 0;
  }

  .nd-hero-title {
    font-size: 52px;
    line-height: 1.2;
  }

  .nd-hero-subtitle {
    font-size: 17px;
    max-width: 540px;
  }

  .nd-hero-buttons {
    gap: 12px;
  }

  .nd-partners-section {
    height: 240px;
  }

  .nd-partners-grid {
    gap: var(--nd-spacing-2xl);
  }

  .nd-partner-img {
    max-width: 180px;
  }

  .nd-features-wrapper {
    padding-left: var(--nd-spacing-sm);
  }

  .nd-feature-card {
    width: 400px;
  }

  .nd-feature-title {
    font-size: 22px;
  }

  .nd-feature-description {
    font-size: 15px;
    line-height: 19px;
  }

  .nd-program-card {
    width: calc(100vw - 45px);
    height: 615px;
    padding: var(--nd-spacing-lg);

    &:last-child {
      margin-right: var(--nd-spacing-sm);
    }

    &:first-child {
      margin-left: var(--nd-spacing-sm);
    }
  }

  .nd-program-title {
    font-size: 34px;
  }

  .nd-program-description {
    width: 380px;
    font-size: 18px;
    line-height: 22px;
  }

  .nd-showcase-grid {
    flex-direction: column-reverse;
    gap: var(--nd-spacing-lg);
  }

  .nd-showcase-img {
    max-width: 100%;
    padding: 0 8px;
  }

  .nd-showcase-title {
    font-size: 36px;
    line-height: 42px;
  }

  .nd-benefits-title {
    font-size: 42px;
  }

  .nd-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--nd-spacing-sm);
  }

  .nd-benefit-card-wide {
    grid-column: span 2;
  }

  .nd-faq-section {
    padding: var(--nd-spacing-3xl) 0 0 0;
    margin: 0;
  }

  .nd-faq-list {
    margin: 0;
  }

  .nd-reshaping-title {
    font-size: 48px;
  }

  .nd-faq-section .nd-container {
    flex-direction: column;
    gap: var(--nd-spacing-lg);
  }

  .faq-left {
    max-height: none;
  }

  .nd-program-wrapper {
    padding: 0;
  }

  .nd-final-cta-title {
    font-size: 36px;
    line-height: 42px;
  }

  .nd-footer-nav {
    padding: var(--nd-spacing-2xl) var(--nd-spacing-xl);
  }

  .nd-footer-container {
    flex-direction: column;
    gap: var(--nd-spacing-2xl);
  }

  .nd-footer-right {
    align-items: flex-start;
    height: auto;
    gap: 42px;
    width: 100%;
  }

  .nd-footer-nav-links {
    justify-content: space-between;
  }

  .nd-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .nd-program-types {
    flex-direction: column;
    width: 50%;
    min-width: 200px;
    margin: 0 auto;
  }

  .nd-container {
    max-width: 100%;
    padding: 0 var(--nd-spacing-md);
  }

  .nd-hero-section {
    padding: var(--nd-spacing-xl) 0;
  }

  .nd-hero-title {
    font-size: 42px;
  }

  .nd-hero-subtitle {
    font-size: 16px;
    max-width: 480px;
    line-height: 20px;
  }

  .nd-btn {
    width: 100%;
    text-align: center;
  }

  .nd-hero-silhouette {
    min-height: 50vw;
  }

  .nd-partners-section {
    height: 200px;
  }

  .nd-partner-img {
    max-width: 150px;
  }

  .nd-features-wrapper {
    padding-left: var(--nd-spacing-xl);
  }

  .nd-feature-card {
    width: 330px;
    height: 256px;
  }

  .nd-feature-image {
    height: 200px;
  }

  .nd-feature-title {
    font-size: 20px;
  }

  .nd-feature-description {
    font-size: 14px;
    line-height: 18px;
    max-width: 220px;
  }

  .nd-carousel-controls {
    gap: 16px;
    margin-top: var(--nd-spacing-md);
  }

  .nd-carousel-arrow {
    width: 40px;
    height: 40px;
  }


  .nd-program-card {
    padding: var(--nd-spacing-md);
    flex-direction: column;
  }

  .nd-program-title {
    font-size: 28px;
  }

  .nd-program-description {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
  }

  .nd-program-image .cropped,
  .nd-program-image .slided {
    transform: none;
    scale: 1;
  }

  .nd-showcase-title {
    font-size: 32px;
    line-height: 38px;
  }

  .nd-showcase-features {
    gap: 4px;
  }

  .nd-benefits-section {
    padding: var(--nd-spacing-2xl) 0;
  }

  .nd-benefits-title {
    font-size: 36px;
    margin-bottom: var(--nd-spacing-xl);
  }

  .nd-benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--nd-spacing-sm);
    padding: 0 var(--nd-spacing-md);
  }

  .nd-benefit-card {
    padding: var(--nd-spacing-md) var(--nd-spacing-lg);
    min-height: 280px;
  }

  .nd-benefit-card-wide {
    grid-column: span 1;
    height: auto;
    min-height: 150px;
  }

  .nd-benefit-wide-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nd-benefit-title {
    font-size: 22px;
    line-height: 28px;
  }

  .nd-benefit-description {
    font-size: 15px;
    line-height: 19px;
  }

  .nd-reshaping-section {
    height: auto;
    padding: var(--nd-spacing-2xl) 0;
  }

  .nd-reshaping-title {
    font-size: 38px;
  }

  .nd-reshaping-content {
    flex-direction: column;
  }

  .nd-reshaping-item {
    max-width: 100%;
  }

  .nd-faq-question span {
    font-size: 20px;
    line-height: 26px;
  }

  .nd-faq-question {
    padding: var(--nd-spacing-md) var(--nd-spacing-md);
  }

  .nd-faq-answer p {
    font-size: 15px;
    line-height: 19px;
    padding: 0 var(--nd-spacing-md) var(--nd-spacing-md);
  }

  .nd-footer-left {
    width: 100%;

    .nd-footer-contact-card {
      justify-content: space-between;
    }
  }

  .nd-faq-cta-text {
    font-size: 22px;
  }

  .nd-final-cta-section {
    min-height: 340px;
    padding: var(--nd-spacing-2xl) var(--nd-spacing-md);
  }

  .nd-final-cta-card {
    padding: var(--nd-spacing-lg) 16px;
  }

  .nd-final-cta-title {
    font-size: 32px;
    line-height: 38px;
  }

  .nd-footer-nav {
    padding: 0 var(--nd-spacing-sm) 42px;
    gap: var(--nd-spacing-2xl);
  }

  .nd-footer-nav-links {
    flex-wrap: wrap;
  }

  .nd-footer-nav-column h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .nd-footer-link {
    font-size: 15px;
    line-height: 19px;
  }
}

/* Swap benefit tags images at 860px */
@media (max-width: 860px) {
  .benefit-tags-mobile {
    height: auto;
  }

  .nd-benefit-wide-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 750px) {
  .nd-benefit-tags {
    position: static;
    transform: translateX(-55px) scale(0.9);
  }
}

@media (max-width: 680px) {
  .nd-benefit-tags-desktop {
    display: none;
  }

  .nd-benefit-tags-mobile {
    display: block;
    width: calc(100vw - 120px);
  }

  .nd-benefit-tags {
    transform: scale(1);
  }

  /* Small Tablet / Large Phone - 600px and below */
  @media (max-width: 600px) {
    .nd-footer-buttons {
      max-width: 100%;
      gap: 12px;
      flex-direction: column;
      width: 100%;
    }

    .nd-hero-subtitle {
      max-width: 100%;
    }

    .nd-partners-section {
      height: 160px;
      padding: 0 24px;
    }

    .nd-partners-grid {
      gap: 48px;
    }

    .nd-partner-img {
      max-width: 160px;
    }

    .nd-features-wrapper {
      padding-left: var(--nd-spacing-lg);
    }

    .nd-feature-image {
      height: 180px;
    }

    .nd-feature-title {
      font-size: 18px;
    }

    .nd-feature-description {
      font-size: 13px;
      line-height: 17px;
      max-width: 200px;
    }

    .nd-program-card {
      padding: var(--nd-spacing-md);
    }

    .nd-hero-buttons {
      flex-direction: column-reverse;
      width: 100%;
      padding: 0 8px;
    }

    .nd-program-title {
      font-size: 24px;
    }

    .nd-program-description {
      font-size: 14px;
      line-height: 18px;
    }

    .nd-program-tag {
      font-size: 14px;
      padding: 6px 12px;
    }

    .nd-program-type {
      padding: 12px 16px;
      font-size: 13px;
    }

    .nd-showcase-badge {
      width: 64px;
      height: 64px;
    }

    .nd-showcase-badge svg {
      width: 80px;
      height: 80px;
    }

    .nd-showcase-title {
      font-size: 28px;
      line-height: 34px;
    }

    .nd-showcase-feature {
      font-size: 14px;
      padding: 10px;
    }

    .nd-showcase-feature svg {
      width: 20px;
      height: 20px;
    }

    .nd-benefits-title {
      font-size: 32px;
    }

    .nd-benefit-card {
      padding: var(--nd-spacing-md);
      min-height: 240px;
    }

    .nd-benefit-title {
      font-size: 20px;
      line-height: 26px;
    }

    .nd-benefit-description {
      font-size: 14px;
      line-height: 18px;
    }

    .nd-reshaping-title {
      font-size: 32px;
    }

    .nd-faq-question span {
      font-size: 18px;
      line-height: 24px;
    }

    .nd-faq-icon {
      width: 36px;
      height: 36px;
    }

    .nd-final-cta-title {
      font-size: 28px;
      line-height: 34px;
    }

    .nd-final-cta-badge {
      font-size: 14px;
      padding: 10px 14px;
    }

    .nd-footer-contacts .nd-footer-contact-card p {
      font-size: 12px;
    }
  }

  /* Large Phone - 480px and below */
  @media (max-width: 480px) {
    .nd-container {
      padding: 0 var(--nd-spacing-sm);
    }

    .nd-hero-section {
      padding: var(--nd-spacing-2xl) 0;
    }

    .nd-btn {
      padding: 16px 20px;
      font-size: 16px;
    }

    .nd-partners-section {
      height: 140px;
      padding: 0 20px;
    }

    .nd-partners-grid {
      gap: 40px;
    }

    .nd-partner-img {
      max-width: 120px;
    }

    .nd-features-wrapper {
      padding-left: var(--nd-spacing-md);
    }

    .nd-feature-image {
      height: 160px;
    }

    .nd-feature-title {
      font-size: 17px;
    }

    .nd-feature-description {
      font-size: 12px;
      line-height: 16px;
      max-width: 180px;
    }

    .nd-carousel-arrow {
      width: 36px;
      height: 36px;
    }

    .nd-carousel-dots {
      padding: 6px;
      gap: 8px;
    }

    .nd-program-card {
      padding: var(--nd-spacing-sm);
    }

    .nd-program-title {
      font-size: 22px;
    }

    .nd-program-description {
      font-size: 13px;
      line-height: 17px;
    }

    .nd-showcase-title {
      font-size: 26px;
      line-height: 32px;
    }

    .nd-benefits-title {
      font-size: 28px;
    }

    .nd-benefit-card {
      min-height: 220px;
    }

    .nd-benefit-title {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 12px;
    }

    .nd-benefit-description {
      font-size: 13px;
      line-height: 17px;
    }

    .nd-reshaping-title {
      font-size: 28px;
    }

    .nd-faq-question {
      padding: var(--nd-spacing-sm) var(--nd-spacing-md);
    }

    .nd-faq-question span {
      font-size: 16px;
      line-height: 22px;
    }

    .nd-faq-answer p {
      font-size: 14px;
      line-height: 18px;
    }

    .nd-faq-cta-text {
      font-size: 20px;
    }

    .nd-final-cta-section {
      min-height: 300px;
    }

    .nd-final-cta-title {
      font-size: 26px;
      line-height: 32px;
    }

    .nd-footer-nav-links {
      gap: 42px 24px;
    }

    .nd-footer-nav-column h3 {
      font-size: 20px;
      line-height: 26px;
    }

    .nd-footer-link {
      font-size: 14px;
      line-height: 18px;
    }
  }

  /* Mobile - 375px */
  @media (max-width: 375px) {
    .nd-container {
      padding: 0 20px;
    }

    .nd-hero-section {
      padding: 40px 0;
    }

    .nd-hero-title {
      font-size: 32px;
      line-height: 1.3;
    }

    .nd-hero-buttons {
      flex-direction: column-reverse;
      width: 100%;
      gap: 12px;
    }

    .nd-btn {
      width: 100%;
      padding: 14px 20px;
      font-size: 14px;
    }

    .nd-partners-section {
      height: 120px;
      padding-bottom: 32px;
    }

    .nd-partners-grid {
      gap: 24px;
    }

    .nd-partner-img {
      max-width: 80px;
    }

    .nd-features-section {
      padding: 40px 0;
    }

    .nd-features-wrapper {
      padding-left: 20px;
    }

    .nd-feature-image {
      height: 140px;
    }

    .nd-feature-title {
      font-size: 16px;
    }

    .nd-feature-description {
      font-size: 12px;
      line-height: 15px;
      max-width: 160px;
    }

    .nd-carousel-arrow {
      width: 32px;
      height: 32px;
    }

    .nd-carousel-dots {
      padding: 4px;
      gap: 6px;
    }

    .nd-program-section {
      padding: 40px 0;
    }

    .nd-program-card {
      width: 320px;
      height: 300px;
      padding: 16px;
    }

    .nd-program-title {
      font-size: 20px;
    }

    .nd-program-description {
      font-size: 12px;
      line-height: 16px;
    }

    .nd-program-tag {
      font-size: 12px;
      padding: 4px 10px;
    }

    .nd-program-type {
      padding: 10px 14px;
      font-size: 12px;
    }

    .nd-showcase-badge {
      width: 56px;
      height: 56px;
    }

    .nd-showcase-badge svg {
      width: 70px;
      height: 70px;
    }

    .nd-showcase-title {
      font-size: 24px;
      line-height: 30px;
    }

    .nd-showcase-features {
      grid-template-columns: 1fr;
    }

    .nd-showcase-feature {
      font-size: 13px;
      padding: 8px;
    }

    .nd-showcase-feature svg {
      width: 18px;
      height: 18px;
    }

    .nd-benefits-section {
      padding: 40px 0;
    }

    .nd-benefits-title {
      font-size: 26px;
      margin-bottom: 24px;
    }

    .nd-benefits-grid {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 0 20px;
    }

    .nd-benefit-card {
      padding: 16px 20px;
      min-height: 200px;
    }

    .nd-benefit-card-wide {
      min-height: 140px;
    }

    .nd-benefit-title {
      font-size: 17px;
      line-height: 22px;
      margin-bottom: 10px;
    }

    .nd-benefit-description {
      font-size: 12px;
      line-height: 16px;
    }

    .nd-quote-visual,
    .nd-workflow-visual,
    .nd-order-visual {
      height: 160px;
    }

    .nd-reshaping-section {
      padding: 40px 0;
      height: auto;
    }

    .nd-reshaping-title {
      font-size: 26px;
    }

    .nd-faq-section {
      padding: 40px 0 0 0;
    }

    .nd-faq-section .nd-container {
      padding: 0 20px;
    }

    .nd-faq-title > span {
      font-size: 32px;
      line-height: 30px;
    }

    .nd-faq-question {
      padding: 16px;
    }

    .nd-faq-question span {
      font-size: 15px;
      line-height: 20px;
    }

    .nd-faq-icon {
      width: 32px;
      height: 32px;
    }

    .nd-faq-answer p {
      font-size: 13px;
      line-height: 17px;
      padding: 0 16px 16px;
    }

    .nd-faq-cta {
      max-width: 100%;
    }

    .nd-faq-cta-text {
      font-size: 18px;
    }

    .faq-left .faq-small-title {
      font-size: 13px;
      padding: 10px 12px;
    }

    .nd-final-cta-section {
      min-height: 280px;
      padding: 40px 20px;
    }

    .nd-final-cta-card {
      padding: 24px;
    }

    .nd-final-cta-badge {
      font-size: 12px;
      padding: 8px 12px;
      margin-bottom: 16px;
    }

    .nd-final-cta-title {
      font-size: 24px;
      line-height: 30px;
      margin-bottom: 12px;
    }

    .nd-final-cta-description {
      font-size: 13px;
      line-height: 17px;
    }

    .nd-footer-nav {
      gap: 32px;
      min-height: auto;
    }

    .nd-footer-logo a img {
      width: 100px;
      height: 100px;
    }

    .nd-footer-contacts .nd-footer-contact-card {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .nd-footer-contacts .nd-footer-contact-card p {
      font-size: 12px;
      line-height: 16px;
    }

    .nd-footer-contacts .nd-footer-contact-card p:first-child {
      width: auto;
    }

    .nd-footer-social-btn {
      width: 40px;
      height: 40px;
    }

    .nd-footer-social-btn svg {
      width: 20px;
      height: 20px;
    }

    .nd-footer-right {
      height: auto;
    }

    .nd-footer-nav-column {
      max-width: 100%;
    }

    .nd-footer-nav-column h3 {
      font-size: 18px;
      line-height: 24px;
    }

    .nd-footer-link {
      font-size: 13px;
      line-height: 17px;
    }

    .nd-footer-bottom-link,
    .nd-footer-copyright {
      font-size: 12px;
      line-height: 16px;
    }
  }


  /* Large Desktop Responsiveness - 1536px and above */
  @media (min-width: 1536px) {
    :root {
      --nd-spacing-xs: 12px;
      --nd-spacing-sm: 18px;
      --nd-spacing-md: 28px;
      --nd-spacing-lg: 42px;
      --nd-spacing-xl: 56px;
      --nd-spacing-2xl: 72px;
      --nd-spacing-3xl: 110px;
    }

    .nd-container {
      max-width: 1480px;
    }

    .nd-hero-title {
      font-size: 72px;
    }

    .nd-hero-subtitle {
      font-size: 20px;
      max-width: 680px;
    }

    .nd-feature-card {
      width: 500px;
    }

    .nd-program-card {
      width: 1340px;
      height: 600px;
    }

    .nd-program-title {
      font-size: 44px;
    }

    .nd-program-description {
      width: 500px;
      font-size: 22px;
      line-height: 26px;
    }

    .nd-showcase-title {
      font-size: 44px;
      line-height: 50px;
    }

    .nd-benefits-title {
      font-size: 52px;
    }

    .nd-benefits-grid {
      grid-template-columns: 493fr 341fr 493fr;
      max-width: 1320px;
    }

    .nd-reshaping-title {
      font-size: 60px;
    }

    .nd-faq-title > span {
      font-size: 44px;
      line-height: 50px;
    }

    .nd-final-cta-card {
      max-width: 1480px;
    }

    .nd-final-cta-title {
      font-size: 44px;
      line-height: 50px;
    }

    .nd-footer-container {
      max-width: 1520px;
    }

    .nd-footer-bottom {
      max-width: 1480px;
    }
  }

  /* Full HD - 1920px and above */
  @media (min-width: 1920px) {
    :root {
      --nd-spacing-xs: 14px;
      --nd-spacing-sm: 20px;
      --nd-spacing-md: 32px;
      --nd-spacing-lg: 48px;
      --nd-spacing-xl: 64px;
      --nd-spacing-2xl: 84px;
      --nd-spacing-3xl: 128px;
    }

    .nd-container {
      max-width: 1720px;
    }

    .nd-hero-title {
      font-size: 80px;
    }

    .nd-hero-subtitle {
      font-size: 22px;
      max-width: 750px;
    }

    .nd-btn {
      padding: 18px 32px;
      font-size: 18px;
    }

    .nd-btn-large {
      padding: 22px 42px;
      font-size: 20px;
    }

    .nd-feature-card {
      width: 560px;
      height: 360px;
    }

    .nd-feature-image {
      height: 280px;
    }

    .nd-feature-title {
      font-size: 28px;
    }

    .nd-feature-description {
      font-size: 18px;
      line-height: 22px;
      max-width: 290px;
    }

    .nd-program-card {
      width: 1540px;
      height: 680px;
      padding: 56px;
    }

    .nd-program-title {
      font-size: 48px;
    }

    .nd-program-description {
      width: 560px;
      font-size: 24px;
      line-height: 30px;
    }

    .nd-showcase-title {
      font-size: 48px;
      line-height: 56px;
    }

    .nd-showcase-img {
      max-width: 720px;
    }

    .nd-showcase-content > * {
      max-width: 560px;
    }

    .nd-benefits-title {
      font-size: 56px;
    }

    .nd-benefits-grid {
      grid-template-columns: 533fr 381fr 533fr;
      max-width: 1720px;
    }

    .nd-benefit-title {
      font-size: 28px;
      line-height: 34px;
    }

    .nd-benefit-description {
      font-size: 18px;
      line-height: 22px;
    }

    .nd-reshaping-title {
      font-size: 68px;
    }

    .nd-faq-title > span {
      font-size: 48px;
      line-height: 56px;
    }

    .nd-faq-question span {
      font-size: 28px;
      line-height: 34px;
    }

    .nd-faq-answer p {
      font-size: 18px;
      line-height: 22px;
    }

    .nd-final-cta-card {
      max-width: 1720px;
    }

    .nd-final-cta-title {
      font-size: 48px;
      line-height: 56px;
    }

    .nd-final-cta-description {
      font-size: 18px;
      line-height: 22px;
    }

    .nd-footer-heading {
      font-size: 44px;
      line-height: 50px;
    }

    .nd-footer-container {
      max-width: 1760px;
    }

    .nd-footer-bottom {
      max-width: 1720px;
    }

    .nd-footer-nav-column h3 {
      font-size: 28px;
      line-height: 34px;
    }

    .nd-footer-link {
      font-size: 18px;
      line-height: 22px;
    }

    .nd-footer-btn {
      padding: 18px 36px;
      font-size: 18px;
    }
  }

  /* 2K - 2560px and above */
  @media (min-width: 2560px) {
    :root {
      --nd-spacing-xs: 16px;
      --nd-spacing-sm: 24px;
      --nd-spacing-md: 40px;
      --nd-spacing-lg: 60px;
      --nd-spacing-xl: 80px;
      --nd-spacing-2xl: 104px;
      --nd-spacing-3xl: 160px;
    }

    .nd-container {
      max-width: 2280px;
    }

    .nd-hero-title {
      font-size: 96px;
    }

    .nd-hero-subtitle {
      font-size: 26px;
      max-width: 920px;
    }

    .nd-btn {
      padding: 22px 40px;
      font-size: 20px;
    }

    .nd-btn-large {
      padding: 26px 52px;
      font-size: 24px;
    }

    .nd-partner-img {
      max-width: 320px;
    }

    .nd-feature-card {
      width: 720px;
      height: 460px;
    }

    .nd-feature-image {
      height: 360px;
    }

    .nd-feature-title {
      font-size: 34px;
    }

    .nd-feature-description {
      font-size: 22px;
      line-height: 28px;
      max-width: 360px;
    }

    .nd-carousel-arrow {
      width: 56px;
      height: 56px;
    }

    .nd-program-card {
      width: 2040px;
      height: 880px;
      padding: 72px;
    }

    .nd-program-title {
      font-size: 60px;
    }

    .nd-program-description {
      width: 720px;
      font-size: 30px;
      line-height: 38px;
    }

    .nd-showcase-title {
      font-size: 60px;
      line-height: 70px;
    }

    .nd-showcase-img {
      max-width: 920px;
    }

    .nd-showcase-content > * {
      max-width: 720px;
    }

    .nd-showcase-feature {
      font-size: 20px;
      padding: 16px;
    }

    .nd-benefits-title {
      font-size: 68px;
    }

    .nd-benefits-grid {
      grid-template-columns: 693fr 501fr 693fr;
      max-width: 2280px;
    }

    .nd-benefit-card {
      padding: 40px 48px;
    }

    .nd-benefit-title {
      font-size: 34px;
      line-height: 42px;
    }

    .nd-benefit-description {
      font-size: 22px;
      line-height: 28px;
    }

    .nd-benefit-card-wide {
      height: 170px;
    }

    .nd-reshaping-title {
      font-size: 84px;
    }

    .nd-faq-title > span {
      font-size: 60px;
      line-height: 70px;
    }

    .nd-faq-question span {
      font-size: 34px;
      line-height: 42px;
    }

    .nd-faq-answer p {
      font-size: 22px;
      line-height: 28px;
      max-width: 820px;
    }

    .nd-faq-cta {
      max-width: 520px;
    }

    .nd-faq-cta-text {
      font-size: 30px;
    }

    .nd-faq-cta-subtext {
      font-size: 20px;
    }

    .nd-final-cta-card {
      max-width: 2280px;
      padding: 56px;
    }

    .nd-final-cta-title {
      font-size: 60px;
      line-height: 70px;
    }

    .nd-final-cta-description {
      font-size: 22px;
      line-height: 28px;
      max-width: 920px;
    }

    .nd-btn-cta {
      padding: 20px 56px;
      font-size: 22px;
    }

    .nd-footer-nav {
      padding: 128px 140px;
    }

    .nd-footer-heading {
      font-size: 56px;
      line-height: 64px;
    }

    .nd-footer-container {
      max-width: 2320px;
    }

    .nd-footer-bottom {
      max-width: 2280px;
    }

    .nd-footer-nav-column h3 {
      font-size: 34px;
      line-height: 42px;
    }

    .nd-footer-link {
      font-size: 22px;
      line-height: 28px;
    }

    .nd-footer-btn {
      padding: 22px 44px;
      font-size: 22px;
    }

    .nd-footer-bottom-link {
      font-size: 20px;
      line-height: 28px;
    }

    .nd-footer-copyright {
      font-size: 20px;
      line-height: 24px;
    }
  }

  /* 4K - 3840px and above */
  @media (min-width: 3840px) {
    :root {
      --nd-spacing-xs: 20px;
      --nd-spacing-sm: 32px;
      --nd-spacing-md: 56px;
      --nd-spacing-lg: 84px;
      --nd-spacing-xl: 112px;
      --nd-spacing-2xl: 144px;
      --nd-spacing-3xl: 224px;
    }

    .nd-container {
      max-width: 3400px;
    }

    .nd-hero-title {
      font-size: 128px;
    }

    .nd-hero-subtitle {
      font-size: 34px;
      max-width: 1280px;
    }

    .nd-btn {
      padding: 28px 56px;
      font-size: 28px;
      border-radius: 12px;
    }

    .nd-btn-large {
      padding: 36px 72px;
      font-size: 32px;
    }

    .nd-partner-img {
      max-width: 440px;
    }

    .nd-partners-section {
      height: 420px;
    }

    .nd-feature-card {
      width: 1040px;
      height: 660px;
    }

    .nd-feature-image {
      height: 520px;
    }

    .nd-feature-title {
      font-size: 48px;
    }

    .nd-feature-description {
      font-size: 30px;
      line-height: 38px;
      max-width: 520px;
    }

    .nd-carousel-arrow {
      width: 72px;
      height: 72px;
    }

    .nd-carousel-arrow svg {
      width: 36px;
      height: 36px;
    }

    .nd-program-card {
      width: 3000px;
      height: 1240px;
      padding: 104px;
    }

    .nd-program-title {
      font-size: 84px;
    }

    .nd-program-description {
      width: 1040px;
      font-size: 42px;
      line-height: 52px;
    }

    .nd-program-tag {
      padding: 12px 24px;
      font-size: 24px;
    }

    .nd-program-type {
      padding: 24px 32px;
      font-size: 20px;
    }

    .nd-showcase-badge {
      width: 120px;
      height: 120px;
    }

    .nd-showcase-badge svg {
      width: 140px;
      height: 140px;
    }

    .nd-showcase-title {
      font-size: 84px;
      line-height: 96px;
    }

    .nd-showcase-img {
      max-width: 1320px;
    }

    .nd-showcase-content > * {
      max-width: 1040px;
    }

    .nd-showcase-feature {
      font-size: 28px;
      padding: 20px;
    }

    .nd-showcase-feature svg {
      width: 36px;
      height: 36px;
    }

    .nd-benefits-title {
      font-size: 92px;
    }

    .nd-benefits-grid {
      grid-template-columns: 1013fr 701fr 1013fr;
      max-width: 3400px;
    }

    .nd-benefit-card {
      padding: 56px 68px;
      border-radius: 44px;
    }

    .nd-benefit-title {
      font-size: 48px;
      line-height: 58px;
      margin-bottom: 24px;
    }

    .nd-benefit-description {
      font-size: 30px;
      line-height: 38px;
    }

    .nd-benefit-card-wide {
      height: 240px;
    }

    .nd-reshaping-title {
      font-size: 112px;
    }

    .faq-left .faq-small-title {
      font-size: 24px;
      padding: 16px 24px;
    }

    .nd-faq-title > span {
      font-size: 84px;
      line-height: 96px;
    }

    .nd-faq-question {
      padding: 40px 56px;
    }

    .nd-faq-question span {
      font-size: 48px;
      line-height: 58px;
    }

    .nd-faq-icon {
      width: 64px;
      height: 64px;
    }

    .nd-faq-answer p {
      font-size: 30px;
      line-height: 38px;
      max-width: 1180px;
      padding-left: 56px;
    }

    .nd-faq-cta {
      max-width: 720px;
    }

    .nd-faq-cta-text {
      font-size: 42px;
    }

    .nd-faq-cta-subtext {
      font-size: 28px;
    }

    .nd-final-cta-section {
      min-height: 620px;
    }

    .nd-final-cta-card {
      max-width: 3400px;
      padding: 84px;
      border-radius: 36px;
    }

    .nd-final-cta-badge {
      padding: 18px 24px;
      font-size: 24px;
      margin-bottom: 52px;
    }

    .nd-final-cta-title {
      font-size: 84px;
      line-height: 96px;
    }

    .nd-final-cta-description {
      font-size: 30px;
      line-height: 38px;
      max-width: 1280px;
    }

    .nd-btn-cta {
      padding: 28px 80px;
      font-size: 30px;
      margin-top: 24px;
    }

    .nd-footer-nav {
      padding: 192px 200px;
      min-height: 680px;
    }

    .nd-footer-logo a img {
      width: 160px;
      height: 160px;
    }

    .nd-footer-heading {
      font-size: 78px;
      line-height: 88px;
    }

    .nd-footer-contacts .nd-footer-contact-card p {
      font-size: 20px;
      line-height: 26px;
    }

    .nd-footer-contacts .nd-footer-contact-card p:first-child {
      width: 140px;
    }

    .nd-footer-social-btn {
      width: 68px;
      height: 68px;
    }

    .nd-footer-social-btn svg {
      width: 36px;
      height: 36px;
    }

    .nd-footer-container {
      max-width: 3480px;
    }

    .nd-footer-right {
      height: 480px;
    }

    .nd-footer-nav-column {
      max-width: 260px;
    }

    .nd-footer-nav-column h3 {
      font-size: 48px;
      line-height: 58px;
    }

    .nd-footer-link {
      font-size: 30px;
      line-height: 38px;
    }

    .nd-footer-btn {
      padding: 28px 60px;
      font-size: 30px;
      border-radius: 18px;
    }

    .nd-footer-bottom {
      max-width: 3400px;
    }

    .nd-footer-bottom-link {
      font-size: 28px;
      line-height: 36px;
    }

    .nd-footer-copyright {
      font-size: 28px;
      line-height: 34px;
    }
  }
