@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700&display=swap");

:root{
  --bg0:#080c14;
  --bg1:#10121c;
  --text:#f2f6ff;
  --muted:rgba(210,220,240,.80);
  --line:rgba(255,255,255,.12);
  --glass:rgba(255,255,255,.06);
  --blue:#2a8cff;
  --blue2:#1e5eff;
}

*{ box-sizing: border-box; }
body{
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h1{
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  letter-spacing: -0.3px;
  text-align: center;
}

.ns-header{
  min-height: 82vh;
  background: radial-gradient(900px 520px at 65% 20%, rgba(42,140,255,.22), transparent 60%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  overflow: visible;
  position: relative;
  padding: 0 0 48px;
}

.ns-nav{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 1000;

  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10,16,25,.98), rgba(7,11,18,.98));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}

.ns-brand{
  display:flex;
  align-items:center;
  overflow: visible;
}
/*.ns-logo{ height: auto; width: 200px; display:block;}*/
.ns-logo {
  height: 100px;
  width: auto;
  display: block;
  transform: scale(3);
  transform-origin: left center;
  background-color: transparent;  

}

.ns-menu{
  list-style:none;
  display:flex;
  gap: 28px;
  padding:0;
  margin:0;
}

.ns-menu-toggle{
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  width: 44px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.ns-menu-toggle span{
  width: 18px;
  height: 2px;
  background: rgba(230,238,255,.92);
  border-radius: 3px;
  transition: transform .2s ease, opacity .2s ease;
}

.ns-menu a{
  color: rgba(230,238,255,.88);
  text-decoration:none;
  font-size: 14.5px;
  letter-spacing:.2px;
  position:relative;
  padding: 8px 2px;
}

.ns-menu a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:2px;
  height:2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0);
  opacity:.9;
  transition: transform .25s ease;
}

.ns-menu a:hover::after{ transform: scaleX(1); }

.ns-cta{
  color: white;
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  box-shadow: 0 0 0 1px rgba(255,255,255,.10),
              0 14px 30px rgba(42,140,255,.25);
}

.ns-hero{
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 18px 0;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.ns-hero-left h1{
  font-size: clamp(31px, 3.6vw, 50px);
  line-height: 1.06;
  margin: 0 0 18px;
  letter-spacing: -.6px;
}

.ns-hero-left p{
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 52ch;
}

.ns-actions{ display:flex; gap: 12px; flex-wrap:wrap; margin-bottom: 22px; }

.ns-btn{
  text-decoration:none;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
}

.ns-btn-primary{
  color: white;
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  box-shadow: 0 18px 40px rgba(42,140,255,.22);
}

.ns-btn-ghost{
  color: rgba(235,242,255,.92);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}

.ns-chips{ display:flex; gap: 10px; flex-wrap:wrap; }

.ns-chips span{
  font-size: 13px;
  color: rgba(220,230,255,.85);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  padding: 9px 12px;
  border-radius: 999px;
}

/* Right visual (abstract data lines) */
.ns-hero-right{
  height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(220px 220px at 30% 25%, rgba(42,140,255,.28), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  position: relative;
  overflow:hidden;
}

.ns-hero-right::before{
  content:"";
  position:absolute;
  inset:-40px -40px -40px -40px;
  background:
    repeating-linear-gradient(  8deg,
      rgba(200,220,255,.10) 0px,
      rgba(200,220,255,.10) 10px,
      rgba(0,0,0,0) 10px,
      rgba(0,0,0,0) 28px);
  opacity:.35;
  filter: blur(1px);
  transform: translateX(40px);
}

.ns-hero-right::after{
  content:"";
  position:absolute;
  left: 18%;
  top: 18%;
  width: 64%;
  height: 64%;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 35%, rgba(42,140,255,.30), transparent 58%);
  filter: blur(6px);
}

@media (max-width: 980px){
  .ns-nav{
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 12px;
    top: 0;
  }

  .ns-logo{
    height: 72px;
    transform: scale(1.35);
  }

  .ns-menu-toggle{
    display: inline-flex;
    margin-left: auto;
  }

  .ns-nav.is-open .ns-menu-toggle span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
  }

  .ns-nav.is-open .ns-menu-toggle span:nth-child(2){
    opacity: 0;
  }

  .ns-nav.is-open .ns-menu-toggle span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
  }

  .ns-menu{
    display: none;
    order: 4;
    width: 100%;
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--line);
    background: rgba(11,18,32,.95);
    border-radius: 14px;
    flex-direction: column;
  }

  .ns-nav.is-open .ns-menu{
    display: flex;
  }

  .ns-menu a{
    font-size: 14px;
    padding: 10px 8px;
    display: block;
  }

  .ns-cta{
    padding: 10px 12px;
    font-size: 14px;
  }

  body.ns-menu-open{
    overflow: hidden;
  }

  .ns-hero{ grid-template-columns: 1fr; }
  .ns-hero-right{ height: 320px; }
}

.ns-header-compact{
  min-height: 100vh;
  padding-bottom: 70px;
}

.ns-contact-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 18px 0;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

.ns-contact-intro h1{
  margin: 0 0 14px;
  font-size: clamp(30px, 3.5vw, 47px);
  letter-spacing: -.5px;
}

.ns-contact-intro > p{
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 52ch;
}

.ns-contact-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ns-contact-card{
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 16px;
  padding: 16px;
}

.ns-contact-card h2{
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: rgba(215,228,255,.82);
}

.ns-contact-card p{
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.ns-contact-card a{
  color: var(--text);
}

.ns-contact-map{
  margin-top: 14px;
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 16px;
  padding: 14px;
}

.ns-contact-map h2{
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: rgba(215,228,255,.82);
}

.ns-contact-map iframe{
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
}

.ns-contact-form-card{
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 20px;
  padding: 20px;
  margin-top: clamp(138px, 12vw, 162px);
}

.ns-contact-form-card h2{
  margin: 0 0 14px;
  font-size: 20px;
}

.ns-contact-form{
  display: grid;
  gap: 10px;
}

.ns-form-status{
  margin: 0 0 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
}

.ns-form-status.is-success{
  border-color: rgba(83, 201, 126, .45);
  background: rgba(21, 87, 48, .28);
  color: #dff7e7;
}

.ns-form-status.is-error{
  border-color: rgba(255, 122, 122, .4);
  background: rgba(122, 28, 28, .26);
  color: #ffe1e1;
}

.ns-contact-form label{
  color: rgba(220,230,255,.86);
  font-size: 14px;
}

.ns-contact-form input,
.ns-contact-form textarea{
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(5,11,22,.55);
  color: var(--text);
  border-radius: 12px;
  padding: 12px;
  font: inherit;
}

.ns-contact-form input:focus,
.ns-contact-form textarea:focus{
  outline: 2px solid rgba(42,140,255,.65);
  outline-offset: 1px;
}

.ns-contact-form button{
  justify-content: center;
  border: 0;
  cursor: pointer;
  margin-top: 6px;
}

.ns-form-honeypot{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 980px){
  .ns-contact-wrap{ grid-template-columns: 1fr; }
  .ns-contact-form-card{ margin-top: 0; }
}

@media (max-width: 640px){
  .ns-header{
    padding-bottom: 30px;
  }

  .ns-hero{
    padding-top: 34px;
    gap: 18px;
  }

  .ns-hero-left h1{
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.12;
  }

  .ns-hero-left p{
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .ns-actions{
    gap: 8px;
    margin-bottom: 14px;
  }

  .ns-btn{
    padding: 12px 14px;
    font-size: 14px;
  }

  .ns-hero-right{
    height: 250px;
    border-radius: 18px;
  }

  .ns-contact-wrap,
  .ns-services-wrap,
  .ns-about-wrap,
  .ns-projects-wrap,
  .ns-service-detail{
    padding-top: 28px;
  }

  .ns-contact-intro > p,
  .ns-services-intro p,
  .ns-about-intro p,
  .ns-projects-intro p,
  .ns-service-detail p{
    font-size: 16px;
  }

  .ns-contact-form-card{
    padding: 14px;
    border-radius: 14px;
  }

  .ns-contact-map iframe{
    height: 260px;
  }

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

.ns-services-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 18px 0;
}

.ns-services-intro h1{
  margin: 0 0 12px;
  font-size: clamp(30px, 3.5vw, 47px);
  letter-spacing: -.5px;
}

.ns-services-intro p{
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.ns-services-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ns-service-card{
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 18px;
  padding: 14px;
  transition: transform .18s ease, border-color .18s ease;
}

.ns-service-card:hover{
  transform: translateY(-3px);
  border-color: rgba(42,140,255,.55);
}

.ns-service-card img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
}

.ns-service-card h2{
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.25;
}

.ns-service-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.ns-service-detail{
  max-width: 980px;
  margin: 0 auto;
  padding: 54px 18px 0;
}

.ns-service-detail h1{
  margin: 0 0 12px;
  font-size: clamp(29px, 3.5vw, 43px);
  letter-spacing: -.5px;
}

.ns-service-detail h2{
  margin: 18px 0 8px;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.2px;
  text-align: left;
}

.ns-service-detail p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.ns-service-detail ul{
  margin: 0;
  padding-left: 24px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.ns-service-hero-image{
  margin: 8px 0 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(5,11,22,.35);
}

.ns-service-hero-image img{
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px){
  .ns-services-grid{ grid-template-columns: 1fr; }
}

.ns-about-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 18px 0;
}

.ns-about-intro h1{
  margin: 0 0 12px;
  font-size: clamp(30px, 3.5vw, 47px);
  letter-spacing: -.5px;
}

.ns-about-intro p{
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 106ch;
}

.ns-about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ns-about-card{
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 18px;
  padding: 18px;
}

.ns-about-card h2{
  margin: 0 0 8px;
  font-size: 20px;
}

.ns-about-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.ns-about-card ul{
  margin: 0;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.7;
}

@media (max-width: 980px){
  .ns-about-grid{ grid-template-columns: 1fr; }
}
/* --- Icon in right card --- */
.ns-mark{
  position:absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: min(520px, 80%);
  height: auto;
  filter: drop-shadow(0 0 26px rgba(42,140,255,.35))
          drop-shadow(0 0 70px rgba(42,140,255,.18));
  animation: ns-float 6.5s ease-in-out infinite,
             ns-glow  3.2s ease-in-out infinite;
  opacity: .98;
}

/* --- Data stream animation (background stripes) --- */
.ns-hero-right::before{
  animation: ns-stream 14s linear infinite;
}

/* Optional: a tiny “pulse dot” */
.ns-hero-right .ns-dot{
  position:absolute;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--blue);
  left: 18%;
  top: 22%;
  box-shadow: 0 0 18px rgba(42,140,255,.55);
  animation: ns-pulse 2.2s ease-in-out infinite;
}

/* --- Keyframes --- */
@keyframes ns-stream{
  0%   { transform: translateX(40px) translateY(0); }
  100% { transform: translateX(-120px) translateY(-40px); }
}

@keyframes ns-float{
  0%,100% { transform: translate(-50%, -50%) translateY(0); }
  50%     { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes ns-glow{
  0%,100% { filter: drop-shadow(0 0 24px rgba(42,140,255,.30))
                   drop-shadow(0 0 70px rgba(42,140,255,.16)); }
  50%     { filter: drop-shadow(0 0 34px rgba(42,140,255,.42))
                   drop-shadow(0 0 92px rgba(42,140,255,.22)); }
}

@keyframes ns-pulse{
  0%,100% { transform: scale(1); opacity: .75; }
  50%     { transform: scale(1.25); opacity: 1; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .ns-mark, .ns-hero-right::before, .ns-hero-right .ns-dot{
    animation: none !important;
  }
}

.ns-projects-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 18px 0;
}

.ns-projects-board{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8,14,24,.96), rgba(11,17,28,.98)),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.ns-projects-hero{
  padding: 48px 24px 34px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(560px 220px at 50% 0%, rgba(255,255,255,.10), transparent 70%),
    linear-gradient(180deg, #2b67a5 0%, #23578f 100%);
}

.ns-projects-hero-mark{
  display: inline-grid;
  grid-template-columns: repeat(4, 8px);
  gap: 4px;
  margin-bottom: 18px;
  opacity: .9;
}

.ns-projects-hero-mark span{
  display: block;
  width: 8px;
  border-radius: 999px;
  background: rgba(226,239,255,.86);
}

.ns-projects-hero-mark span:nth-child(1){ height: 10px; align-self: end; }
.ns-projects-hero-mark span:nth-child(2){ height: 16px; align-self: end; }
.ns-projects-hero-mark span:nth-child(3){ height: 22px; align-self: end; }
.ns-projects-hero-mark span:nth-child(4){ height: 13px; align-self: end; }

.ns-projects-hero h1{
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -.9px;
  color: #f8fbff;
  text-shadow: 0 2px 0 rgba(0,0,0,.24);
}

.ns-projects-hero p{
  max-width: 720px;
  margin: 0 auto;
  color: rgba(231,240,250,.88);
  font-size: 18px;
  line-height: 1.5;
}

.ns-projects-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
}

.ns-project-card{
  min-height: 106px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(57,72,92,.92), rgba(44,57,75,.96));
  border-radius: 14px;
  padding: 14px 14px 13px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 10px 24px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.ns-project-card:hover{
  transform: translateY(-2px);
  border-color: rgba(118,180,255,.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 30px rgba(16,28,44,.34);
}

.ns-project-card h2{
  margin: 0 0 8px;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #f8fbff;
  text-align: left;
  text-shadow: 0 1px 0 rgba(0,0,0,.28);
}

.ns-project-card p{
  margin: 0;
  color: rgba(221,232,248,.90);
  font-size: 13px;
  line-height: 1.38;
}

.ns-solutions-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 54px 18px 0;
}

.ns-solutions-card{
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 18px;
  padding: 22px;
}

.ns-solutions-card h1{
  margin: 0 0 12px;
  font-size: clamp(27px, 3.6vw, 41px);
  letter-spacing: -.5px;
}

.ns-solutions-card p{
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.ns-solutions-card p + h2{
  margin-top: 20px;
}

.ns-solutions-card h2{
  margin: 14px 0 8px;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 2.1vw, 24px);
  letter-spacing: -0.2px;
  text-align: left;
}

.ns-solutions-card ul{
  margin: 0 0 12px;
  padding-left: 22px;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.65;
}

.ns-solutions-card li{
  margin-bottom: 6px;
}

.ns-solutions-card li strong{
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  color: rgba(236,243,255,.96);
  letter-spacing: 0;
}

.ns-solutions-quote{
  margin-top: 6px;
  padding-left: 14px;
  border-left: 3px solid rgba(42,140,255,.55);
}

.ns-solutions-image{
  width: 50%;
  max-width: 540px;
  display: block;
  margin: 0 auto 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  object-fit: cover;
}

@media (max-width: 980px){
  .ns-projects-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ns-projects-hero{
    padding: 40px 20px 28px;
  }

  .ns-projects-hero p{
    font-size: 16px;
  }
}

@media (max-width: 640px){
  .ns-projects-grid{
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 10px;
  }

  .ns-projects-wrap{
    padding-top: 28px;
  }

  .ns-projects-board{
    border-radius: 18px;
  }

  .ns-projects-hero{
    padding: 30px 16px 22px;
  }

  .ns-projects-hero h1{
    font-size: clamp(28px, 8vw, 36px);
  }

  .ns-projects-hero p{
    font-size: 15px;
    line-height: 1.45;
  }

  .ns-project-card{
    min-height: auto;
    padding: 13px 12px;
  }

  .ns-project-card h2{
    font-size: 15px;
  }

  .ns-project-card p{
    font-size: 13px;
  }

  .ns-solutions-card{
    padding: 14px;
    border-radius: 14px;
  }

  .ns-solutions-card p{
    font-size: 14px;
  }

  .ns-solutions-card h2{
    font-size: clamp(18px, 5.6vw, 22px);
  }

  .ns-solutions-card ul{
    font-size: 14px;
  }

  .ns-solutions-image{
    width: 72%;
    margin-bottom: 12px;
    border-radius: 10px;
  }
}

.ns-footer{
  border-top: 1px solid var(--line);
  background:
    radial-gradient(680px 300px at 15% 0%, rgba(42,140,255,.12), transparent 60%),
    linear-gradient(180deg, #0a1019, #070b12);
  color: var(--text);
}

.ns-footer-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 18px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.ns-footer-brand{
  display: inline-flex;
  align-items: center;
}

.ns-footer-logo{
  width: 124px;
  height: auto;
  display: block;
}

.ns-footer-contacts{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.ns-footer-contacts span,
.ns-footer-contacts a{
  display: block;
}

.ns-footer-contacts a{
  color: var(--text);
  text-decoration: none;
}

.ns-footer-copy{
  text-align: right;
  color: rgba(230,238,255,.84);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px){
  .ns-footer-wrap{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ns-footer-brand{
    justify-content: center;
  }

  .ns-footer-contacts{
    justify-content: center;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
  }

  .ns-footer-copy{
    text-align: center;
  }
}
