.ns-section {
  position: relative;
}

.ns-section .lead {
  color: var(--ns-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem) !important;
}

.ns-eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--ns-primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ns-hero,
.ns-hero-slider,
.ns-hero-slider > .swiper,
.ns-hero-slider .swiper-wrapper,
.ns-hero-slide {
  min-height: clamp(32rem, 72vh, 47.5rem);
}

.ns-hero {
  overflow: hidden;
  background: var(--ns-dark);
}

.ns-hero-slide {
  position: relative;
  display: flex;
  align-items: center;
}

.ns-hero-image,
.ns-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ns-hero .swiper .ns-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ns-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 24, 35, 0.88) 0%, rgba(11, 24, 35, 0.67) 48%, rgba(11, 24, 35, 0.16) 100%),
    linear-gradient(0deg, rgba(11, 24, 35, 0.25), transparent 35%);
}

.ns-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.ns-hero .display-1 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 5.2vw, 4.65rem);
  line-height: 1.03;
  text-wrap: balance;
}

.ns-hero .lead {
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem) !important;
}

.ns-hero .swiper-controls {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 1.7rem;
  left: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.ns-hero .swiper-navigation {
  display: none;
}

.ns-hero .swiper-pagination {
  position: static;
  pointer-events: auto;
}

.ns-hero .swiper-pagination-bullet {
  background: #fff;
}

.ns-content-section {
  background:
    radial-gradient(circle at 85% 25%, rgba(66, 181, 204, 0.08), transparent 22rem),
    #fff;
}

.ns-richtext {
  color: var(--ns-muted);
}

.ns-richtext > :last-child {
  margin-bottom: 0;
}

.ns-steps-section {
  background: var(--ns-surface-soft);
}

.ns-step-card {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius);
  box-shadow: 0 0.6rem 1.8rem rgba(27, 50, 70, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ns-step-card:hover {
  box-shadow: var(--ns-shadow);
  transform: translateY(-0.3rem);
}

.ns-step-number {
  display: inline-grid;
  width: 3.3rem;
  height: 3.3rem;
  color: #132230;
  background: var(--ns-accent);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
  place-items: center;
}

.ns-step-card p {
  color: var(--ns-muted);
}

.ns-gallery-section {
  background: #fff;
}

.ns-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ns-dark);
  border-radius: var(--ns-radius);
  box-shadow: 0 0.5rem 1.5rem rgba(20, 36, 52, 0.08);
  aspect-ratio: 1;
}

.ns-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.ns-gallery-card:hover img,
.ns-gallery-card:focus img {
  opacity: 0.72;
  transform: scale(1.045);
}

.ns-gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  color: #142330;
  background: var(--ns-accent);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 400;
  opacity: 0;
  transform: translate(-50%, -35%);
  transition: 0.25s ease;
  place-items: center;
}

.ns-gallery-card:hover .ns-gallery-zoom,
.ns-gallery-card:focus .ns-gallery-zoom {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.ns-services-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(139, 212, 73, 0.1), transparent 24rem),
    var(--ns-surface-soft);
}

.ns-service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ns-border);
  border-bottom: 0.22rem solid var(--ns-accent);
  border-radius: var(--ns-radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ns-service-card:hover {
  box-shadow: 0 1.1rem 2.7rem rgba(20, 36, 52, 0.13) !important;
  transform: translateY(-0.3rem);
}

.ns-service-card .card-body {
  padding: 1.7rem;
}

.ns-service-card p {
  color: var(--ns-muted);
}

.ns-service-card .card-img-top {
  aspect-ratio: 1.35;
  object-fit: cover;
}

.ns-service-icon {
  width: 3.2rem;
  height: 3.2rem;
}

.ns-service-icon .lineal-stroke {
  fill: var(--ns-dark);
}

.ns-service-icon .lineal-fill {
  fill: var(--ns-accent);
}

.ns-faq-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 212, 73, 0.1), transparent 24rem),
    var(--ns-surface-soft);
}

.ns-faq-grid {
  align-items: flex-start;
}

.ns-faq-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: 1rem;
  box-shadow: 0 0.4rem 1.3rem rgba(25, 45, 62, 0.045);
}

.ns-faq-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  color: var(--ns-ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.ns-faq-button:hover,
.ns-faq-button:focus {
  color: var(--ns-primary-dark);
}

.ns-faq-icon {
  position: relative;
  flex: 0 0 1.4rem;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--ns-primary-dark);
}

.ns-faq-icon::before,
.ns-faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 0.11rem;
  content: "";
  background: currentColor;
  border-radius: 1rem;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.ns-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ns-faq-button:not(.collapsed) .ns-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.ns-faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--ns-muted);
}

/* The first migration deliberately reuses the existing, proven form backend. */
.ns-site .order-form-box {
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius);
  box-shadow: var(--ns-shadow);
}

.ns-site .order-form-title {
  color: var(--ns-ink);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.ns-site .order-form-subtitle,
.ns-site .order-form-help {
  color: var(--ns-muted);
}

.ns-site .order-form-control {
  border-color: #d8e1e8;
  border-radius: 0.75rem;
}

.ns-site .order-form-control:focus {
  border-color: var(--ns-primary);
  box-shadow: 0 0 0 0.2rem rgba(66, 181, 204, 0.14);
}

.ns-site .order-form-button {
  min-width: 13rem;
  border-radius: 10rem;
}

/* Sandbox-inspired component variants selected by each domain profile. */
.ns-hero--split-product,
.ns-hero--split-product .ns-hero-slider,
.ns-hero--split-product .ns-hero-slider > .swiper,
.ns-hero--split-product .ns-hero-slider .swiper-wrapper,
.ns-hero--split-product .ns-hero-slide {
  min-height: clamp(39rem, 72vh, 46rem);
}

.ns-hero--split-product {
  position: relative;
  background:
    radial-gradient(circle at 88% 18%, rgba(139, 212, 73, 0.2), transparent 19rem),
    linear-gradient(135deg, #f3f9fa 0%, #f9fbff 58%, #eef7f2 100%);
}

.ns-hero--split-product::before {
  position: absolute;
  top: 4rem;
  right: 5%;
  width: 10rem;
  height: 10rem;
  content: "";
  background-image: radial-gradient(rgba(67, 182, 205, 0.35) 1.5px, transparent 1.5px);
  background-size: 0.9rem 0.9rem;
  opacity: 0.7;
}

.ns-hero--split-product .ns-hero-slide {
  overflow: hidden;
}

.ns-hero--split-product .ns-hero-image {
  z-index: 1;
  top: 50%;
  right: max(2rem, calc((100vw - 1320px) / 2));
  bottom: auto;
  left: auto;
  width: min(41vw, 32rem) !important;
  height: min(68%, 30rem) !important;
  border-radius: 1.5rem;
  box-shadow: 0 1.5rem 4rem rgba(24, 37, 50, 0.18);
  transform: translateY(-50%);
}

.ns-hero--split-product .ns-hero-overlay {
  display: none;
}

.ns-hero--split-product .ns-hero-content {
  padding-top: 6rem;
  padding-bottom: 7rem;
}

.ns-hero--split-product .ns-hero-content .row {
  align-items: center;
}

.ns-hero--split-product .display-1 {
  max-width: 11ch;
  color: var(--ns-ink) !important;
  font-size: clamp(3rem, 4vw, 4.25rem);
}

.ns-hero--split-product .lead {
  max-width: 28rem;
  color: var(--ns-muted) !important;
}

.ns-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  color: var(--ns-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ns-hero-kicker::before {
  width: 2rem;
  height: 0.16rem;
  content: "";
  background: var(--ns-accent);
  border-radius: 5rem;
}

.ns-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-top: 1.7rem;
  color: var(--ns-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.ns-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ns-hero-trust span::before {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  content: "✓";
  color: #fff;
  background: var(--ns-primary);
  border-radius: 50%;
  font-size: 0.68rem;
  place-items: center;
}

.ns-hero--split-product .swiper-controls {
  bottom: 2.2rem;
  justify-content: flex-start;
  width: min(100% - 3rem, 1320px);
  margin-right: auto;
  margin-left: auto;
}

.ns-hero--split-product .swiper-pagination-bullet {
  background: var(--ns-primary);
}

.ns-content-section--editorial-intro {
  position: relative;
  padding: clamp(1rem, 2.5vw, 2.5rem) 0;
  overflow: hidden;
  background: #fff;
}

.ns-content-section--editorial-intro .container {
  position: relative;
  width: calc(100% - 2rem);
  padding-right: clamp(1.5rem, 4vw, 4.5rem);
  padding-left: clamp(1.5rem, 4vw, 4.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(139, 212, 73, 0.16), transparent 18rem),
    linear-gradient(135deg, #f6fbfc, #f9fbff 58%, #f3f8f3);
  border: 1px solid rgba(67, 182, 205, 0.13);
  border-radius: clamp(1.35rem, 3vw, 2.25rem);
}

.ns-content-section--editorial-intro .container::after {
  position: absolute;
  right: 2.5rem;
  bottom: 2rem;
  width: 7rem;
  height: 7rem;
  content: "";
  background-image: radial-gradient(rgba(67, 182, 205, 0.32) 1.4px, transparent 1.4px);
  background-size: 0.8rem 0.8rem;
  opacity: 0.55;
}

.ns-content-section--editorial-intro .row {
  position: relative;
  z-index: 1;
}

.ns-content-section--editorial-intro .display-4 {
  max-width: 12ch;
}

.ns-editorial-panel {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(circle at 95% 5%, rgba(139, 212, 73, 0.18), transparent 13rem),
    var(--ns-surface-soft);
  border: 1px solid var(--ns-border);
  border-radius: 1.5rem;
}

.ns-editorial-panel::before {
  position: absolute;
  top: -0.65rem;
  left: 2.2rem;
  width: 4.5rem;
  height: 0.3rem;
  content: "";
  background: var(--ns-accent);
  border-radius: 5rem;
}

.ns-editorial-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.ns-editorial-panel li {
  position: relative;
  padding-left: 1.7rem;
}

.ns-editorial-panel li::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  content: "✓";
  color: #fff;
  background: var(--ns-primary);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  place-items: center;
}

.ns-services-section--feature-grid {
  background:
    radial-gradient(circle at 8% 18%, rgba(67, 182, 205, 0.1), transparent 20rem),
    linear-gradient(180deg, #fff, #f7fbfc);
}

.ns-feature-item {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--ns-border);
  border-radius: 1.35rem;
  box-shadow: 0 1rem 2.8rem rgba(20, 36, 52, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ns-feature-item::after {
  position: absolute;
  top: -3.4rem;
  right: -3.4rem;
  width: 8rem;
  height: 8rem;
  content: "";
  background: var(--ns-primary);
  border-radius: 50%;
  opacity: 0.055;
}

.ns-feature-item:hover {
  box-shadow: 0 1.4rem 3.5rem rgba(20, 36, 52, 0.13);
  transform: translateY(-0.35rem);
}

.ns-feature-icon {
  display: inline-grid;
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.6rem;
  background: rgba(67, 182, 205, 0.12);
  border-radius: 1rem;
  place-items: center;
}

.ns-services-section--feature-grid .col-md-6:nth-child(2) .ns-feature-icon {
  background: rgba(139, 212, 73, 0.14);
}

.ns-services-section--feature-grid .col-md-6:nth-child(3) .ns-feature-icon {
  background: rgba(242, 172, 69, 0.14);
}

.ns-services-section--feature-grid .col-md-6:nth-child(4) .ns-feature-icon {
  background: rgba(122, 103, 238, 0.11);
}

.ns-feature-icon .ns-service-icon {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0 !important;
}

.ns-feature-item p {
  color: var(--ns-muted);
}

.ns-steps-section--process-line {
  background:
    linear-gradient(180deg, rgba(242, 248, 249, 0.65), rgba(242, 248, 249, 0.95));
}

.ns-steps-section--process-line .ns-steps {
  position: relative;
}

.ns-steps-section--process-line .ns-steps::before {
  position: absolute;
  z-index: 0;
  top: 1.7rem;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: rgba(67, 182, 205, 0.22);
}

.ns-steps-section--process-line .ns-step-card {
  position: relative;
  z-index: 1;
  padding: 0 1rem 0 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.ns-steps-section--process-line .ns-step-card:hover {
  box-shadow: none;
  transform: none;
}

.ns-steps-section--process-line .ns-step-number {
  color: var(--ns-primary-dark);
  background: #fff;
  border: 1px solid rgba(67, 182, 205, 0.23);
  box-shadow: 0 0.55rem 1.3rem rgba(35, 141, 164, 0.1);
}

.ns-steps-section--process-line .col-md-6:nth-child(2) .ns-step-number {
  color: #122331;
  background: var(--ns-accent);
  border-color: var(--ns-accent);
}

.ns-gallery-section--portfolio-grid {
  background:
    radial-gradient(circle at 92% 8%, rgba(139, 212, 73, 0.12), transparent 22rem),
    linear-gradient(180deg, #fff, #f7fbfc);
}

.ns-gallery-section--portfolio-grid .lead {
  margin-bottom: 2.1rem !important;
}

.ns-gallery-section--portfolio-grid .ns-portfolio-grid {
  margin-top: 2.2rem;
}

.ns-gallery-section--portfolio-grid .ns-gallery-card {
  aspect-ratio: 4 / 3;
  border-radius: 1.25rem;
  box-shadow: none;
}

.ns-gallery-section--portfolio-grid .ns-project {
  padding: 0.65rem 0.65rem 0;
  background: #fff;
  border: 1px solid rgba(20, 36, 52, 0.08);
  border-radius: 1.65rem;
  box-shadow: 0 1rem 2.8rem rgba(20, 36, 52, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ns-gallery-section--portfolio-grid .ns-project:hover {
  box-shadow: 0 1.5rem 3.7rem rgba(20, 36, 52, 0.14);
  transform: translateY(-0.35rem);
}

.ns-gallery-section--portfolio-grid .ns-gallery-card img {
  transition: transform 0.45s ease;
}

.ns-gallery-section--portfolio-grid .ns-project:hover .ns-gallery-card img {
  transform: scale(1.035);
}

.ns-project-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.35rem 1.05rem;
}

.ns-project-caption span {
  color: var(--ns-primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ns-project-caption strong {
  color: var(--ns-ink);
  font-size: 0.9rem;
}

.ns-faq-section--split-accordion {
  background:
    radial-gradient(circle at 4% 20%, rgba(139, 212, 73, 0.12), transparent 20rem),
    var(--ns-surface-soft);
}

.ns-faq-section--split-accordion .ns-faq-intro {
  position: sticky;
  top: calc(var(--ns-header-height) + 2rem);
}

.ns-faq-section--split-accordion .ns-faq-card {
  border: 0;
  box-shadow: 0 0.6rem 1.8rem rgba(25, 45, 62, 0.07);
}

.ns-faq-section--split-accordion .ns-faq-button {
  padding: 1.4rem 1.6rem;
}

.ns-faq-section--split-accordion .ns-faq-answer {
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

.ns-profile-3dobeski #obrazec {
  background:
    radial-gradient(circle at 8% 10%, rgba(67, 182, 205, 0.24), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(139, 212, 73, 0.15), transparent 23rem),
    linear-gradient(145deg, var(--ns-dark), var(--ns-dark-2)) !important;
}

.ns-profile-3dobeski #obrazec .container {
  padding-top: clamp(5rem, 8vw, 8rem) !important;
  padding-bottom: clamp(5rem, 8vw, 8rem) !important;
}

.ns-profile-3dobeski .order-form-box {
  display: grid;
  grid-template-areas:
    "header form"
    "header help";
  grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1.5fr);
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 1.5rem;
  box-shadow: 0 1.5rem 4rem rgba(20, 36, 52, 0.12);
}

.ns-profile-3dobeski .order-form-header {
  grid-area: header;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 4rem);
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 20% 10%, rgba(139, 212, 73, 0.23), transparent 13rem),
    linear-gradient(145deg, var(--ns-dark), var(--ns-dark-2));
  text-align: left !important;
}

.ns-profile-3dobeski .order-form-title {
  color: #fff;
}

.ns-profile-3dobeski .order-form-header .order-form-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.ns-profile-3dobeski .order-form {
  grid-area: form;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.6rem, 5vw, 3.5rem) 1.5rem;
}

.ns-profile-3dobeski .order-form-box > .order-form-help {
  grid-area: help;
  margin: 0 !important;
  padding: 0 clamp(1.6rem, 5vw, 3.5rem) 2.4rem;
  text-align: left !important;
}

.ns-profile-3dobeski .order-form-control {
  min-height: 3.25rem;
  background-color: #fbfdfe;
}

@media (max-width: 767.98px) {
  .ns-hero,
  .ns-hero-slider,
  .ns-hero-slider > .swiper,
  .ns-hero-slider .swiper-wrapper,
  .ns-hero-slide {
    min-height: 35rem;
  }

  .ns-hero-overlay {
    background: linear-gradient(90deg, rgba(11, 24, 35, 0.86), rgba(11, 24, 35, 0.46));
  }

  .ns-hero-content {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .ns-gallery-zoom {
    display: none;
  }

  .ns-step-card {
    padding: 1.5rem;
  }

  .ns-service-card .card-body {
    padding: 1.45rem;
  }
}

@media (max-width: 1199.98px) {
  .ns-steps-section--process-line .ns-steps::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .ns-hero--split-product,
  .ns-hero--split-product .ns-hero-slider,
  .ns-hero--split-product .ns-hero-slider > .swiper,
  .ns-hero--split-product .ns-hero-slider .swiper-wrapper,
  .ns-hero--split-product .ns-hero-slide {
    min-height: 52rem;
  }

  .ns-hero--split-product .ns-hero-slide {
    display: block;
  }

  .ns-hero--split-product .ns-hero-image {
    top: 1.5rem;
    right: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3rem) !important;
    height: 21rem !important;
    transform: none;
  }

  .ns-hero--split-product .ns-hero-content {
    padding-top: 25rem;
    padding-bottom: 5rem;
  }

  .ns-hero--split-product .swiper-controls {
    bottom: 1.5rem;
    width: calc(100% - 3rem);
  }

  .ns-faq-section--split-accordion .ns-faq-intro {
    position: static;
  }

  .ns-profile-3dobeski .order-form-box {
    grid-template-areas:
      "header"
      "form"
      "help";
    grid-template-columns: minmax(0, 1fr);
  }

  .ns-profile-3dobeski .order-form-header {
    min-height: 18rem;
  }
}

@media (max-width: 767.98px) {
  .ns-hero--split-product,
  .ns-hero--split-product .ns-hero-slider,
  .ns-hero--split-product .ns-hero-slider > .swiper,
  .ns-hero--split-product .ns-hero-slider .swiper-wrapper,
  .ns-hero--split-product .ns-hero-slide {
    min-height: 54rem;
  }

  .ns-hero--split-product .ns-hero-image {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    width: calc(100% - 2rem) !important;
    height: 18rem !important;
    border-radius: 1rem;
  }

  .ns-hero--split-product .ns-hero-content {
    padding-top: 21.5rem;
    padding-bottom: 5rem;
  }

  .ns-hero--split-product .display-1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .ns-hero--split-product .swiper-controls {
    width: calc(100% - 2rem);
  }

  .ns-hero-trust {
    display: grid;
    gap: 0.6rem;
  }

  .ns-editorial-panel ul {
    grid-template-columns: 1fr;
  }

  .ns-feature-item {
    padding-right: 0;
  }

  .ns-steps-section--process-line .ns-step-card {
    padding: 0;
  }

  .ns-gallery-section--portfolio-grid .ns-gallery-card,
  .ns-gallery-section--portfolio-grid .col-lg-4:nth-child(2) .ns-gallery-card,
  .ns-gallery-section--portfolio-grid .col-lg-4:nth-child(5) .ns-gallery-card {
    aspect-ratio: 4 / 3;
  }

  .ns-profile-3dobeski .order-form-header {
    min-height: 0;
    padding: 2.2rem 1.5rem;
  }
}

/* 3Dizdelki and reusable industrial Sandbox sections. */
.ns-hero--file-review {
  min-height: clamp(40rem, 78vh, 55rem);
}

.ns-hero--file-review .ns-hero-image {
  object-fit: cover;
}

.ns-hero--file-review .ns-hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 12, 15, 0.95) 0%, rgba(9, 12, 15, 0.78) 46%, rgba(9, 12, 15, 0.36) 100%),
    linear-gradient(0deg, rgba(9, 12, 15, 0.44), transparent 48%);
}

.ns-file-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  box-sizing: border-box;
  min-height: inherit;
  align-items: center;
  padding-top: clamp(4rem, 7vh, 6rem);
  padding-bottom: clamp(4rem, 7vh, 6rem);
}

.ns-file-hero-grid {
  display: grid;
  width: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.62fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
}

.ns-file-hero-copy .display-1 {
  max-width: 12ch;
}

.ns-file-hero-copy .lead {
  max-width: 43rem;
}

.ns-file-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 1.6rem;
}

.ns-file-hero-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.ns-file-hero-link:hover,
.ns-file-hero-link:focus {
  color: #fff;
  border-bottom-color: #fff;
}

.ns-file-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
  margin: 1.8rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.ns-file-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ns-file-hero-trust span {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  background: var(--ns-primary);
  border-radius: 50%;
  font-size: 0.68rem;
  place-items: center;
}

.ns-file-status {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  background: rgba(18, 22, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.7rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(1rem);
}

.ns-file-status-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ns-file-status-head > span {
  width: 0.62rem;
  height: 0.62rem;
  background: var(--ns-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0.3rem rgba(243, 111, 53, 0.15);
}

.ns-file-formats {
  display: flex;
  gap: 0.55rem;
  margin: 1.6rem 0;
}

.ns-file-formats span {
  padding: 0.4rem 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.ns-file-status-steps {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ns-file-status-steps li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  gap: 0.75rem;
}

.ns-file-status-steps b {
  color: var(--ns-primary);
  font-size: 0.75rem;
}

.ns-file-status-steps span {
  font-size: 0.92rem;
  font-weight: 700;
}

.ns-file-status > p {
  margin: 1.5rem 0 0;
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.ns-signal-strip {
  color: #fff;
  background: var(--ns-primary);
}

.ns-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ns-signal-grid > div {
  padding: 1.7rem clamp(1rem, 2.5vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.ns-signal-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ns-signal-grid strong,
.ns-signal-grid span {
  display: block;
}

.ns-signal-grid strong {
  font-size: 1.02rem;
  font-weight: 800;
}

.ns-signal-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.ns-showcase-section {
  background: #fff;
}

.ns-showcase-media {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.85fr);
  gap: 1.25rem;
}

.ns-showcase-card {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  background: var(--ns-dark);
  border-radius: var(--ns-radius);
}

.ns-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ns-showcase-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8, 11, 14, 0.9), rgba(8, 11, 14, 0.04) 68%);
}

.ns-showcase-card > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.76);
}

.ns-showcase-card > div > span {
  color: var(--ns-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ns-showcase-card h3 {
  margin: 0.45rem 0;
  color: #fff;
}

.ns-showcase-card p {
  margin: 0;
}

.ns-use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.25rem;
  border-top: 1px solid var(--ns-border);
  border-bottom: 1px solid var(--ns-border);
}

.ns-use-case-grid article {
  padding: 2rem 1.5rem;
  border-left: 1px solid var(--ns-border);
}

.ns-use-case-grid article:last-child {
  border-right: 1px solid var(--ns-border);
}

.ns-use-case-grid b {
  color: var(--ns-primary);
  font-size: 0.72rem;
}

.ns-use-case-grid p {
  margin: 0;
  color: var(--ns-muted);
  font-size: 0.9rem;
}

.ns-pricing-section--materials-grid {
  background: var(--ns-dark);
}

.ns-pricing-section--materials-grid h2,
.ns-pricing-section--materials-grid .lead {
  color: #fff;
}

.ns-pricing-section--materials-grid .lead {
  color: rgba(255, 255, 255, 0.65);
}

.ns-materials-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ns-material-card {
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  padding: 2rem 1.35rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.ns-material-card:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.ns-material-code {
  display: inline-grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.8rem;
  color: #fff;
  background: var(--ns-primary);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 800;
  place-items: center;
}

.ns-material-card h3 {
  color: #fff;
}

.ns-material-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.ns-material-card small {
  order: 4;
  margin-top: auto;
  color: var(--ns-primary);
  font-weight: 800;
}

.ns-pricing-section--quote-basis {
  background: #fff;
}

.ns-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.78fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.ns-quote-richtext ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.ns-quote-richtext li {
  position: relative;
  padding-left: 1.7rem;
}

.ns-quote-richtext li::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  color: #fff;
  background: var(--ns-primary);
  border-radius: 50%;
  content: "✓";
  font-size: 0.62rem;
  place-items: center;
}

.ns-price-panel {
  overflow: hidden;
  color: #fff;
  background: var(--ns-dark);
  border-radius: var(--ns-radius);
  box-shadow: var(--ns-shadow);
}

.ns-price-panel-head {
  padding: 1.7rem 2rem;
  background: var(--ns-primary);
}

.ns-price-panel-head span,
.ns-price-panel-head strong {
  display: block;
}

.ns-price-panel-head span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ns-price-panel dl {
  margin: 0;
  padding: 0 2rem;
}

.ns-price-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ns-price-panel dt {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.ns-price-panel dd {
  margin: 0;
  color: #fff;
  font-weight: 800;
  text-align: right;
}

.ns-price-panel dd small {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.ns-price-panel-note {
  margin: 0;
  padding: 1.6rem 2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.ns-prep-section {
  background: var(--ns-surface-soft);
}

.ns-prep-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.ns-prep-list {
  border-top: 1px solid var(--ns-border);
}

.ns-prep-list > div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ns-border);
}

.ns-prep-list strong {
  color: var(--ns-primary-dark);
}

.ns-prep-list span {
  color: var(--ns-muted);
}

.ns-technical-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--ns-primary) 12%, transparent), transparent 22rem),
    #fff;
}

.ns-technical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.ns-technical-card {
  position: relative;
  min-height: 20rem;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 248, 0.96));
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius);
  box-shadow: 0 1rem 2.8rem rgba(20, 24, 28, 0.08);
}

.ns-technical-card::after {
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 11rem;
  height: 11rem;
  content: "";
  background: var(--ns-primary);
  border-radius: 50%;
  opacity: 0.065;
}

.ns-technical-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.6rem;
}

.ns-technical-card-head span {
  color: var(--ns-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ns-technical-card-head b {
  padding: 0.4rem 0.65rem;
  color: var(--ns-primary-dark);
  background: color-mix(in srgb, var(--ns-primary) 10%, #fff);
  border-radius: 10rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ns-technical-card h3 {
  max-width: 18ch;
}

.ns-technical-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ns-muted);
}

.ns-form-section--technical-review {
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(243, 111, 53, 0.15), transparent 25rem),
    var(--ns-dark);
}

.ns-form-section--split-inquiry {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 6% 8%, rgba(67, 182, 205, 0.24), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(139, 212, 73, 0.15), transparent 23rem),
    linear-gradient(145deg, var(--ns-dark), var(--ns-dark-2));
}

.ns-form-section--split-inquiry::before {
  position: absolute;
  top: 3rem;
  left: max(1rem, calc((100vw - 1320px) / 2));
  width: 8rem;
  height: 8rem;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.3px, transparent 1.3px);
  background-size: 0.8rem 0.8rem;
  opacity: 0.55;
}

.ns-form-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.ns-form-layout--split-inquiry {
  grid-template-columns: minmax(19rem, 0.82fr) minmax(0, 1.18fr);
}

.ns-form-intro h2 {
  color: #fff;
}

.ns-form-intro .lead {
  color: rgba(255, 255, 255, 0.68);
}

.ns-form-assurance {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border-left: 0.2rem solid var(--ns-primary);
}

.ns-form-assurance > span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  background: var(--ns-primary);
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.ns-form-assurance p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.ns-form-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.ns-form-flow li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.ns-form-flow span {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  color: var(--ns-primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  place-items: center;
}

.ns-inquiry-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.ns-inquiry-points > div {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ns-inquiry-points b {
  color: var(--ns-accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.ns-inquiry-points strong {
  color: #fff;
}

.ns-form-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.ns-form-contact a {
  display: block;
  padding: 0.85rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  text-decoration: none;
}

.ns-form-contact small,
.ns-form-contact strong {
  display: block;
}

.ns-form-contact small {
  color: rgba(255, 255, 255, 0.5);
}

.ns-form-contact strong {
  overflow-wrap: anywhere;
}

.ns-form-layout--technical-review .ns-form-contact {
  grid-template-columns: 1fr;
}

.ns-form-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  color: var(--ns-ink);
  background: #fff;
  border-radius: var(--ns-radius);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.26);
}

.ns-form-card::before {
  position: absolute;
  top: -0.28rem;
  right: 2rem;
  left: 2rem;
  height: 0.28rem;
  content: "";
  background: linear-gradient(90deg, var(--ns-primary), var(--ns-accent));
  border-radius: 1rem;
}

.ns-form-field > label:not(.ns-form-consent):not(.ns-form-file) {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ns-ink);
  font-size: 0.82rem;
  font-weight: 750;
}

.ns-form-field > label > span {
  color: var(--ns-primary-dark);
}

.ns-form-field input:not([type="checkbox"]):not([type="file"]),
.ns-form-field textarea,
.ns-form-field select {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.72rem 0.85rem;
  color: var(--ns-ink);
  background: #fafafa;
  border: 1px solid #d9dcde;
  border-radius: 0.35rem;
}

.ns-form-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.ns-form-field input:focus,
.ns-form-field textarea:focus,
.ns-form-field select:focus {
  border-color: var(--ns-primary);
  box-shadow: 0 0 0 0.2rem rgba(243, 111, 53, 0.12);
  outline: 0;
}

.ns-form-help {
  display: block;
  margin-top: 0.35rem;
  color: var(--ns-muted);
  font-size: 0.75rem;
}

.ns-form-consent {
  display: flex;
  gap: 0.75rem;
  color: var(--ns-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.ns-form-consent input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.18rem;
}

.ns-form-file {
  display: grid;
  min-height: 11rem;
  cursor: pointer;
  border: 1px dashed #c6cace;
  border-radius: 0.45rem;
  background: #fafafa;
  text-align: center;
  place-items: center;
  align-content: center;
  padding: 1.25rem;
}

.ns-form-file input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.ns-form-file-icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.55rem;
  color: #fff;
  background: var(--ns-primary);
  border-radius: 50%;
  place-items: center;
}

.ns-form-file small,
.ns-form-file output {
  display: block;
  color: var(--ns-muted);
  font-size: 0.74rem;
}

.ns-form-file output {
  margin-top: 0.45rem;
  color: var(--ns-primary-dark);
  font-weight: 700;
}

.ns-form-submit {
  min-height: 3.2rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.ns-form-note {
  margin-top: 1.2rem;
  color: var(--ns-muted);
  font-size: 0.75rem;
}

.ns-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.ns-cta-section--industrial {
  color: #fff;
  background: var(--ns-primary);
}

.ns-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ns-cta-inner > div > span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ns-cta-inner h2 {
  color: #fff;
}

.ns-cta-inner p {
  color: rgba(255, 255, 255, 0.75);
}

.ns-cta-inner .btn {
  flex: 0 0 auto;
  color: var(--ns-dark);
  border: 0;
}

.ns-mobile-cta {
  position: fixed;
  z-index: 1018;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 0.9rem 1rem;
  color: #fff;
  background: var(--ns-primary);
  box-shadow: 0 -0.5rem 1.5rem rgba(0, 0, 0, 0.16);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.ns-mobile-cta:hover,
.ns-mobile-cta:focus {
  color: #fff;
}

@media (min-width: 1200px) {
  .ns-services-section--feature-grid .col-xl-3:nth-child(even) {
    transform: translateY(1.5rem);
  }

  .ns-form-layout--technical-review .ns-form-intro,
  .ns-form-layout--split-inquiry .ns-form-intro {
    position: sticky;
    top: calc(var(--ns-header-height) + 2rem);
  }
}

@media (max-width: 991.98px) {
  .ns-file-hero-grid,
  .ns-quote-layout,
  .ns-prep-layout,
  .ns-form-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .ns-form-intro,
  .ns-form-card {
    min-width: 0;
  }

  .ns-file-status {
    max-width: 35rem;
  }

  .ns-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ns-signal-grid > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ns-signal-grid > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ns-showcase-media {
    grid-template-columns: 1fr;
  }

  .ns-showcase-card {
    min-height: 26rem;
  }

  .ns-technical-grid {
    grid-template-columns: 1fr;
  }

  .ns-use-case-grid,
  .ns-materials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ns-material-card:nth-child(odd),
  .ns-use-case-grid article:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 767.98px) {
  .ns-hero--file-review {
    min-height: 0;
  }

  .ns-hero--file-review .ns-hero-overlay {
    background: linear-gradient(90deg, rgba(9, 12, 15, 0.94), rgba(9, 12, 15, 0.64));
  }

  .ns-file-hero-content {
    min-height: 0;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .ns-file-hero-grid {
    gap: 2.2rem;
  }

  .ns-file-status {
    display: none;
  }

  .ns-file-hero-trust {
    display: grid;
  }

  .ns-showcase-card {
    min-height: 23rem;
  }

  .ns-use-case-grid,
  .ns-materials-grid {
    grid-template-columns: 1fr;
  }

  .ns-use-case-grid article,
  .ns-use-case-grid article:last-child,
  .ns-material-card,
  .ns-material-card:last-child {
    border-right: 1px solid var(--ns-border);
    border-bottom: 1px solid var(--ns-border);
  }

  .ns-material-card,
  .ns-material-card:last-child {
    min-height: 17rem;
    border-color: rgba(255, 255, 255, 0.14);
  }

  .ns-prep-list > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .ns-form-flow {
    grid-template-columns: 1fr;
  }

  .ns-form-contact {
    grid-template-columns: 1fr;
  }

  .ns-form-card {
    padding: 1.25rem;
  }

  .ns-form-submit {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .ns-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ns-mobile-cta {
    display: block;
  }

  body.ns-site {
    padding-bottom: 3.35rem;
  }
}
