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

:root {
  --ufp-navy: #0d1631;
  --ufp-navy-dark: #0a1128;
  --ufp-red: #ed1c25;
  --ufp-orange: #f47622;
  --ufp-ink: #151b2d;
  --ufp-muted: #5a6172;
  --ufp-line: #e7eaf0;
  --ufp-soft: #f5f7fb;
  --ufp-shadow: 0 20px 45px rgba(13, 22, 49, .10);
}

html { scroll-behavior: smooth; }

body {
  color: var(--ufp-ink);
  background: #fff;
  font-family: "Poppins", Arial, sans-serif;
  overflow-x: hidden;
}

img { max-width: 100%; }
a { text-decoration: none; }
::selection { background: var(--ufp-orange); color: #fff; }

.site-header {
  background: rgba(10, 17, 40, .98);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.navbar { min-height: 76px; }
.navbar-brand{padding: 0;}
.brand-logo {
  width: auto;
  height: 60px;
  display: block;
}

.navbar-dark .navbar-nav .nav-link {
  color: #b9c1d4;
  font-size: 15px;
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-toggler {
  border-color: rgba(255,255,255,.2);
  box-shadow: none !important;
}

.btn {
  border-radius: 8px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.btn-flame {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--ufp-orange), var(--ufp-red));
  box-shadow: 0 12px 26px rgba(237, 28, 37, .28);
}

.btn-flame:hover,
.btn-flame:focus {
  color: #fff;
  background: linear-gradient(135deg, #ff862d, #dc121a);
  transform: translateY(-1px);
}

.btn-ghost {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: #fff;
  border-color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.14);
}

.hero-section {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(13,22,49,.96) 0%, rgba(13,22,49,.88) 48%, rgba(13,22,49,.72) 100%),
    radial-gradient(900px 420px at 86% 5%, rgba(244,118,34,.36), transparent 65%),
    radial-gradient(700px 440px at 100% 100%, rgba(237,28,37,.26), transparent 60%),
    var(--ufp-navy);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: auto -12% -28% 44%;
  height: 310px;
  background: linear-gradient(135deg, rgba(244,118,34,.28), rgba(237,28,37,.18));
  transform: rotate(-8deg);
  border-radius: 24px;
  animation: hero-sweep 13s ease-in-out infinite alternate;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 240px at var(--hero-x, 18%) 20%, rgba(255,255,255,.10), transparent 62%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.07) 48%, transparent 58%);
  background-size: 100% 100%, 220% 220%;
  opacity: .85;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: hero-gradient-flow 11s ease-in-out infinite alternate;
}

.hero-content {
  min-height: calc(100vh - 76px);
  padding: 78px 0;
  position: relative;
  z-index: 2;
}

.hero-content .col-lg-6:first-child {
  animation: hero-copy-in .85s ease-out both;
}

.hero-content .col-lg-6:last-child {
  animation: hero-visual-in .95s ease-out .12s both;
}

.hero-copy {
  color: #c3cbdd;
  font-size: 1.14rem;
  line-height: 1.7;
  max-width: 640px;
}

.hero-visual {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 30px 70px rgba(0,0,0,.34);
  transform: translateZ(0);
  animation: hero-float 6s ease-in-out 1.1s infinite;
}

.hero-visual img {
  width: 100%;
  display: block;
}

.about-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 96px 0 86px;
  background:
    linear-gradient(125deg, rgba(10,17,40,.97), rgba(13,22,49,.88)),
    radial-gradient(760px 360px at 88% 12%, rgba(244,118,34,.34), transparent 64%),
    radial-gradient(640px 300px at 8% 100%, rgba(237,28,37,.22), transparent 62%),
    var(--ufp-navy);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.06) 48%, transparent 62%);
  background-size: 220% 220%;
  animation: hero-gradient-flow 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  max-width: 680px;
  margin: 0 0 22px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.04;
  font-weight: 500;
}

.about-hero p {
  max-width: 620px;
  margin-bottom: 30px;
  color: #c8d0df;
  font-size: 1.12rem;
  line-height: 1.75;
}

.about-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 28px 70px rgba(0,0,0,.34);
}

.about-hero-card img {
  width: 100%;
  display: block;
}

.about-since {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-width: 146px;
  padding: 16px 18px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--ufp-orange), var(--ufp-red));
  box-shadow: 0 18px 34px rgba(237,28,37,.3);
}

.about-since span {
  display: block;
  font-size: .78rem;
  opacity: .85;
}

.about-since strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 92px 0 84px;
  background:
    linear-gradient(125deg, rgba(10,17,40,.97), rgba(13,22,49,.86)),
    radial-gradient(760px 360px at 88% 10%, rgba(237,28,37,.32), transparent 64%),
    radial-gradient(620px 300px at 6% 100%, rgba(244,118,34,.22), transparent 62%),
    var(--ufp-navy);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.06) 48%, transparent 62%);
  background-size: 220% 220%;
  animation: hero-gradient-flow 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 1.05;
  font-weight: 500;
}

.contact-hero p {
  max-width: 620px;
  margin: 0;
  color: #c8d0df;
  font-size: 1.12rem;
  line-height: 1.75;
}

.contact-hero-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.contact-hero-item {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}

.contact-hero-item span {
  display: block;
  margin-bottom: 8px;
  color: #ffb47d;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-hero-item strong {
  display: block;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.55;
}

.brand-strip {
  position: relative;
  z-index: 2;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(10, 17, 40, .28);
}

@keyframes hero-gradient-flow {
  0% {
    --hero-x: 16%;
    background-position: 0 0, 0% 50%;
  }
  100% {
    --hero-x: 82%;
    background-position: 0 0, 100% 50%;
  }
}

@keyframes hero-sweep {
  0% {
    transform: translate3d(-18px, 10px, 0) rotate(-8deg);
    opacity: .72;
  }
  100% {
    transform: translate3d(24px, -10px, 0) rotate(-5deg);
    opacity: .92;
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.brand-strip span:not(.brand-label) {
  color: #e3e8f4;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.brand-label,
.eyebrow {
  color: var(--ufp-red);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand-label,
.text-warm { color: #ff9a5a; }

.section-pad { padding: 92px 0; }

.section-title {
  color: var(--ufp-navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
}

.section-intro { max-width: 700px; }

.lead-copy {
  color: var(--ufp-muted);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 18px 0 0;
}

.image-frame {
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  border: 1px solid var(--ufp-line);
  border-radius: 14px;
  background: #eef1f5;
  box-shadow: var(--ufp-shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-card,
.value-card,
.form-panel {
  border: 1px solid var(--ufp-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(13,22,49,.05);
}

.metric-card {
  padding: 20px;
  min-height: 120px;
}

.metric-card strong {
  display: block;
  color: var(--ufp-red);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
}

.metric-card span {
  color: #697184;
  font-size: .92rem;
}

.about-story-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(560px 300px at 0 100%, rgba(244,118,34,.07), transparent 72%),
    #fff;
}

.sticky-story {
  position: sticky;
  top: 112px;
}

.who-we-are-panel {
  position: sticky;
  overflow: hidden;
  min-height: 480px;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 20px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(17,29,64,.96), rgba(10,17,40,.99)),
    var(--ufp-navy);
  box-shadow: 0 28px 65px rgba(13,22,49,.2);
}

.who-we-are-panel::after {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -76px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.025), 0 0 0 84px rgba(255,255,255,.018);
}

.who-we-are-glow {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(244,118,34,.22);
  filter: blur(55px);
  pointer-events: none;
}

.who-we-are-panel > *:not(.who-we-are-glow) { position: relative; z-index: 1; }

.who-we-are-panel h2 {
  margin: 16px 0 20px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.who-we-are-panel > p {
  max-width: 360px;
  margin: 0;
  color: #c4ccde;
  line-height: 1.7;
}

.founder-signature {
  position: absolute !important;
  right: clamp(30px, 4vw, 46px);
  bottom: 38px;
  left: clamp(30px, 4vw, 46px);
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.founder-initials {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--ufp-orange), var(--ufp-red));
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.founder-signature small,
.founder-signature strong { display: block; }
.founder-signature small { color: #919db7; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.founder-signature strong { margin-top: 3px; color: #fff; font-weight: 500; }

.about-story-copy {
  align-self: center;
  padding-top: 8px;
}

.story-intro-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
  color: var(--ufp-red);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.story-intro-line i { height: 1px; flex: 1; background: linear-gradient(90deg, rgba(237,28,37,.4), transparent); }


.about-metric {
  min-height: 132px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.98)),
    radial-gradient(160px 90px at 100% 0, rgba(244,118,34,.15), transparent 70%);
}

.about-profile-note {
  max-width: 390px;
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--ufp-red);
  color: var(--ufp-muted);
  background: #f7f8fa;
  line-height: 1.65;
}

.company-profile-section {
  background:
    radial-gradient(620px 280px at 100% 0, rgba(244,118,34,.08), transparent 70%),
    #f5f7fa;
}

.company-profile-heading { margin-bottom: 36px; }

.company-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.profile-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 34px;
  border: 1px solid var(--ufp-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13,22,49,.055);
}

.profile-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ufp-orange), var(--ufp-red));
}

.profile-card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 10px;
  color: var(--ufp-red);
  background: rgba(237,28,37,.07);
  font-size: .8rem;
  font-weight: 600;
}

.profile-card h3 {
  margin: 0 0 14px;
  color: var(--ufp-navy);
  font-size: 1.3rem;
  font-weight: 500;
}

.profile-card p {
  margin: 0;
  color: var(--ufp-muted);
  line-height: 1.75;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.industry-tags span {
  padding: 7px 10px;
  border: 1px solid #e4e7ed;
  border-radius: 999px;
  color: #50596d;
  background: #f7f8fa;
  font-size: .73rem;
  font-weight: 500;
}

.profile-check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.profile-check-list li {
  position: relative;
  padding-left: 25px;
  color: #50596d;
  font-size: .9rem;
}

.profile-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--ufp-red);
  font-weight: 600;
}

.profile-vision-band {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
  padding: 40px 44px;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(480px 200px at 100% 0, rgba(244,118,34,.28), transparent 70%),
    linear-gradient(135deg, var(--ufp-navy), var(--ufp-navy-dark));
  box-shadow: var(--ufp-shadow);
}

.profile-vision-mark {
  color: #ff9a5a;
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: .75;
}

.profile-vision-band h3 {
  margin: 7px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 500;
}

.profile-vision-band p { max-width: 950px; margin: 0; color: #c7cede; line-height: 1.75; }

.value-section {
  background: linear-gradient(180deg, #f7f8fb 0%, #fff 100%);
}

.value-card {
  height: 100%;
  padding: 26px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.value-card:hover {
  border-color: rgba(237,28,37,.22);
  box-shadow: 0 18px 38px rgba(13,22,49,.10);
  transform: translateY(-4px);
}

.value-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--ufp-orange), var(--ufp-red));
  font-size: .86rem;
  font-weight: 500;
}

.value-card h3 {
  margin: 0 0 12px;
  color: var(--ufp-navy);
  font-size: 1.24rem;
  font-weight: 500;
}

.value-card p {
  margin: 0;
  color: var(--ufp-muted);
  line-height: 1.65;
}

.about-brands-section {
  padding-top: 0;
}

.about-brand-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: center;
  padding: 38px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(420px 220px at 100% 0, rgba(244,118,34,.34), transparent 70%),
    linear-gradient(135deg, var(--ufp-navy), var(--ufp-navy-dark));
  box-shadow: var(--ufp-shadow);
}

.about-brand-panel h2 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.14;
  font-weight: 500;
}

.about-brand-panel p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #c3cbdd;
  line-height: 1.7;
}

.about-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-brand-grid span {
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #eef3ff;
  background: rgba(255,255,255,.07);
  font-weight: 500;
  text-align: center;
}

.about-cta-section {
  padding: 0 0 92px;
}

.about-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid rgba(237,28,37,.14);
  border-radius: 18px;
  background:
    radial-gradient(360px 180px at 0 0, rgba(244,118,34,.15), transparent 70%),
    #fff;
  box-shadow: var(--ufp-shadow);
}

.about-cta h2 {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--ufp-navy);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.18;
  font-weight: 500;
}

.products-section {
  background:
    linear-gradient(180deg, #f7f8fb 0%, #fff 100%);
}

.text-link {
  color: var(--ufp-red);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
}

.text-link:hover { color: var(--ufp-orange); }

.product-card {
  position: relative;
  overflow: hidden;
  color: inherit;
  border: 1px solid var(--ufp-line);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(13,22,49,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover {
  color: inherit;
  transform: translateY(-5px);
  border-color: rgba(237,28,37,.22);
  box-shadow: 0 20px 44px rgba(13,22,49,.14);
}

.product-card .card-img-top {
  height: 300px;
  object-fit: cover;
  background: #eef1f5;
}

.product-card .card-body { padding: 20px; }

.product-card h3,
.value-card h3,
.thanks h3 {
  color: var(--ufp-navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0;
}

.product-card p {
  color: #8a8f9c;
  margin: 7px 0 0;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(10,17,40,.82);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.values-section {
  background:
    radial-gradient(720px 260px at 10% 0%, rgba(244,118,34,.08), transparent 65%),
    #fff;
}

.value-card {
  padding: 30px 26px;
  border-top: 4px solid var(--ufp-red);
}

.value-card:nth-child(even),
.col-sm-6:nth-child(even) .value-card {
  border-top-color: var(--ufp-orange);
}

.value-card .number {
  color: var(--ufp-red);
  font-family: "Poppins", Arial, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.value-card p {
  color: #6b7180;
  line-height: 1.65;
  margin: 10px 0 0;
}

.catalogue-section {
  padding: 0 0 92px;
}

.catalogue-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(760px 360px at 92% 0%, rgba(244,118,34,.38), transparent 60%),
    linear-gradient(135deg, #0d1631, #101d42);
  box-shadow: var(--ufp-shadow);
}

.catalogue-band h2 {
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 8px 0 8px;
}

.catalogue-band p {
  color: #c3cbdd;
  margin: 0;
  max-width: 620px;
}

.contact-section { background: var(--ufp-soft); }

.contact-page-section {
  background:
    linear-gradient(180deg, #f7f8fb 0%, #fff 100%);
}

.contact-info-panel {
  position: sticky;
  top: 112px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--ufp-red);
  border: 1px solid var(--ufp-line);
  border-radius: 12px;
  background: #fff;
}

.contact-item small {
  display: block;
  color: #8a8f9c;
  font-size: .82rem;
}

.contact-item strong {
  display: block;
  color: var(--ufp-navy);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
}

.contact-item address {
  max-width: 390px;
  margin: 0;
  color: var(--ufp-navy);
  font-family: "Poppins", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}

.contact-route-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(237,28,37,.14);
  border-radius: 14px;
  background:
    radial-gradient(220px 120px at 100% 0, rgba(244,118,34,.16), transparent 68%),
    #fff;
  box-shadow: 0 12px 26px rgba(13,22,49,.05);
}

.contact-route-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--ufp-red);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-route-card p {
  margin: 0;
  color: var(--ufp-muted);
  line-height: 1.65;
}

.form-panel {
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--ufp-shadow);
}

.contact-form-panel {
  position: relative;
  overflow: hidden;
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--ufp-orange), var(--ufp-red));
}

.form-label {
  color: var(--ufp-navy);
  font-size: .86rem;
  font-weight: 500;
}

.form-control,
.form-select {
  min-height: 48px;
  border: 1.5px solid #e2e5ec;
  border-radius: 9px;
  color: var(--ufp-navy);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ufp-orange);
  box-shadow: 0 0 0 .22rem rgba(244,118,34,.14);
}

.thanks {
  display: none;
  text-align: center;
  padding: 34px 10px;
}

.thanks-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--ufp-orange), var(--ufp-red));
}

.thanks p { color: #6b7180; }

.catalogue-modal .modal-content,
.quote-modal .modal-content {
  overflow: hidden;
  color: #fff;
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(500px 240px at 100% 0%, rgba(244,118,34,.44), transparent 62%),
    radial-gradient(420px 220px at 0% 100%, rgba(237,28,37,.24), transparent 60%),
    linear-gradient(145deg, #0d1631, #101d42);
  box-shadow: 0 30px 90px rgba(10,17,40,.38);
}

.catalogue-modal .modal-body,
.quote-modal .modal-body {
  position: relative;
  padding: clamp(28px, 5vw, 42px);
}

.catalogue-modal .btn-close,
.quote-modal .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  opacity: .9;
}

.catalogue-modal-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(244,118,34,.95), rgba(237,28,37,.95));
  box-shadow: 0 16px 36px rgba(237,28,37,.28);
}

.catalogue-modal h2,
.quote-modal h2 {
  max-width: 420px;
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.12;
}

.catalogue-modal-copy {
  color: #d9dfef;
  line-height: 1.7;
  margin-bottom: 24px;
}

.catalogue-modal .form-label,
.quote-modal .form-label {
  color: #fff;
}

.catalogue-modal .input-group-text,
.quote-modal .input-group-text {
  color: #fff;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.11);
}

.catalogue-modal .form-control,
.quote-modal .form-control,
.quote-modal .form-select {
  color: #0d1631;
  border-color: rgba(255,255,255,.4);
}

.catalogue-error {
  min-height: 22px;
  margin-top: 8px;
  color: #ffd0d0;
  font-size: .88rem;
}

.catalogue-unlocked {
  display: none;
}

.catalogue-success {
  margin: 10px 0 18px;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.10);
}

.catalogue-close-link,
.catalogue-close-link:hover {
  width: 100%;
  margin-top: 8px;
  color: #d9dfef;
  text-decoration: none;
}

.site-footer {
  color: #9aa3b8;
  background: var(--ufp-navy-dark);
}

.footer-main {
  padding: 58px 0 42px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo { margin-bottom: 18px; height: 80px;}

.footer-title {
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  color: #9aa3b8;
}

.footer-links a:hover { color: #fff; }
.footer-links .linkedin { color: #ff9a5a; font-weight: 500; }

.footer-quote-btn {
  width: fit-content;
  margin-top: 4px;
  color: #fff !important;
}

.footer-bottom {
  padding: 22px 0;
  color: #6b7390;
  font-size: .86rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 16px 0 20px;
  }

  .about-hero {
    padding: 72px 0;
  }

  .contact-hero {
    padding: 72px 0;
  }

  .hero-content {
    min-height: auto;
    padding: 62px 0;
  }

  .sticky-story {
    position: static;
  }

  .who-we-are-panel { position: relative; }

  .contact-info-panel {
    position: static;
  }

  .about-brand-panel {
    grid-template-columns: 1fr;
  }

  .company-profile-grid { grid-template-columns: 1fr; }

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

  .catalogue-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .sticky-story { top: 0; }
  .navbar { min-height: 68px; }
  .brand-logo { height: 36px; }
  .section-pad { padding: 68px 0; }
  .about-hero { padding: 58px 0; }
  .about-hero h1 { font-size: 2.35rem; }
  .contact-hero { padding: 58px 0; }
  .contact-hero h1 { font-size: 2.35rem; }
  .contact-hero-panel {
    padding: 18px;
    border-radius: 14px;
  }
  .about-since {
    right: 14px;
    bottom: 14px;
    min-width: 126px;
    padding: 13px 14px;
  }
  .who-we-are-panel { min-height: 420px; padding: 28px 24px; }
  .founder-signature { right: 24px; bottom: 28px; left: 24px; }
  .about-brand-panel,
  .about-cta {
    padding: 24px;
    border-radius: 14px;
  }
  .profile-card { min-height: 0; padding: 26px 22px; }
  .profile-vision-band { grid-template-columns: 1fr; padding: 30px 24px; }
  .profile-vision-mark { font-size: 4rem; }
  .about-brand-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-section {
    padding-bottom: 68px;
  }
  .catalogue-section { padding-bottom: 68px; }
  .display-3 { font-size: 2.65rem; }
  .hero-copy { font-size: 1rem; }
  .footer-main { padding-top: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero::after,
  .contact-hero::after,
  .hero-section::before,
  .hero-section::after,
  .hero-content .col-lg-6:first-child,
  .hero-content .col-lg-6:last-child,
  .hero-visual {
    animation: none;
  }
}

/* Product directory */
.products-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 96px 0 0;
  background:
    radial-gradient(720px 320px at 92% 0%, rgba(244,118,34,.28), transparent 68%),
    linear-gradient(125deg, #0a1128 0%, #111d40 100%);
}

.products-hero::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -80px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
  pointer-events: none;
}

.products-hero .container { position: relative; z-index: 1; }
.products-hero h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.055em;
}
.products-hero p {
  max-width: 720px;
  margin: 0;
  color: #c4ccde;
  font-size: 1.08rem;
  line-height: 1.75;
}
.products-hero-meta {
  display: flex;
  gap: 0;
  margin-top: 68px;
  border-top: 1px solid rgba(255,255,255,.11);
}
.products-hero-meta span {
  padding: 22px 34px 22px 0;
  margin-right: 34px;
  color: #aeb8cf;
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.products-hero-meta strong { color: #fff; font-size: 1.05rem; margin-right: 6px; }

.product-directory-section { padding: 34px 0 96px; background: #f6f7fa; }
.product-jump-nav {
  position: sticky;
  top: 76px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 74px;
  padding: 12px;
  border: 1px solid var(--ufp-line);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 35px rgba(13,22,49,.07);
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}
.product-jump-nav::-webkit-scrollbar { display: none; }
.product-jump-label {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: var(--ufp-muted);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.product-jump-nav a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 7px;
  color: #3d4559;
  background: #f4f5f8;
  font-size: .76rem;
  font-weight: 600;
  white-space: nowrap;
  transition: .2s ease;
}
.product-jump-nav a:hover { color: #fff; background: var(--ufp-navy); }

.product-group { scroll-margin-top: 160px; margin-bottom: 94px; }
.product-group:last-child { margin-bottom: 0; }
.product-group-heading {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  max-width: 820px;
  margin-bottom: 30px;
}
.product-group-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ufp-orange), var(--ufp-red));
  box-shadow: 0 10px 22px rgba(237,28,37,.2);
  font-size: .78rem;
  font-weight: 600;
}
.product-group-heading h2 {
  margin: 0 0 8px;
  color: var(--ufp-navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -.025em;
}
.product-group-heading p { margin: 0; color: var(--ufp-muted); line-height: 1.65; }
.product-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.category-card {
  min-width: 0;
  padding: 10px 10px 18px;
  overflow: hidden;
  color: var(--ufp-ink);
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(13,22,49,.055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.category-card:hover {
  color: var(--ufp-ink);
  border-color: rgba(237,28,37,.22);
  box-shadow: 0 22px 45px rgba(13,22,49,.12);
  transform: translateY(-6px);
}
.category-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / .84;
  border-radius: 9px;
  background: linear-gradient(145deg, #f4f5f7, #ebeef2);
}
.category-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(13,22,49,.07));
  pointer-events: none;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0px;
  mix-blend-mode: multiply;
  transition: transform .35s ease;
}
.category-card:hover .category-image img { transform: scale(1.06); }
.category-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: rgba(13,22,49,.88);
  opacity: 0;
  transform: translateY(6px);
  transition: .25s ease;
}
.category-card:hover .category-arrow { opacity: 1; transform: translateY(0); }
.category-name {
  display: block;
  min-height: 50px;
  margin: 17px 8px 3px;
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.35;
}
.category-cta {
  display: block;
  margin: 0 8px;
  color: var(--ufp-red);
  font-size: .74rem;
  font-weight: 600;
  opacity: .82;
}

.products-cta-section { padding: 0 0 96px; background: #f6f7fa; }
.products-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 46px 50px;
  color: #fff;
  border-radius: 18px;
  background:
    radial-gradient(500px 180px at 90% 0%, rgba(244,118,34,.24), transparent 70%),
    var(--ufp-navy);
  box-shadow: var(--ufp-shadow);
}
.products-cta h2 { max-width: 720px; margin: 8px 0 0; font-size: clamp(1.45rem, 3vw, 2.15rem); }

@media (max-width: 991.98px) {
  .product-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-jump-nav { top: 68px; }
}

@media (max-width: 767.98px) {
  .products-hero { padding-top: 68px; }
  .products-hero-meta { margin-top: 44px; overflow-x: auto; }
  .products-hero-meta span { flex: 0 0 auto; padding-right: 20px; margin-right: 20px; }
  .product-directory-section { padding-top: 20px; padding-bottom: 72px; }
  .product-jump-nav { margin-bottom: 58px; }
  .product-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .product-group { margin-bottom: 72px; }
  .products-cta { align-items: flex-start; flex-direction: column; padding: 32px 28px; }
}

@media (max-width: 420px) {
  .product-category-grid { grid-template-columns: 1fr; }
  .category-image { aspect-ratio: 1.35 / 1; }
  .category-name { min-height: 0; }
  .product-group-heading { grid-template-columns: 46px minmax(0, 1fr); gap: 14px; }
  .product-group-number { width: 42px; height: 42px; }
}

/* Dynamic category and product pages */
.detail-hero {
  padding: 66px 0 76px;
  color: #fff;
  background:
    radial-gradient(620px 280px at 90% 0, rgba(244,118,34,.3), transparent 68%),
    linear-gradient(125deg, #0a1128, #111d40);
}
.single-product-hero { padding-bottom: 82px; }
.detail-hero h1,
.single-product-section h1,
.detail-empty h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.hero-section h1,
.about-hero h1,
.contact-hero h1,
.products-hero h1,
.detail-hero h1 {
  font-size: 4rem;
  font-weight: 500;
}
.detail-hero p { color: #c4ccde; font-size: 1.08rem; line-height: 1.75; }
.product-breadcrumb { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; color: #aeb8cf; font-size: .82rem; }
.product-breadcrumb a { color: #fff; }
.product-breadcrumb a:hover { color: #ff9a5a; }
.product-breadcrumb.dark { color: #8a91a2; }
.product-breadcrumb.dark a { color: var(--ufp-red); }
.detail-count { display: inline-block; padding: 10px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #fff; background: rgba(255,255,255,.08); font-size: .82rem; font-weight: 600; }
.detail-listing { min-height: 440px; padding: 80px 0 96px; background: #f6f7fa; }
.detail-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.detail-section-heading h2 { margin: 7px 0 0; color: var(--ufp-navy); font-size: clamp(1.7rem, 3vw, 2.35rem); }
.product-result-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-result-card { overflow: hidden; color: inherit; border: 1px solid #e5e8ef; border-radius: 15px; background: #fff; box-shadow: 0 12px 32px rgba(13,22,49,.06); transition: .25s ease; }
.product-result-card:hover { color: inherit; border-color: rgba(237,28,37,.22); box-shadow: 0 22px 46px rgba(13,22,49,.12); transform: translateY(-5px); }
.product-result-image { display: block; aspect-ratio: 1.2 / 1; overflow: hidden; background: linear-gradient(145deg, #f4f5f7, #e9ecf1); }
.product-result-image img { width: 100%; height: 100%; padding: 22px; object-fit: contain; mix-blend-mode: multiply; transition: transform .3s ease; }
.product-result-card:hover img { transform: scale(1.05); }
.product-result-copy { display: flex; min-height: 238px; flex-direction: column; padding: 24px; }
.product-result-copy small { color: var(--ufp-red); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.product-result-copy strong { margin: 9px 0 10px; color: var(--ufp-navy); font-size: 1.2rem; line-height: 1.3; }
.product-result-copy > span { color: var(--ufp-muted); font-size: .92rem; line-height: 1.65; }
.product-result-copy b { margin-top: auto; padding-top: 18px; color: var(--ufp-red); font-size: .8rem; }
.single-product-section { min-height: 70vh; padding: 54px 0 96px; background: linear-gradient(180deg, #f7f8fb, #fff); }
.single-product-section h1 { color: var(--ufp-navy); }
.single-product-copy > h2 { margin: 8px 0 16px; color: var(--ufp-navy); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -.03em; }
.single-product-image { overflow: hidden; aspect-ratio: 1 / .88; border: 1px solid var(--ufp-line); border-radius: 18px; background: linear-gradient(145deg, #f4f5f7, #e9ecf1); box-shadow: var(--ufp-shadow); }
.single-product-image img { width: 100%; height: 100%; padding: clamp(24px, 5vw, 56px); object-fit: contain; mix-blend-mode: multiply; }
.single-product-summary { color: var(--ufp-muted); font-size: 1.08rem; line-height: 1.75; }
.product-features { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--ufp-line); }
.product-features h2 { margin: 0 0 16px; color: var(--ufp-navy); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.product-features ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.product-features li { position: relative; padding-left: 26px; color: #51596c; }
.product-features li::before { content: "\2713"; position: absolute; left: 0; color: var(--ufp-red); font-weight: 600; }
.single-product-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 34px; }
.product-information-section { padding: 76px 0 100px; background: linear-gradient(180deg, #f7f8fb 0%, #fff 100%); }
.product-introduction { max-width: 1080px; margin-bottom: 42px; }
.product-introduction p { margin: 12px 0 0; color: var(--ufp-muted); font-size: 1.02rem; line-height: 1.8; }
.product-information-grid { position: relative; }
.product-image-zoom { position: relative; display: block; aspect-ratio: 1 / 1; color: var(--ufp-navy); background: #fff; }
.product-image-zoom:hover { color: var(--ufp-red); }
.product-image-zoom img { padding: clamp(20px, 4vw, 46px); }
.product-zoom-icon { position: absolute; top: 18px; right: 18px; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--ufp-line); border-radius: 50%; background: rgba(255,255,255,.94); box-shadow: 0 8px 20px rgba(13,22,49,.08); transition: .2s ease; }
.product-image-zoom:hover .product-zoom-icon { color: #fff; border-color: var(--ufp-red); background: var(--ufp-red); transform: scale(1.05); }
.product-specification-panel { position: sticky; top: 108px; overflow: hidden; padding: 34px; border: 1px solid var(--ufp-line); border-radius: 18px; background: #fff; box-shadow: 0 18px 44px rgba(13,22,49,.08); }
.product-specification-panel::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--ufp-orange), var(--ufp-red)); }
.product-specification-panel h2 { margin: 8px 0 20px; color: var(--ufp-navy); font-size: clamp(1.65rem, 3vw, 2.2rem); font-weight: 600; letter-spacing: -.03em; }
.product-detail-heading { margin: 0 0 18px; color: var(--ufp-navy); font-size: 1rem; font-weight: 600; line-height: 1.45; }
.product-detail-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.product-detail-list > li { position: relative; padding-left: 23px; color: #243044; line-height: 1.55; }
.product-detail-list > li::before { content: ""; position: absolute; top: .66em; left: 2px; width: 7px; height: 7px; border-radius: 50%; background: #243044; }
.product-detail-sublist { display: grid; gap: 3px; margin: 6px 0 0; padding-left: 25px; color: #243044; line-height: 1.55; list-style: disc; }
.product-detail-sublist li { padding-left: 0; }
.product-downloads { display: grid; gap: 10px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--ufp-line); }
.product-downloads h3 { margin: 0 0 4px; color: var(--ufp-navy); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.product-download-link { display: flex; align-items: center; gap: 10px; min-height: 48px; padding: 11px 14px; color: var(--ufp-red); border: 1px solid rgba(237,28,37,.18); border-radius: 10px; background: rgba(237,28,37,.035); font-size: .78rem; font-weight: 500; line-height: 1.35; transition: .2s ease; }
.product-download-link svg { flex: 0 0 auto; }
.product-download-link:hover { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--ufp-orange), var(--ufp-red)); transform: translateY(-2px); }
.product-specification-panel .single-product-actions { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 30px; }
.product-specification-panel .single-product-actions .btn { width: 100%; }
.single-product-catalogue { padding-top: 0; background: #fff; }
.detail-empty { min-height: 68vh; display: grid; place-items: center; padding: 80px 0; background: #f6f7fa; }
.detail-empty-card { max-width: 650px; padding: 46px; border: 1px solid var(--ufp-line); border-radius: 18px; background: #fff; box-shadow: var(--ufp-shadow); text-align: center; }
.detail-empty h1 { color: var(--ufp-navy); font-size: clamp(2rem, 5vw, 3.6rem); }
.detail-empty p { margin-bottom: 26px; color: var(--ufp-muted); }

@media (max-width: 991.98px) {
  .product-result-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-specification-panel { position: static; }
}

@media (max-width: 575.98px) {
  .detail-hero { padding: 48px 0 56px; }
  .single-product-hero { padding-bottom: 58px; }
  .hero-section h1,
  .about-hero h1,
  .contact-hero h1,
  .products-hero h1,
  .detail-hero h1 { font-size: 2.35rem; }
  .product-breadcrumb { margin-bottom: 34px; }
  .detail-listing { padding: 62px 0 72px; }
  .detail-section-heading { align-items: flex-start; flex-direction: column; }
  .product-result-grid { grid-template-columns: 1fr; }
  .product-result-copy { min-height: 0; }
  .single-product-section { padding: 42px 0 72px; }
  .product-information-section { padding: 54px 0 72px; }
  .product-introduction { margin-bottom: 30px; }
  .product-specification-panel { padding: 28px 22px; border-radius: 14px; }
  .product-zoom-icon { top: 12px; right: 12px; width: 40px; height: 40px; }
  .detail-empty-card { padding: 32px 22px; }
}

/* Branded 404 page */
.error-section {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  overflow: hidden;
  padding: 80px 0;
  color: #fff;
  background:
    radial-gradient(640px 300px at 82% 0, rgba(244,118,34,.26), transparent 68%),
    radial-gradient(520px 260px at 0 100%, rgba(237,28,37,.18), transparent 65%),
    linear-gradient(135deg, #0a1128, #111d40);
}
.error-section .container { position: relative; z-index: 2; }
.error-card { max-width: 760px; margin: 0 auto; text-align: center; }
.error-code {
  margin-bottom: -34px;
  color: rgba(255,255,255,.055);
  font-size: clamp(8rem, 23vw, 15rem);
  font-weight: 600;
  line-height: .75;
  letter-spacing: -.08em;
  user-select: none;
}
.error-card h1 {
  margin: 14px 0 20px;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.045em;
}
.error-card p { max-width: 620px; margin: 0 auto; color: #c4ccde; font-size: 1.05rem; line-height: 1.75; }
.error-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.error-orbit { position: absolute; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; pointer-events: none; }
.error-orbit-one { top: -150px; right: -120px; width: 430px; height: 430px; box-shadow: 0 0 0 60px rgba(255,255,255,.018); }
.error-orbit-two { bottom: -180px; left: -130px; width: 380px; height: 380px; box-shadow: 0 0 0 70px rgba(255,255,255,.014); }

@media (max-width: 575.98px) {
  .error-section { min-height: calc(100vh - 68px); padding: 64px 0; }
  .error-code { margin-bottom: -18px; }
  .error-actions { align-items: stretch; flex-direction: column; }
}
