/* ==========================================================================
   Niscala Building — 2026 redesign
   New styles matching the updated Figma design. Kept isolated from the
   original Webflow-exported stylesheets (normalize.css, webflow.css,
   niscala-buildingmlg.webflow.css) which stay untouched; this file loads
   last and owns every element inside the "nb-" prefixed markup.
   ========================================================================== */

:root {
  --nb-blue: var(--primary-blue, #1738dc);
  --nb-green: var(--primary-green, #01ea47);
  --nb-dark: #1a1a1a;
  --nb-gray: #666;
  --nb-tint: #f0f9ff;
  --nb-white: #fefefe;
  --nb-border: #cfe1ed;
  --nb-price-bg: #d7f9e1;
  --nb-price-text: #00952d;
  --nb-footer-bg: #f9f9f9;
  --nb-font-heading: 'DM Sans', sans-serif;
  --nb-font-body: 'Geist', sans-serif;
}

.nb-section { position: relative; }
.nb-wrap { max-width: 1280px; margin: 0 auto; }

/* WebP <picture><source>...<img></picture> wrappers should be invisible to
   layout — the inner <img> keeps behaving exactly like a direct flex/grid
   child everywhere it already did (portfolio grid, service galleries,
   hero/about/cta backgrounds, testimonial photos). */
picture { display: contents; }

.w-full {
  width: 100%;
}

.pb-16 {
  padding-bottom: 16px;
}

.rotate-180 {
  rotate: 180deg;
}

.nb-eyebrow-title {
  font-family: var(--nb-font-heading);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.05;
  color: var(--nb-dark);
  text-align: center;
  margin: 0;
}
.nb-eyebrow-sub {
  font-family: var(--nb-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: var(--nb-gray);
  text-align: center;
  max-width: 832px;
  margin: 0 auto;
}
.nb-head-block { display: flex; flex-direction: column; gap: 16px; align-items: center; margin-bottom: 48px; }

.nb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--nb-green);
  color: var(--nb-dark);
  font-family: var(--nb-font-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  white-space: nowrap;
}
.nb-btn:hover { filter: brightness(0.96); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(1,234,71,.28); }
.nb-btn img { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.nb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 80px;
  border-bottom: 1px solid #eef0f4;
}
.nb-header__logo { display: flex; align-items: center; height: 32px; }
.nb-header__logo img { height: 32px; width: auto; display: block; }
.nb-header__menu { display: flex; align-items: center; gap: 56px; list-style: none; margin: 0; padding: 0; }
.nb-header__menu a {
  font-family: var(--nb-font-body);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--nb-dark);
  text-decoration: none;
}
.nb-header__menu a:hover { color: var(--nb-blue); }
.nb-header__cta { display: flex; align-items: center; gap: 16px; }
.nb-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nb-burger span { width: 24px; height: 2px; background: var(--nb-dark); display: block; transition: transform .2s ease, opacity .2s ease; }
.nb-header.is-open .nb-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nb-header.is-open .nb-burger span:nth-child(2) { opacity: 0; }
.nb-header.is-open .nb-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.nb-hero {
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}
.nb-hero__bg { position: absolute; inset: 0; }
.nb-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nb-hero__bg::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.nb-hero__title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  color: #fff;
  max-width: 900px;
}
.nb-hero__title h1 {
  font-family: var(--nb-font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  margin: 0;
}
.nb-hero__title p { font-family: var(--nb-font-body); font-size: 16px; line-height: 1.35; margin: 0; }
.nb-hero__stats {
  position: relative;
  display: flex;
  gap: 40px;
  background: var(--nb-blue);
  border-radius: 16px;
  padding: 32px;
}
.nb-hero__stat { display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 120px; }
.nb-hero__stat strong { font-family: var(--nb-font-heading); font-weight: 600; font-size: 36px; color: #fff; }
.nb-hero__stat span { font-family: var(--nb-font-body); font-size: 16px; color: #ccc; }

/* ---------- About ---------- */
.nb-about { background: var(--nb-tint); padding: 100px 80px; }
.nb-about__grid { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.nb-about__copy { max-width: 640px; display: flex; flex-direction: column; gap: 32px; }
.nb-about__copy h2 {
  font-family: var(--nb-font-heading);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.05;
  color: var(--nb-dark);
  margin: 0;
}
.nb-about__desc { font-family: var(--nb-font-body); font-size: 16px; line-height: 1.35; color: var(--nb-gray); margin: 0; }
.nb-about__perks { display: flex; gap: 80px; }
.nb-about__perks ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.nb-about__perks li { display: flex; align-items: center; gap: 8px; font-family: var(--nb-font-body); font-size: 16px; color: var(--nb-gray); }
.nb-about__perks img { width: 20px; height: 20px; }
.nb-about__media { position: relative; width: 500px; height: 441px; flex-shrink: 0; }
.nb-about__card-back {
  position: absolute;
  top: 0;
  left: 40px;
  width: 500px;
  height: 400px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--nb-blue), #12c98a 120%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 32px;
  overflow: hidden;
}
.nb-about__card-back .nb-about__brand { display: flex; align-items: center; gap: 8px; color: #fff; font-family: var(--nb-font-heading); font-weight: 700; letter-spacing: .04em; font-size: 15px; }
.nb-about__card-back .nb-about__brand img { height: 24px; width: auto; }
.nb-about__photo { position: absolute; top: 41px; left: 0; width: 500px; height: 400px; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 48px rgba(23,56,220,.18); }
.nb-about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Services ---------- */
.nb-services { background: #fff; padding: 100px 80px; }
.nb-services__list { display: flex; flex-direction: column; }
.nb-service {
  background: var(--nb-tint);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 24px;
}
.nb-service__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; }
.nb-service__title { display: flex; align-items: center; gap: 16px; margin: 0 0 12px; }
.nb-service__title .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--nb-green); flex-shrink: 0; }
.nb-service__title h3 {
  font-family: var(--nb-font-heading);
  font-weight: 600;
  font-size: 24px;
  color: var(--nb-dark);
  margin: 0;
  text-transform: capitalize;
}
.nb-service__body { font-family: var(--nb-font-body); font-size: 16px; line-height: 1.35; color: var(--nb-gray); margin: 0; max-width: 850px; }
.nb-service__cta { flex-shrink: 0; }
.nb-service__images { display: flex; gap: 20px; }
.nb-service__images img { flex: 1 1 0; width: 100%; height: 240px; object-fit: cover; border-radius: 12px; display: block; }

/* Pricing cards inside "Design Arsitektur" */
.nb-price-list { display: flex; flex-direction: column; gap: 20px; }
.nb-price-card { background: var(--nb-white); border: 1px solid var(--nb-border); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.nb-price-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid var(--nb-border); padding-bottom: 16px; }
.nb-price-card__head h4 { font-family: var(--nb-font-body); font-weight: 600; font-size: 20px; color: var(--nb-dark); margin: 0; }
.nb-price-card__head small { font-family: var(--nb-font-body); font-size: 16px; color: var(--nb-dark); font-weight: 400; }
.nb-price-tag { background: var(--nb-price-bg); color: var(--nb-price-text); font-family: var(--nb-font-body); font-weight: 600; font-size: 20px; border-radius: 8px; padding: 6px 12px; white-space: nowrap; }
.nb-price-tag.is-small { font-size: 16px; }
.nb-price-card__label { font-family: var(--nb-font-body); font-size: 16px; color: var(--nb-gray); margin: 0; }
.nb-price-card__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nb-price-card__cols.cols-2 { grid-template-columns: repeat(2, 1fr); }
.nb-price-card__cols ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.nb-price-card__cols li { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-family: var(--nb-font-body); font-size: 16px; color: var(--nb-gray); }
.nb-price-card__cols li img { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Why Us ---------- */
.nb-why { background: var(--nb-tint); padding: 100px 80px; }
.nb-why__cards { display: flex; gap: 40px; max-width: 1136px; margin: 0 auto; }
.nb-why__card { flex: 1; background: var(--nb-white); border: 1px solid var(--nb-border); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.nb-why__icon { width: 56px; height: 56px; border-radius: 8px; background: var(--nb-green); display: flex; align-items: center; justify-content: center; }
.nb-why__icon img { width: 28px; height: 28px; filter: brightness(0) invert(0); }
.nb-why__card h3 { font-family: var(--nb-font-body); font-weight: 600; font-size: 20px; color: var(--nb-dark); margin: 0; }
.nb-why__card p { font-family: var(--nb-font-body); font-size: 16px; color: var(--nb-gray); margin: 0; max-width: 303px; }

/* ---------- Portfolio ---------- */
.nb-portfolio { background: #fff; padding: 100px 80px; }
.nb-portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* .nb-portfolio__grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 16px; display: block; } */
.nb-portfolio__grid img{
    display:block;
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius: 16px;
}
.nb-portfolio__grid > picture{
    display:block;
    width:100%;
}

/* ---------- Testimonial ---------- */
.nb-testi { background: var(--nb-tint); padding: 100px 0; }
.nb-testi__head { padding: 0 80px; margin-bottom: 32px; }
.nb-testi__track {
  display: flex;
  gap: 32px;
  padding: 0 80px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nb-testi__track::-webkit-scrollbar { display: none; }
.nb-testi__card { display: flex; height: 260px; flex: 0 0 auto; width: 600px; scroll-snap-align: start; }
.nb-testi__detail { flex: 1; background: var(--nb-white); border-radius: 16px 0 0 16px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.nb-testi__stars { display: flex; gap: 2px; margin-bottom: 8px; }
.nb-testi__stars img { width: 24px; height: 24px; }
.nb-testi__name { font-family: var(--nb-font-body); font-weight: 500; font-size: 18px; color: var(--nb-dark); margin: 0; }
.nb-testi__text { font-family: var(--nb-font-body); font-size: 16px; line-height: 1.35; color: var(--nb-gray); margin: 0; }
.nb-testi__photo { width: 235px; flex-shrink: 0; border-radius: 0 16px 16px 0; overflow: hidden; }
.nb-testi__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nb-testi__nav { display: flex; justify-content: center; gap: 20px; margin-top: 32px; }
.nb-testi__nav button { width: 32px; height: 32px; border-radius: 50%; border: none; background: none; display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; transition: transform .15s ease; }
.nb-testi__nav button:hover { transform: scale(1.08); }
.nb-testi__nav button img { width: 32px; height: 32px; }
.nb-testi__nav button:disabled { opacity: .4; cursor: default; }

/* ---------- FAQ ---------- */
.nb-faq { background: var(--nb-tint); padding: 100px 80px; }
.nb-faq__list { display: flex; flex-direction: column; gap: 16px; max-width: 1028px; margin: 0 auto; }
.nb-faq__item { background: var(--nb-white); border-radius: 15px; overflow: hidden; }
.nb-faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: none; border: none; text-align: left; cursor: pointer; padding: 24px; font-family: var(--nb-font-body); font-weight: 500; font-size: 16px; color: var(--nb-dark); }
.nb-faq__q .icon { width: 24px; height: 24px; flex-shrink: 0; position: relative; }
.nb-faq__q .icon img { width: 100%; height: 100%; position: absolute; inset: 0; transition: opacity .15s ease; }
.nb-faq__q .icon .minus { opacity: 0; }
.nb-faq__item.is-open .nb-faq__q .icon .plus { opacity: 0; }
.nb-faq__item.is-open .nb-faq__q .icon .minus { opacity: 1; }
.nb-faq__item.is-open .nb-faq__q { font-size: 18px; }
.nb-faq__a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.nb-faq__a p { font-family: var(--nb-font-body); font-size: 16px; line-height: 1.3; color: var(--nb-gray); margin: 0; padding: 0 24px 24px; }
.nb-faq__more { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 48px; }
.nb-faq__more p { font-family: var(--nb-font-body); font-size: 16px; color: var(--nb-gray); margin: 0; }

/* ---------- CTA ---------- */
.nb-cta { min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  padding: 60px;
  position: relative;
  overflow: hidden; 
}
.nb-cta__bg { position: absolute; inset: 0; }
.nb-cta__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nb-cta__bg::after { content: ""; position: absolute; inset: 0; background: rgba(26,26,26,.7); }
/* .nb-cta > * { position: relative; } */
.nb-cta h2 { font-family: var(--nb-font-heading); font-weight: 600; font-size: 48px; line-height: 1.05; color: var(--nb-white); margin: 0; }
.nb-cta__title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  color: #fff;
  max-width: 900px;
}
.nb-cta p { font-family: var(--nb-font-body); font-size: 16px; color: var(--nb-white); margin: 16px 0 0; }

/* ---------- Footer ---------- */
.nb-footer { background: var(--nb-footer-bg); }
.nb-footer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; padding: 80px; flex-wrap: wrap; }
.nb-footer__left { display: flex; flex-direction: column; gap: 32px; }
.nb-footer__logo img { height: 48px; width: auto; display: block; }
.nb-footer__addr { font-family: var(--nb-font-body); font-size: 16px; color: var(--nb-gray); margin: 8px 0 0; max-width: 482px; }
.nb-footer__social { display: flex; gap: 8px; }
.nb-footer__social a { width: 40px; height: 40px; border-radius: 999px; background: var(--nb-blue); display: flex; align-items: center; justify-content: center; }
.nb-footer__social img { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.nb-footer__right { display: flex; gap: 100px; flex-wrap: wrap; }
.nb-footer__col h4 { font-family: var(--nb-font-body); font-weight: 500; font-size: 20px; color: var(--nb-dark); margin: 0 0 16px; }
.nb-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.nb-footer__col a { font-family: var(--nb-font-body); font-size: 16px; color: var(--nb-gray); text-decoration: none; }
.nb-footer__col a:hover { color: var(--nb-blue); }
.nb-footer__bottom { background: var(--nb-blue); padding: 16px 80px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.nb-footer__bottom p { font-family: var(--nb-font-body); font-size: 16px; color: #fafafa; margin: 0; }
.nb-footer__bottom a { color: #fafafa; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 1100px) {
  .nb-header,
  .nb-hero,
  .nb-about,
  .nb-services,
  .nb-why,
  .nb-portfolio,
  .nb-faq,
  .nb-cta { padding-left: 48px; padding-right: 48px; }
  .nb-testi__head, .nb-testi__track { padding-left: 48px; padding-right: 48px; }
  .nb-footer__top, .nb-footer__bottom { padding-left: 48px; padding-right: 48px; }
  .nb-header__menu { gap: 32px; }
  .nb-about__media, .nb-about__card-back, .nb-about__photo { width: 420px; }
  .nb-why__cards { flex-wrap: wrap; }
  .nb-why__card { min-width: 260px; }
}

@media screen and (max-width: 991px) {
  .nb-eyebrow-title, .nb-about__copy h2, .nb-cta h2 { font-size: 38px; }
  .nb-hero__title h1 { font-size: 42px; }
  .nb-hero { min-height: 640px; padding-top: 100px; }
  .nb-cta { min-height: 360px; }
  .nb-about__grid { flex-direction: column; }
  .nb-about__copy { max-width: 100%; }
  .nb-about__media { margin-top: 24px; }
  .nb-service__images { flex-wrap: wrap; }
  .nb-service__images img { flex: 1 1 45%; height: 200px; }
  .nb-price-card__cols { grid-template-columns: repeat(2, 1fr); }
  .nb-testi__card { width: 88vw; }
}

@media screen and (max-width: 767px) {
  .nb-header { padding: 14px 20px; flex-wrap: wrap; }
  .nb-header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 20px 16px;
    border-bottom: 1px solid #eef0f4;
    display: none;
  }
  .nb-header.is-open .nb-header__menu { display: flex; }
  .nb-header__menu li { width: 100%; }
  .nb-header__menu a { display: block; padding: 12px 0; width: 100%; border-bottom: 1px solid #f2f3f6; }
  .nb-header__cta .nb-btn span { display: none; }
  .nb-burger { display: flex; }

  .nb-hero, .nb-about, .nb-services, .nb-why, .nb-portfolio, .nb-faq, .nb-cta {
    padding-left: 20px; padding-right: 20px; padding-top: 56px; padding-bottom: 56px;
  }
  .nb-hero { min-height: 560px; }
  .nb-cta { min-height: 360px; }
  .nb-hero__title h1 { font-size: 42px; }
  .nb-hero__stats { width: 100%; gap: 8px; padding: 16px 12px; }
  .nb-hero__stat { min-width: 0; flex: 1; }
  .nb-hero__stat strong { font-size: 20px; }
  .nb-hero__stat span { font-size: 12px; }

  .nb-eyebrow-title, .nb-about__copy h2, .nb-cta h2 { font-size: 28px; }
  .nb-about__perks { flex-direction: column; gap: 8px; }
  .nb-about__media { width: 100%; max-width: 360px; height: auto; aspect-ratio: 500/441; margin-left: auto; margin-right: auto; }
  .nb-about__card-back { width: calc(100% - 16px); height: 90%; left: 16px; top: 0; padding-top: 16px; }
  .nb-about__photo { width: calc(100% - 16px); height: 90%; left: 0; top: 16px; }
  .nb-about__card-back .nb-about__brand { font-size: 13px; }

  .nb-service { padding: 20px; gap: 20px; }
  .nb-service__top { flex-direction: column; gap: 16px; }
  .nb-service__cta { align-self: flex-start; }
  .nb-service__images { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; margin: 0 -20px; padding: 0 20px; }
  .nb-service__images img { flex: 0 0 78%; scroll-snap-align: start; height: 200px; }

  .nb-price-card { padding: 18px; gap: 12px; }
  .nb-price-card__cols,
  .nb-price-card__cols.cols-2 { grid-template-columns: 1fr; gap: 16px; }
  .nb-price-card__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nb-price-card__head h4 { font-size: 18px; }
  .nb-price-card__head small { font-size: 14px; line-height: 1.35; }
  .nb-price-tag { white-space: normal; text-align: center; }
  .nb-price-card__cols li { align-items: flex-start; }

  .nb-why__cards { flex-direction: column; }

  /* Portfolio: single row, horizontal swipe on mobile */
  /* .nb-portfolio__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    margin: 0 -20px;
    padding: 0 20px 8px;
  }
  .nb-portfolio__grid img { flex: 0 0 72%; scroll-snap-align: start; aspect-ratio: 1/1; } */
  .nb-portfolio__grid{
      display:flex;
      overflow-x:auto;
      scroll-snap-type:x mandatory;
      -webkit-overflow-scrolling:touch;
      gap:12px;
      margin:0 -20px;
      padding:0 20px 8px;
  }

  .nb-portfolio__grid picture{
      flex:0 0 72%;
      scroll-snap-align:start;
      display:block;
  }

  .nb-portfolio__grid img{
      width:100%;
      aspect-ratio:1/1;
      object-fit:cover;
      display:block;
  }

  .nb-testi__head, .nb-testi__track { padding-left: 20px; padding-right: 20px; }
  .nb-testi__track { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .nb-testi__card { width: 86vw; flex-direction: column; height: auto; scroll-snap-align: start; }
  .nb-testi__detail { border-radius: 16px 16px 0 0; }
  .nb-testi__photo { width: 100%; height: 200px; border-radius: 0 0 16px 16px; }

  .nb-faq__q { padding: 18px; font-size: 15px; }
  .nb-faq__a p { padding: 0 18px 18px; }

  .nb-cta h2 { font-size: 26px; }

  .nb-footer__top { padding: 48px 20px; gap: 32px; }
  .nb-footer__right { gap: 32px; }
  .nb-footer__bottom { padding: 16px 20px; flex-direction: column; text-align: center; }
}

@media screen and (max-width: 479px) {
  .nb-hero__title h1 { font-size: 40px; }
  .nb-eyebrow-title, .nb-about__copy h2, .nb-cta h2 { font-size: 24px; }
  .nb-service__images img { flex-basis: 88%; }
  /* .nb-portfolio__grid img { flex-basis: 82%; } */
  .nb-hero__stats { gap: 4px; padding: 12px; }
  .nb-hero__stat strong { font-size: 28px; }
  .nb-hero__stat span { font-size: 12px; }
  .nb-service__title h3 { font-size: 18px;}
}
