/* ══════════════════════════════════════════
   ATMAXPLY · Premium Plywood Brand · 2026
   Design System inspired by Apple/Samsung
   ══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --color-bg: #050505;
  --color-text: #f0f0f0;
  --color-plywood: #ff0000;
  --color-plywood-light: #eecfa1;
  --color-plywood-dark: #aa8658;
  --color-accent: #e31e24;
  --color-accent-hover: #ff3a40;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-card-bg: #111111;
  --color-surface: #141414;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-active: rgba(212, 167, 106, 0.5);
  --color-glass: rgba(255, 255, 255, 0.05);
  --color-glass-border: rgba(255, 255, 255, 0.1);
  --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-card: 24px;
  --radius-pill: 100px;
  --nav-height: 80px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

input,
select,
button,
textarea {
  font-family: inherit;
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-apple), visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}

.preloader-text {
  color: #000000;
}

.preloader-text.accent {
  color: var(--color-plywood);
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: var(--color-plywood);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.preloader-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

/* ── UI Entrance Transitions ── */
.nav,
.hero-left-col,
.hero-right-col {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s var(--ease-apple), transform 1.2s var(--ease-apple);
}

.main-content.visible .nav {
  opacity: 1;
  transform: translateY(0);
}

.main-content.visible .hero-left-col {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.main-content.visible .hero-right-col {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  pointer-events: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, opacity 1.2s var(--ease-apple), transform 1.2s var(--ease-apple);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--color-glass-border);
  pointer-events: auto;
}

.nav.hidden {
  transform: translateY(-100%) !important;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 4rem;
}

.nav-logo,
.nav-menu-wrapper,
.nav-actions,
.nav-hamburger {
  pointer-events: auto;
}

.nav-logo img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 0.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-glass-border);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.55rem 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
  display: block;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: #fff;
  background: rgba(212, 167, 106, 0.15);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  cursor: pointer;
  gap: 5px;
  pointer-events: auto;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease-apple);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-apple);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--color-plywood);
}

.mobile-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem !important;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-apple);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: scale(1.04) translateY(-1px);
  background: var(--color-accent-hover);
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.35);
}

.btn-primary.is-dark {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.btn-primary.is-dark:hover {
  background: transparent;
  color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--color-plywood);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-plywood);
  transition: all 0.3s var(--ease-apple);
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--color-plywood);
  color: #000;
  transform: translateY(-1px);
}

.btn-secondary.is-dark {
  border-color: #000;
  color: #000;
}

.btn-secondary.is-dark:hover {
  background: #000;
  color: #fff;
}

/* ── Tags ── */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(227, 30, 36, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.tag.is-dark {
  color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.25);
}

.tag.is-light {
  color: var(--color-plywood);
  border-color: rgba(212, 167, 106, 0.4);
}

/* ── Container ── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section {
  padding: 9rem 0;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: var(--color-plywood);
}

.section-title em {
  font-style: italic;
  color: #fff;
}

.section-rounded-top {
  border-radius: 40px 40px 0 0;
  margin-top: -4rem;
  box-shadow: 0 -60px 120px rgba(0, 0, 0, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Hero ── */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 7rem;
  color: #fff;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fallback background when video fails to load (slow connection / old device) */
.hero-bg.video-failed {
  background: linear-gradient(135deg,
      #1a0a00 0%,
      #2d1200 20%,
      #0f0f0f 50%,
      #1a0500 80%,
      #000000 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.2) 100%);
}

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

.hero-bottom-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  width: 100%;
}

.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-plywood);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-sub {
  display: block;
  font-size: 0.4em;
  font-weight: 500;
  color: var(--color-plywood);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.hero-heading {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

.hero-heading .hero-sub-inline {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--color-plywood);
  letter-spacing: 0.05em;
  vertical-align: middle;
  text-transform: none;
  /* Keep the 'oF' as requested */
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 340px;
  opacity: 0.75;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-plywood);
}

.hero-stat .stat-suffix {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-plywood);
  display: inline;
}

.hero-stat .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
}

.hero-stat-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float-scroll 2.5s ease-in-out infinite;
}

@keyframes float-scroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

/* ── About / Philosophy Section ── */
.section-about {
  background-color: #111;
  z-index: 20;
}

.section-about .section-title {
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  margin-bottom: 7rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  color: var(--color-plywood);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.about-feature p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-img-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-plywood);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  text-align: center;
}

.badge-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-plywood);
  letter-spacing: -0.02em;
}

.badge-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Marquee ── */
.client-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 4rem;
}

.trusted-by-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 3rem;
  min-width: 100%;
  animation: scroll-marquee 25s linear infinite;
}

.marquee-content span {
  font-size: 4.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.3s ease, -webkit-text-stroke 0.3s ease;
  white-space: nowrap;
}

.marquee-content span:hover {
  color: var(--color-plywood);
  -webkit-text-stroke: 0px;
}

@keyframes scroll-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* ── Featured Products / Flick Cards ── */
.section-featured {
  background-color: #f4f0eb;
  padding: 12rem 0 16rem;
  position: relative;
  overflow: hidden;
}

.section-header-inline {
  margin-bottom: 4rem;
}

.section-header-inline .tag {
  margin-bottom: 0.75rem;
}

.section-header-inline .section-title.is-light {
  color: #111;
}

.featured-bg_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  container-type: inline-size;
  display: flex;
  justify-content: center;
  padding-top: 3rem;
  pointer-events: none;
}

.featured-bg h2 {
  font-size: 22cqw;
  font-weight: 900;
  color: var(--color-plywood);
  opacity: 0.1;
  line-height: 0.9;
  white-space: nowrap;
  letter-spacing: -0.04em;
}

.featured-slider-wrapper {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  min-height: 700px;
  z-index: 1;
}

.flick-card__left {
  text-align: right;
  z-index: 10;
  pointer-events: none;
}

.flick-card__right {
  text-align: left;
  z-index: 10;
  pointer-events: none;
}

.featured-product__name h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 0.9;
  color: #111;
  letter-spacing: -0.03em;
}

.featured-product__title h3 {
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.featured-product__text p {
  font-size: 1rem;
  color: rgba(17, 17, 17, 0.55);
  line-height: 1.65;
  max-width: 280px;
}

/* Card Stack */
.flick-group {
  position: relative;
  width: 100%;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2000px;
}

.flick-group__relative-object {
  opacity: 0;
  pointer-events: none;
  width: 24em;
  position: relative;
}

.flick-group__relative-object-before {
  padding-top: 140%;
}

.flick-group__collection {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.flick-group__list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.flick-group__item {
  position: absolute;
  width: 24em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.flick-card {
  background-color: var(--color-card-bg);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 34em;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease;
}

[data-flick-cards-item-status="active"] .flick-card {
  border-color: var(--color-border-active);
  box-shadow: 0 50px 120px -20px rgba(212, 167, 106, 0.15);
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-apple);
}

.flick-card:hover .cover-image {
  transform: scale(1.04);
}

.flick-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  pointer-events: none;
}

.flick-card__label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 30;
}

.flick-card__label .label {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4em 0.9em;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
}

.flick-card__btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 30;
  opacity: 0;
  transition: all 0.4s var(--ease-apple);
}

[data-flick-cards-item-status="active"] .flick-card__btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.flick-card__nav {
  position: absolute;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  z-index: 100;
  pointer-events: auto;
}

.slide__counter {
  color: rgba(17, 17, 17, 0.4);
  font-family: monospace;
  font-size: 0.9rem;
  display: flex;
  gap: 0.4rem;
}

.slide-arrow__controls {
  display: flex;
  gap: 0.75rem;
}

.slide__arrow {
  width: 3.2rem;
  height: 3.2rem;
  border: 1.5px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #111;
  background: rgba(17, 17, 17, 0.05);
  transition: all 0.3s var(--ease-apple);
  cursor: pointer;
}

.slide__arrow:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.1);
}

[data-flick-cards-dragger] {
  position: absolute;
  inset: 0;
  z-index: 25;
  cursor: grab;
}

[data-flick-cards-dragger]:active {
  cursor: grabbing;
}

.featured-product-collection {
  display: none !important;
}

/* ── Custom Solutions ── */
.section-custom {
  background-color: var(--color-plywood);
  color: #000;
  z-index: 30;
}

.section-custom .section-title {
  color: #000;
  font-style: normal;
}

.section-custom .section-title em {
  color: rgba(0, 0, 0, 0.5);
}

.custom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
}

.custom-content {
  max-width: 560px;
}

.custom-text {
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  opacity: 0.75;
}

.button-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Exploded Layer Diagram */
.custom-visual {
  position: relative;
  width: 460px;
  height: 460px;
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ply-layers {
  position: relative;
  width: 300px;
  height: 300px;
  transform-style: preserve-3d;
  transform: rotateX(58deg) rotateZ(-42deg);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.custom-visual:hover .ply-layers {
  transform: rotateX(52deg) rotateZ(-38deg);
}

.ply-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: transform 0.7s var(--ease-apple), box-shadow 0.7s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.25);
}

.layer-top {
  background: #f0d9b5;
  transform: translateZ(60px);
  border: 1px solid #d4b483;
}

.layer-core {
  background: #d4a76a;
  transform: translateZ(38px);
  border: 1px solid #b88d55;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0, 0, 0, 0.04) 8px, rgba(0, 0, 0, 0.04) 10px);
}

.layer-inner {
  background: #c49455;
  transform: translateZ(18px);
  border: 1px solid #a87a3f;
}

.layer-bottom {
  background: #aa8658;
  transform: translateZ(0px);
  border: 1px solid #8f6e45;
}

.custom-visual:hover .layer-top {
  transform: translateZ(160px);
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.2);
}

.custom-visual:hover .layer-core {
  transform: translateZ(100px);
}

.custom-visual:hover .layer-inner {
  transform: translateZ(50px);
}

.custom-visual:hover .layer-bottom {
  transform: translateZ(0);
}

.layer-label {
  position: absolute;
  right: 108%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.layer-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: 30px;
  height: 1.5px;
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(-50%);
}

/* ── Applications / Solutions Grid ── */
.section-solutions {
  background: #050505;
  color: #fff;
}

.section-solutions .section-title {
  color: #fff;
}

.solutions-header {
  margin-bottom: 4rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solution-card {
  background: linear-gradient(135deg, #18181b, #0f0f11);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transition: all 0.4s var(--ease-apple);
  cursor: pointer;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 167, 106, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 1);
}

.solution-card-inner {
  padding: 3rem 2.5rem;
}

.solution-icon-wrap {
  margin-bottom: 1.5rem;
}

.solution-card .icon {
  font-size: 2.8rem;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.solution-card:hover .icon {
  transform: scale(1.15) rotate(5deg);
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.solution-card p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-plywood);
  letter-spacing: 0.05em;
  transition: padding-left 0.2s;
  display: inline-block;
}

.solution-link:hover {
  padding-left: 8px;
}

/* ── Legacy / Stats ── */
.section-legacy {
  background-color: #0c0c0c;
  background-image: url('../assets/legacy_hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* subtle parallax */
  color: #fff;
  position: relative;
  isolation: isolate;
}

/* Dark overlay so content stays crisp over the bg image */
.section-legacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.82);
  z-index: -1;
  border-radius: inherit;
}

.section-legacy .section-title {
  color: #fff;
}

.legacy-header {
  margin-bottom: 5rem;
}

.legacy-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 6rem;
  overflow: hidden;
  border-radius: 20px;
}

.legacy-stat-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 3.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.legacy-stat-card:hover {
  background: rgba(212, 167, 106, 0.06);
}

.legacy-stat-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-plywood);
  letter-spacing: -0.03em;
  line-height: 1;
}

.legacy-stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(212, 167, 106, 0.6);
  margin-top: 0.25rem;
}

.legacy-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.75rem;
}

/* Testimonials */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s var(--ease-apple);
}

.testimonial-card:hover {
  border-color: rgba(212, 167, 106, 0.2);
  background: rgba(212, 167, 106, 0.04);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-plywood), var(--color-plywood-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Contact / CTA ── */
.section-cta {
  background: #050505;
  color: #fff;
}

.section-cta .section-title {
  color: #fff;
}

.cta-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: start;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
  border-color: var(--color-plywood);
  background: rgba(212, 167, 106, 0.05);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #111;
  color: #fff;
}

.btn-submit {
  background: var(--color-accent);
  color: #fff;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-apple);
  text-align: center;
  letter-spacing: 0.05em;
}

.btn-submit:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(227, 30, 36, 0.3);
}

.cta-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-info-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.cta-info-card:hover {
  border-color: rgba(212, 167, 106, 0.2);
}

.cta-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cta-info-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-plywood);
  margin-bottom: 0.25rem;
}

.cta-info-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Footer ── */
.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 7rem 4rem 3rem;
}

.footer-container {}

.footer-top {
  display: flex;
  gap: 6rem;
  margin-bottom: 5rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  color: #fff;
  border-color: var(--color-plywood);
  background: rgba(212, 167, 106, 0.1);
}

.footer-nav-grid {
  display: flex;
  gap: 5rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  color: var(--color-plywood);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════
   PRODUCTS PAGE STYLES
   ══════════════════════════════════════ */

/* Products Hero */
.products-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 6rem;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 60% 40%, rgba(212, 167, 106, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.products-hero-content {
  position: relative;
  z-index: 2;
}

.products-hero .hero-heading {
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.products-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  line-height: 1.65;
}

/* Product Filter Tabs */
.product-filters-section {
  background: #0a0a0a;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-apple);
  white-space: nowrap;
}

.filter-tab:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
}

.filter-tab.active {
  background: var(--color-plywood);
  color: #000;
  border-color: var(--color-plywood);
}

/* Product Catalog Grid */
.product-catalog {
  background: #0a0a0a;
  padding: 6rem 0 10rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.45s var(--ease-apple);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 167, 106, 0.25);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s var(--ease-apple);
}

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

.product-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-card-badge.is-certified {
  background: rgba(212, 167, 106, 0.85);
  color: #000;
  border-color: transparent;
}

.product-card-body {
  padding: 2rem;
}

.product-card-category {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

.product-card-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.product-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.product-card-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.spec-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-action {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s var(--ease-apple);
}

.product-card-action:hover {
  background: var(--color-plywood);
  border-color: var(--color-plywood);
  color: #000;
}

.product-card-arrow {
  color: var(--color-plywood);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.product-card:hover .product-card-arrow {
  transform: translateX(4px);
}

/* Featured Product Hero Card */
.product-featured-banner {
  background: linear-gradient(135deg, #111 0%, #1a1208 100%);
  border: 1px solid rgba(212, 167, 106, 0.2);
  border-radius: 32px;
  overflow: hidden;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 380px;
  margin-bottom: 1rem;
  position: relative;
}

.product-featured-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212, 167, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.banner-content {
  padding: 4rem;
  position: relative;
  z-index: 2;
}

.banner-tag {
  display: inline-block;
  background: rgba(212, 167, 106, 0.15);
  color: var(--color-plywood);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 167, 106, 0.3);
  margin-bottom: 1.5rem;
}

.banner-title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.banner-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.banner-img-wrap {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-apple);
}

.product-featured-banner:hover .banner-img {
  transform: scale(1.04);
}

.banner-specs {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-spec {
  text-align: center;
}

.banner-spec-val {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-plywood);
  letter-spacing: -0.03em;
}

.banner-spec-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.25rem;
}

/* Product Specs Modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-apple);
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-box {
  position: relative;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 2;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s var(--ease-apple);
}

.product-modal.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(227, 30, 36, 0.2);
  border-color: var(--color-accent);
  color: #fff;
}

.modal-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 32px 32px 0 0;
}

.modal-body {
  padding: 3rem;
}

.modal-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.modal-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.modal-spec-item {
  background: #111;
  padding: 1.5rem;
  text-align: center;
}

.modal-spec-item strong {
  display: block;
  font-size: 1.3rem;
  color: var(--color-plywood);
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.modal-spec-item span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.modal-features {
  margin-bottom: 2.5rem;
}

.modal-features h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.modal-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.modal-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.modal-features li::before {
  content: '✦';
  color: var(--color-plywood);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.modal-actions {
  display: flex;
  gap: 1rem;
}

/* No filter match message */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 6rem 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  display: none;
}

.no-results.visible {
  display: block;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 1380px) {
  .nav-menu-wrapper {
    max-width: calc(100% - 420px);
    /* keep clear of logo + actions */
  }

  .nav-link {
    padding: 0.55rem 0.75rem;
    font-size: 0.73rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 1200px) {
  .hero-bottom-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .custom-container {
    flex-direction: column;
    text-align: center;
  }

  .button-group {
    justify-content: center;
  }

  .custom-visual {
    margin-top: 5rem;
  }

  .featured-slider-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    min-height: auto;
  }

  .flick-card__left,
  .flick-card__right {
    text-align: center;
    order: 2;
  }

  .flick-group {
    order: 1;
    height: 500px;
  }

  .featured-product__text p {
    max-width: 100%;
  }

  .cta-container {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-featured-banner {
    grid-template-columns: 1fr;
  }

  .banner-img-wrap {
    min-height: 280px;
  }

  .legacy-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-menu-wrapper {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .section {
    padding: 6rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section-hero {
    padding: 0 1.5rem 5rem;
  }

  .hero-heading {
    font-size: clamp(2rem, 10vw, 3rem);
    letter-spacing: -0.03em;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .about-grid {
    gap: 3.5rem;
  }

  .section-title {
    margin-bottom: 1.5rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .footer-container {
    padding: 0 1.5rem;
  }

  .footer {
    padding: 5rem 0 2rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-nav-grid {
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .legacy-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3rem;
  }

  .section-legacy {
    padding-bottom: 2rem;
  }

  .testimonials-wrap {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .modal-specs-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-logo img {
    height: 36px;
    width: auto;
  }

  .products-hero {
    padding: 0 1.5rem 4rem;
    min-height: 45vh;
  }

  .custom-container {
    flex-direction: column;
    gap: 4rem;
    text-align: center;
  }

  .custom-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .button-group {
    justify-content: center;
  }

  .custom-visual {
    width: 100%;
    height: 320px;
    max-width: 340px;
    margin: 0 auto;
  }

  .ply-layers {
    width: 220px;
    height: 220px;
  }

  .layer-label {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
    right: 105%;
  }

  .marquee-content span {
    font-size: 3rem;
  }

  .section-featured {
    padding: 8rem 0 14rem;
  }

  .flick-group {
    height: 420px;
  }

  .flick-group__item,
  .flick-group__relative-object {
    width: 18em;
  }

  .flick-card {
    height: 26em;
  }

  .flick-card__left,
  .flick-card__right {
    display: none;
  }

  .featured-slider-wrapper {
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .banner-content {
    padding: 2.5rem;
  }

  .product-featured-banner {
    grid-template-columns: 1fr;
  }
}