@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&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: "Raleway", 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: 600;
}

.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: "Raleway", Arial, sans-serif;
  font-weight: 600;
  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: 600;
}

.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: 600;
}

.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: 600;
}

.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: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-hero-item strong {
  display: block;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 600;
  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: "Raleway", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-label,
.eyebrow {
  color: var(--ufp-red);
  font-size: .78rem;
  font-weight: 600;
  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: "Raleway", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  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: "Raleway", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
}

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

.about-story-section {
  background: #fff;
}

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

.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%);
}

.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: 600;
}

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

.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: 600;
}

.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: 600;
  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: 600;
}

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

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

.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: "Raleway", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  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: 600;
  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: "Raleway", Arial, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  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: "Raleway", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 700;
  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: "Raleway", Arial, sans-serif;
  font-weight: 600;
}

.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: 600;
  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: 600;
}

.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: 700;
  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: "Raleway", Arial, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  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: 600; }

.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;
  }

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

  .about-brand-panel {
    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) {
  .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;
  }
  .about-brand-panel,
  .about-cta {
    padding: 24px;
    border-radius: 14px;
  }
  .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; }
  .product-card .card-img-top { height: 168px; }
  .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: 700;
  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: 600;
  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: 700;
  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: 700;
  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: 700;
}
.product-group-heading h2 {
  margin: 0 0 8px;
  color: var(--ufp-navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  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: contain;
  padding: 13px;
  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: 700;
  line-height: 1.35;
}
.category-cta {
  display: block;
  margin: 0 8px;
  color: var(--ufp-red);
  font-size: .74rem;
  font-weight: 700;
  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; }
}
