/* ============================================================
   Shaperfactory — Home Page Styles (Nanbin Design System)
   Scope: body.home
   ============================================================ */

/* ----- Design Tokens ----- */
body.home {
  --nb-brand: #e91e8c;
  --nb-brand-dark: #c4166f;
  --nb-brand-light: #fff0f6;
  --nb-black: #1d1d1f;
  --nb-white: #ffffff;
  --nb-bg-faint: #f5f5f7;
  --nb-bg-gray: #edeef0;
  --nb-border: #e8e4de;
  --nb-text: #1d1d1f;
  --nb-text-mid: #515154;
  --nb-text-muted: #86868b;
  --nb-radius: 8px;
  --nb-radius-lg: 12px;
  --nb-max-w: 1400px;
  --nb-shadow-sm: 0 2px 12px rgba(0,0,0,.04);
  --nb-shadow-md: 0 8px 30px rgba(0,0,0,.07);
}

/* ----- Reset & Base ----- */
body.home {
  font-family: 'Roboto', sans-serif;
  color: var(--nb-text);
  background: var(--nb-white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ----- Nav Overrides (global nav adapts to new design) ----- */
body.home .tw-header {
  background: var(--nb-white);
  border-bottom: 1px solid var(--nb-border);
}

/* ----- Container ----- */
body.home .hp-w {
  max-width: var(--nb-max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ----- Section Defaults ----- */
body.home .hp-section {
  padding: 90px 0;
}
body.home .hp-divider {
  height: 1px;
  background: var(--nb-border);
}

/* ----- Section Header ----- */
body.home .hp-sec-head {
  margin-bottom: 56px;
}
body.home .hp-sec-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--nb-brand);
  margin-bottom: 12px;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-sec-title {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--nb-black);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
body.home .hp-sec-sub {
  font-size: 16px;
  color: var(--nb-text-mid);
  line-height: 1.75;
  max-width: 580px;
}
body.home .hp-sec-foot {
  text-align: center;
  margin-top: 48px;
}

/* ----- Buttons ----- */
body.home .hp-btn--pri {
  background: var(--nb-brand);
  color: var(--nb-white);
  padding: 15px 35px;
  border-radius: var(--nb-radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  cursor: pointer;
  border: none;
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}
body.home .hp-btn--pri:hover {
  background: var(--nb-brand-dark);
  transform: translateY(-1px);
  color: var(--nb-white);
}
body.home .hp-btn--ghost {
  background: transparent;
  color: var(--nb-black);
  padding: 15px 29px;
  border-radius: var(--nb-radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  cursor: pointer;
  border: 1.5px solid var(--nb-black);
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}
body.home .hp-btn--ghost:hover {
  background: var(--nb-black);
  color: var(--nb-white);
}
body.home .hp-btn--outline {
  background: transparent;
  border: 1.5px solid var(--nb-black);
  color: var(--nb-black);
  padding: 14px 29px;
  border-radius: var(--nb-radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-btn--outline:hover {
  background: var(--nb-black);
  color: var(--nb-white);
}
body.home .hp-btn--link {
  font-size: 14px;
  color: var(--nb-brand);
  text-decoration: none;
  font-weight: 700;
}
body.home .hp-btn--link:hover {
  text-decoration: underline;
}

/* ============================================================
   HERO
   ============================================================ */
body.home .hp-hero {
  position: relative;
  height: 800px;
  margin-top: 80px;
  background: var(--nb-bg-faint);
  overflow: hidden;
  display: grid;
  grid-template-columns: 52% 48%;
  border-bottom: 1px solid var(--nb-border);
}
body.home .hp-hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px 80px 80px;
}
body.home .hp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--nb-brand);
  margin-bottom: 24px;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-hero__eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nb-brand);
  flex-shrink: 0;
}
body.home .hp-hero__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--nb-black);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
body.home .hp-hero__title em {
  color: var(--nb-brand);
  font-style: normal;
}
body.home .hp-hero__sub {
  font-size: 16px;
  color: var(--nb-text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}
body.home .hp-hero__btns {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
}
body.home .hp-hero__stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--nb-border);
}
body.home .hp-hero__stat strong {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--nb-black);
  line-height: 1;
  margin-bottom: 4px;
}
body.home .hp-hero__stat strong span {
  color: var(--nb-brand);
}
body.home .hp-hero__stat small {
  font-size: 11px;
  color: var(--nb-text-muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
}
body.home .hp-hero__right {
  position: relative;
  overflow: hidden;
}
body.home .hp-hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
body.home .hp-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
body.home .hp-hero__slide.active {
  opacity: 1;
  z-index: 1;
}
body.home .hp-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
body.home .hp-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--nb-bg-faint) 0%, rgba(245,245,247,.05) 35%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
body.home .hp-hero__cert-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--nb-border);
  height: 56px;
  z-index: 10;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
body.home .hp-hero__cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--nb-text-mid);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-hero__cert-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--nb-brand);
  opacity: .8;
  flex-shrink: 0;
}
body.home .hp-hero__scroll-arrow {
  position: absolute;
  right: 20px;
  bottom: 72px;
  z-index: 15;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.35);
  color: var(--nb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
  backdrop-filter: blur(4px);
}
body.home .hp-hero__scroll-arrow:hover {
  background: rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.8);
}

/* ============================================================
   CATEGORY NAV
   ============================================================ */
body.home .hp-cat-nav {
  background: var(--nb-white);
  border-bottom: 1px solid var(--nb-border);
  position: sticky;
  top: 70px;
  z-index: 90;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-cat-nav__inner {
  max-width: var(--nb-max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: stretch;
}
body.home .hp-cat-nav__item {
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 56px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--nb-text-muted);
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-cat-nav__item:hover {
  color: var(--nb-black);
}
body.home .hp-cat-nav__item.active {
  color: var(--nb-brand);
  border-bottom-color: var(--nb-brand);
}
body.home .hp-cat-nav__divider {
  width: 1px;
  background: var(--nb-border);
  margin: 14px 0;
  flex-shrink: 0;
}
body.home .hp-cat-nav__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding-left: 24px;
  border-left: 1px solid var(--nb-border);
}
body.home .hp-cat-nav__cta button {
  background: var(--nb-brand);
  color: var(--nb-white);
  border: none;
  padding: 8px 22px;
  border-radius: var(--nb-radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-cat-nav__cta button:hover {
  background: var(--nb-brand-dark);
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
body.home .hp-cat-cards__section {
  background: var(--nb-white);
}
body.home .hp-cat-cards__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
body.home .hp-cat-card {
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
  display: block;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-cat-card:hover {
  box-shadow: var(--nb-shadow-md);
  transform: translateY(-3px);
  border-color: var(--nb-brand);
}
body.home .hp-cat-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--nb-bg-faint);
  position: relative;
}
body.home .hp-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .4s ease;
}
body.home .hp-cat-card:hover .hp-cat-card__img img {
  transform: scale(1.04);
}
body.home .hp-cat-card__body {
  padding: 14px 16px;
  text-align: center;
  border-top: 1px solid var(--nb-border);
}
body.home .hp-cat-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
}

/* ============================================================
   WHAT WE DO (WWD)
   ============================================================ */
body.home .hp-wwd__section {
  background: var(--nb-bg-faint);
}
body.home .hp-wwd__wrap {
  max-width: var(--nb-max-w);
  margin: 0 auto;
  padding: 90px 48px;
}
body.home .hp-wwd__head {
  margin-bottom: 56px;
}
body.home .hp-wwd__row {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 80px;
}
body.home .hp-wwd__row:last-child {
  margin-bottom: 0;
}
body.home .hp-wwd__row.reverse {
  flex-direction: row-reverse;
}
body.home .hp-wwd__img {
  width: 42%;
  flex-shrink: 0;
  height: 320px;
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-wwd__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
body.home .hp-wwd__img:hover img {
  transform: scale(1.03);
}
body.home .hp-wwd__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--nb-border);
  border-radius: 6px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--nb-shadow-sm);
  z-index: 2;
}
body.home .hp-wwd__badge-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--nb-brand);
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-wwd__badge-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--nb-black);
  letter-spacing: .4px;
  text-transform: uppercase;
}
body.home .hp-wwd__cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
body.home .hp-wwd__card {
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 24px 20px;
  transition: all .25s;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-wwd__card:hover {
  box-shadow: var(--nb-shadow-md);
  transform: translateY(-2px);
  border-color: var(--nb-brand);
}
body.home .hp-wwd__bar {
  width: 20px;
  height: 2px;
  background: var(--nb-brand);
  margin-bottom: 14px;
}
body.home .hp-wwd__ct {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  margin-bottom: 8px;
}
body.home .hp-wwd__cd {
  font-size: 14px;
  color: var(--nb-text-mid);
  line-height: 1.65;
}

/* ============================================================
   SERVICES
   ============================================================ */
body.home .hp-services__section {
  background: var(--nb-white);
}
body.home .hp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px;
  margin-top: 40px;
}
body.home .hp-service-card {
  background: var(--nb-bg-faint);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 40px 32px;
  transition: all .3s;
  box-shadow: var(--nb-shadow-sm);
  display: flex;
  flex-direction: column;
}
body.home .hp-service-card:hover {
  border-color: var(--nb-brand);
  transform: translateY(-3px);
  box-shadow: var(--nb-shadow-md);
}
body.home .hp-service-card__num {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--nb-brand-dark);
  line-height: 1;
  margin-bottom: 16px;
}
body.home .hp-service-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  margin-bottom: 6px;
}
body.home .hp-service-card__sub {
  font-size: 12px;
  color: var(--nb-brand);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
body.home .hp-service-card__desc {
  font-size: 15px;
  color: var(--nb-text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
body.home .hp-service-card__features {
  list-style: none;
  flex: 1;
  padding: 0;
  margin: 0;
}
body.home .hp-service-card__features li {
  font-size: 14px;
  color: var(--nb-text-mid);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--nb-border);
}
body.home .hp-service-card__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--nb-brand);
  flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
body.home .hp-why__section {
  background: var(--nb-bg-faint);
}
body.home .hp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
body.home .hp-why-card {
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 32px 28px;
  transition: all .25s;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-why-card:hover {
  box-shadow: var(--nb-shadow-md);
  transform: translateY(-2px);
  border-color: var(--nb-brand);
}
body.home .hp-why-card__icon {
  width: 44px;
  height: 44px;
  background: var(--nb-brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
body.home .hp-why-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  margin-bottom: 10px;
  line-height: 1.35;
}
body.home .hp-why-card p {
  font-size: 14px;
  color: var(--nb-text-mid);
  line-height: 1.75;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
body.home .hp-products__section {
  background: var(--nb-bg-faint);
}
body.home .hp-featured-cat {
  margin-bottom: 48px;
}
body.home .hp-featured-cat:last-child {
  margin-bottom: 0;
}
body.home .hp-featured-cat__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--nb-border);
}
body.home .hp-featured-cat__title {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
}
body.home .hp-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
body.home .hp-featured-cat .hp-products__grid {
  margin-top: 16px;
}
body.home .hp-product-card {
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  transition: all .3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-product-card:hover {
  box-shadow: var(--nb-shadow-md);
  transform: translateY(-3px);
  border-color: var(--nb-brand);
}
body.home .hp-product-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--nb-bg-faint);
  position: relative;
  flex-shrink: 0;
  border-bottom: 1px solid var(--nb-border);
}
body.home .hp-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}
body.home .hp-product-card:hover .hp-product-card__img img {
  transform: scale(1.04);
}
body.home .hp-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--nb-brand);
  color: var(--nb-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-product-card__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.home .hp-product-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  line-height: 1.4;
  margin-bottom: 8px;
}
body.home .hp-product-card__meta {
  font-size: 13px;
  color: var(--nb-text-muted);
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.6;
}
body.home .hp-product-card__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--nb-border);
}
body.home .hp-product-card__moq {
  font-size: 11px;
  font-weight: 700;
  color: var(--nb-text-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1.5;
  flex: 1;
}
body.home .hp-product-card__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--nb-brand);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   FABRICS
   ============================================================ */
body.home .hp-fabrics__section {
  background: var(--nb-white);
}
body.home .hp-fabrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
body.home .hp-fabric-card {
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  transition: all .25s;
  box-shadow: var(--nb-shadow-sm);
  display: flex;
  flex-direction: column;
}
body.home .hp-fabric-card:hover {
  box-shadow: var(--nb-shadow-md);
  transform: translateY(-2px);
  border-color: var(--nb-brand);
}
body.home .hp-fabric-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--nb-bg-faint);
  border-bottom: 1px solid var(--nb-border);
}
body.home .hp-fabric-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
body.home .hp-fabric-card:hover .hp-fabric-card__img img {
  transform: scale(1.04);
}
body.home .hp-fabric-card__body {
  padding: 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.home .hp-fabric-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  margin-bottom: 8px;
}
body.home .hp-fabric-card__desc {
  font-size: 13px;
  color: var(--nb-text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
body.home .hp-fabric-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
body.home .hp-fabric-card__tag {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--nb-brand-light);
  color: var(--nb-brand-dark);
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-fabric-card__read-more,
body.home .hp-fabrics__section .hp-sec-foot {
  display: none;
}

/* ============================================================
   TECHNOLOGY
   ============================================================ */
body.home .hp-tech__section {
  background: var(--nb-bg-faint);
}
body.home .hp-tech__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
body.home .hp-tech__visual {
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--nb-shadow-md);
}
body.home .hp-tech__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home .hp-tech__points {
  display: flex;
  flex-direction: column;
}
body.home .hp-tech__point {
  padding: 24px 0;
  border-bottom: 1px solid var(--nb-border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
body.home .hp-tech__point:first-child {
  padding-top: 0;
}
body.home .hp-tech__point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
body.home .hp-tech__point-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--nb-brand-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .hp-tech__point-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--nb-black);
  margin-bottom: 6px;
  letter-spacing: .2px;
  text-transform: uppercase;
}
body.home .hp-tech__point-body p {
  font-size: 14px;
  color: var(--nb-text-mid);
  line-height: 1.75;
}
body.home .hp-tech__cta {
  margin-top: 40px;
}

body.home .hp-tech__sourcing-link {
  margin-top: 20px;
  font-size: 14px;
  color: var(--nb-text-muted);
}
body.home .hp-tech__sourcing-link a {
  color: var(--nb-text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--nb-border);
  transition: border-color .2s ease;
}
body.home .hp-tech__sourcing-link a:hover {
  border-color: var(--nb-brand);
  color: var(--nb-brand);
}

/* ============================================================
   QUALITY
   ============================================================ */
body.home .hp-quality__section {
  background: var(--nb-white);
}
body.home .hp-quality__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
body.home .hp-quality-card {
  background: var(--nb-bg-faint);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 40px 32px;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-quality-card__step-num {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--nb-brand-light);
  line-height: 1;
  margin-bottom: 12px;
  -webkit-text-stroke: 1.5px var(--nb-brand);
}
body.home .hp-quality-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  margin-bottom: 10px;
  letter-spacing: .2px;
  text-transform: uppercase;
}
body.home .hp-quality-card p {
  font-size: 14px;
  color: var(--nb-text-mid);
  line-height: 1.75;
}
body.home .hp-quality-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  background: var(--nb-brand-light);
  color: var(--nb-brand);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 3px;
}
body.home .hp-quality__guarantee {
  margin-top: 40px;
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-quality__guarantee-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--nb-brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .hp-quality__guarantee-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--nb-black);
  margin-bottom: 6px;
}
body.home .hp-quality__guarantee-text p {
  font-size: 15px;
  color: var(--nb-text-mid);
  line-height: 1.75;
}

/* ============================================================
   ABOUT (WWA)
   ============================================================ */
body.home .hp-about__section {
  background: var(--nb-bg-faint);
}
body.home .hp-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
body.home .hp-about__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--nb-brand);
  margin-bottom: 16px;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-about__title {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--nb-black);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -.5px;
}
body.home .hp-about__body {
  font-size: 16px;
  color: var(--nb-text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}
body.home .hp-about__btns {
  display: flex;
  gap: 16px;
}
body.home .hp-about__img {
  height: 440px;
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  box-shadow: var(--nb-shadow-md);
}
body.home .hp-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home .hp-about__video-cover {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
body.home .hp-about__play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.65);
  color: var(--nb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
body.home .hp-about__video-cover:hover .hp-about__play-btn {
  background: rgba(0,0,0,.85);
  transform: scale(1.08);
}

/* ============================================================
   PROCESS
   ============================================================ */
body.home .hp-process__section {
  background: var(--nb-white);
}
body.home .hp-process__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  margin-top: 48px;
}
body.home .hp-process__grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--nb-border);
  z-index: 0;
}
body.home .hp-process__step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
body.home .hp-process__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--nb-bg-faint);
  border: 1px solid var(--nb-border);
  margin-bottom: 14px;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-process__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home .hp-process__dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--nb-white);
  border: 1.5px solid var(--nb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--nb-black);
  margin: 0 auto 12px;
  transition: all .25s;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-process__step:hover .hp-process__dot {
  background: var(--nb-brand);
  border-color: var(--nb-brand);
  color: var(--nb-white);
}
body.home .hp-process__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--nb-black);
  margin-bottom: 5px;
}
body.home .hp-process__desc {
  font-size: 12px;
  color: var(--nb-text-muted);
  line-height: 1.55;
}
body.home .hp-process__time {
  font-size: 11px;
  color: var(--nb-brand);
  font-weight: 700;
  margin-top: 6px;
}

/* ============================================================
   FAQ + CTA
   ============================================================ */
body.home .hp-faq__section {
  background: var(--nb-bg-faint);
}
body.home .hp-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
body.home .hp-faq__list {
  display: flex;
  flex-direction: column;
}
body.home .hp-faq__item {
  border-bottom: 1px solid var(--nb-border);
}
body.home .hp-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: 'Roboto', sans-serif;
}
body.home .hp-faq__q span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  flex: 1;
  line-height: 1.4;
}
body.home .hp-faq__plus {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
body.home .hp-faq__plus::before,
body.home .hp-faq__plus::after {
  content: '';
  position: absolute;
  background: var(--nb-brand);
  border-radius: 1px;
  transition: transform .2s, opacity .2s;
}
body.home .hp-faq__plus::before {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}
body.home .hp-faq__plus::after {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}
body.home .hp-faq__q[aria-expanded="true"] .hp-faq__plus::before {
  transform: rotate(90deg);
  opacity: 0;
}
body.home .hp-faq__a {
  padding: 0 0 22px;
}
body.home .hp-faq__a p {
  font-size: 15px;
  color: var(--nb-text-mid);
  line-height: 1.8;
}
body.home .hp-cta-box {
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 40px;
  position: sticky;
  top: 112px;
  box-shadow: var(--nb-shadow-md);
}
body.home .hp-cta-box__kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--nb-brand);
  margin-bottom: 12px;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-cta-box h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--nb-black);
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
body.home .hp-cta-box > p {
  color: var(--nb-text-mid);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.7;
}
body.home .hp-cta-box__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
body.home .hp-cta-box__point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--nb-text-mid);
  font-size: 14px;
  font-weight: 500;
}
body.home .hp-cta-box__point-dot {
  width: 6px;
  height: 6px;
  background: var(--nb-brand);
  border-radius: 50%;
  flex-shrink: 0;
}
body.home .hp-btn--pink-full {
  background: var(--nb-brand);
  color: var(--nb-white);
  border: none;
  width: 100%;
  padding: 16px;
  border-radius: var(--nb-radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 12px;
  transition: background .2s;
  display: block;
  text-align: center;
  text-decoration: none;
}
body.home .hp-btn--pink-full:hover {
  background: var(--nb-brand-dark);
  color: var(--nb-white);
}
body.home .hp-cta-box__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: var(--nb-radius);
  background: #25d366;
  color: var(--nb-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}
body.home .hp-cta-box__wa:hover {
  opacity: .9;
  color: var(--nb-white);
}
body.home .hp-cta-box__note {
  text-align: center;
  font-size: 12px;
  color: var(--nb-text-muted);
  margin-top: 12px;
}

/* ============================================================
   MODAL
   ============================================================ */
body.home .hp-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.home .hp-modal__overlay.hp-modal--open {
  display: flex;
}
body.home .hp-modal__box {
  background: var(--nb-white);
  border-radius: var(--nb-radius-lg);
  width: 100%;
  max-width: 540px;
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
  border: 1px solid var(--nb-border);
  position: relative;
  animation: nbModalSlide .35s cubic-bezier(.16,1,.3,1);
}
@keyframes nbModalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
body.home .hp-modal__header {
  padding: 24px 32px 18px;
  border-bottom: 1px solid var(--nb-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.home .hp-modal__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--nb-black);
}
body.home .hp-modal__close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--nb-text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .2s;
}
body.home .hp-modal__close:hover {
  background: var(--nb-bg-faint);
  color: var(--nb-black);
}
body.home .hp-modal__body {
  padding: 24px 32px 32px;
}
/* WPForms styling inside inquiry modal & CTA box */
body.home .hp-modal__body .wpforms-container,
body.home .hp-cta-box .wpforms-container { margin: 0; }
body.home .hp-modal__body .wpforms-field,
body.home .hp-cta-box .wpforms-field {
  margin-bottom: 20px;
  padding: 0;
}
body.home .hp-modal__body .wpforms-field-label,
body.home .hp-cta-box .wpforms-field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--nb-black);
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-modal__body .wpforms-required-label,
body.home .hp-cta-box .wpforms-required-label { color: var(--nb-brand); }
body.home .hp-modal__body .wpforms-field input[type="text"],
body.home .hp-modal__body .wpforms-field input[type="email"],
body.home .hp-modal__body .wpforms-field input[type="tel"],
body.home .hp-modal__body .wpforms-field textarea,
body.home .hp-modal__body .wpforms-field select,
body.home .hp-cta-box .wpforms-field input[type="text"],
body.home .hp-cta-box .wpforms-field input[type="email"],
body.home .hp-cta-box .wpforms-field input[type="tel"],
body.home .hp-cta-box .wpforms-field textarea,
body.home .hp-cta-box .wpforms-field select {
  width: 100%;
  max-width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius);
  font-family: inherit;
  font-size: 14px;
  transition: all .2s;
  background: var(--nb-bg-faint);
  color: var(--nb-text);
  height: auto;
}
body.home .hp-modal__body .wpforms-field input:focus,
body.home .hp-modal__body .wpforms-field textarea:focus,
body.home .hp-modal__body .wpforms-field select:focus,
body.home .hp-cta-box .wpforms-field input:focus,
body.home .hp-cta-box .wpforms-field textarea:focus,
body.home .hp-cta-box .wpforms-field select:focus {
  outline: none;
  border-color: var(--nb-brand);
  background: var(--nb-white);
  box-shadow: 0 0 0 3px var(--nb-brand-light);
}
body.home .hp-modal__body .wpforms-submit,
body.home .hp-cta-box .wpforms-submit {
  background: var(--nb-black);
  color: var(--nb-white);
  border: none;
  width: 100%;
  padding: 13px;
  border-radius: var(--nb-radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
  transition: all .2s;
  text-transform: uppercase;
}
body.home .hp-modal__body .wpforms-submit:hover,
body.home .hp-cta-box .wpforms-submit:hover {
  background: var(--nb-brand);
}
body.home .hp-modal__body .wpforms-submit-container,
body.home .hp-cta-box .wpforms-submit-container { padding: 0; }
body.home .hp-modal__body .wpforms-submit-spinner,
body.home .hp-cta-box .wpforms-submit-spinner { display: none; }
body.home .hp-modal__body .wpforms-error-noscript,
body.home .hp-modal__body #wpforms-error-noscript,
body.home .hp-cta-box .wpforms-error-noscript,
body.home .hp-cta-box #wpforms-error-noscript { display: none; }
body.home .hp-modal__body .wpforms-confirmation-container,
body.home .hp-cta-box .wpforms-confirmation-container,
body.home .hp-modal__body .wpforms-confirmation,
body.home .hp-cta-box .wpforms-confirmation {
  color: var(--nb-black);
  background: transparent;
  border: none;
  padding: 0;
}
body.home .hp-modal__body .wpforms-confirmation-container p,
body.home .hp-cta-box .wpforms-confirmation-container p,
body.home .hp-modal__body .wpforms-confirmation p,
body.home .hp-cta-box .wpforms-confirmation p {
  color: var(--nb-black);
}

/* ============================================================
   TOAST
   ============================================================ */
body.home .hp-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--nb-black);
  color: var(--nb-white);
  padding: 14px 24px;
  border-radius: var(--nb-radius);
  box-shadow: var(--nb-shadow-md);
  font-weight: 600;
  font-size: 13px;
  z-index: 1000;
  display: none;
  border-left: 3px solid var(--nb-brand);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
body.home .hp-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
body.home .hp-fade-up.hp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  body.home .hp-hero {
    grid-template-columns: 1fr;
    height: 420px;
  }
  body.home .hp-hero__left {
    padding: 48px 24px;
  }
  body.home .hp-hero__right {
    height: 420px;

  }
  body.home .hp-hero__cert-bar {
    position: static;
    flex-wrap: wrap;
    gap: 24px;
    padding: 16px 24px;
    height: 420px;
  }
  body.home .hp-hero__title {
    font-size: 40px;
  }
  body.home .hp-cat-nav__inner {
    overflow-x: auto;
    padding: 0 24px;
  }
  body.home .hp-wwd__row,
  body.home .hp-wwd__row.reverse {
    flex-direction: column;
  }
  body.home .hp-wwd__img {
    width: 100%;
    height: auto; aspect-ratio: 4/3;
  }
  body.home .hp-wwd__cards {
    grid-template-columns: 1fr;
  }
  body.home .hp-tech__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-tech__visual {
    height: 300px;
  }
  body.home .hp-process__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  body.home .hp-faq__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-cat-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  body.home .hp-cat-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  body.home .hp-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-fabrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-process__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 834px) {
  body.home .hp-hero__right {
    height: 360px;
  }
  body.home .hp-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
  }
  body.home .hp-hero__title {
    font-size: 36px;
  }
  body.home .hp-hero__btns {
    flex-direction: column;
    align-items: stretch;
  }
  body.home .hp-cat-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-fabrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-quality__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-about__inner {
    grid-template-columns: 1fr;
  }
  body.home .hp-faq__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-wwd__row,
  body.home .hp-wwd__row.reverse {
    flex-direction: column;
  }
  body.home .hp-wwd__img {
    width: 100%;
    height: auto; aspect-ratio: 4/3;
  }
  body.home .hp-product-card__img {
    aspect-ratio: 3/4;
  }
}

@media (max-width: 767px) {
  body.home .hp-w {
    padding: 0 20px;
  }
  body.home .hp-section {
    padding: 56px 0;
  }
  body.home .hp-hero__left {
    padding: 32px 20px;
  }
  body.home .hp-hero__title {
    font-size: 32px;
  }
  body.home .hp-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
  }
  body.home .hp-hero__stat strong {
    font-size: 29px;
  }
  body.home .hp-hero__right {
    height: 260px;
  }
  body.home .hp-services__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-why__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  body.home .hp-fabrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-quality__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-about__inner {
    grid-template-columns: 1fr;
  }
  body.home .hp-about__img {
    height: 280px;
  }
  body.home .hp-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-cat-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-cat-nav__item {
    padding: 0 13px;
    font-size: 12px;
  }
  body.home .hp-sec-title {
    font-size: 26px;
  }
  body.home .hp-product-card__img {
    aspect-ratio: 4/5;
  }
}
