﻿:root {
  --bg: #121212;
  --bg-alt: #181818;
  --card: #1a1a1a;
  --text: #d4d4d4;
  --muted: #a1a1a1;
  --accent: #f97316;
  --accent-hover: #fb923c;
  --border: rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(15, 15, 15, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 12px;
  --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  --header-h: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding-top: 0;
}

main {
  margin-top: 0;
  padding-top: 0;
}

main > :first-child {
  margin-top: 0;
  padding-top: 0;
}

.hero,
.hero-section,
.page-hero {
  margin-top: 0;
  padding-top: 0;
}

.hero-inner,
.hero-content {
  padding-top: calc(var(--header-h) + 12px);
  position: relative;
  z-index: 2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  color: #ffffff;
}

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

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.navbar-logo img {
  height: 34px;
  width: auto;
  display: block;
  opacity: 0;
  transform: translateY(4px) scale(0.94);
  filter: blur(4px);
  transition:
    opacity 0.45s ease-out,
    transform 0.45s ease-out,
    filter 0.45s ease-out,
    box-shadow 0.28s ease-out;
  box-shadow: 0 0 0 rgba(249,115,22,0);
}

.navbar-logo img.logo-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.navbar-logo:hover img {
  box-shadow: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #121212;
  font-weight: 800;
}

.brand-name {
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .navbar-logo img {
    height: 28px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-weight: 600;
  position: relative;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.nav-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, left 0.25s ease, top 0.25s ease, width 0.25s ease, height 0.25s ease;
  z-index: 0;
}

.nav-links a,
.nav-links .dropdown-toggle,
.nav-link {
  padding: 0.45rem 0.45rem;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.nav-links a:hover,
.nav-links .dropdown-toggle:hover {
  color: var(--accent-hover);
  transform: translateY(-1px);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item.nav-operations {
  position: relative;
}

.nav-operations-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-operations-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  min-width: 220px;
  max-width: calc(100vw - 24px);
  padding: 0.6rem;
  margin-top: 0.4rem;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  isolation: isolate;
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 2001;
}

.nav-operations-menu a {
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-operations-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.nav-item.nav-operations .nav-operations-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.nav-item.nav-operations.open .nav-operations-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
  isolation: isolate;
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: flex-start;
  padding: 0 0 5rem;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.08) 0%, rgba(18, 18, 18, 0.85) 55%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.7), rgba(12, 12, 12, 0.7)),
    url("assets/heros/home-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0f0f0f;
}

.hero--timber {
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.08) 0%, rgba(18, 18, 18, 0.82) 55%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.7), rgba(12, 12, 12, 0.7)),
    url("assets/heros/timber-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0f0f0f;
}

.hero--steel {
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.08) 0%, rgba(18, 18, 18, 0.82) 55%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.7), rgba(12, 12, 12, 0.7)),
    url("assets/heros/steel-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0f0f0f;
}

.hero--pharma {
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.08) 0%, rgba(18, 18, 18, 0.82) 55%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.7), rgba(12, 12, 12, 0.7)),
    url("assets/heros/pharma-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0f0f0f;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 140%;
  height: 140%;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    rgba(249, 115, 22, 0.18),
    rgba(18, 18, 18, 0) 55%
  );
  opacity: 0.9;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.hero-inner {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(12px);
  transition: opacity 1s ease-out, transform 1s ease-out, filter 1s ease-out;
}

.hero-inner.hero-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.layer-title,
.layer-subtitle,
.layer-cta {
  position: relative;
  transition: transform 0.15s ease-out;
}

/* Key metrics */
.metrics {
  padding: 80px 0 40px;
  background: #1c1c1c;
}

.metrics-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.metrics-header {
  text-align: center;
  margin-bottom: 40px;
}

.metrics-eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted-text, #8f8f95);
  margin-bottom: 8px;
}

.metrics-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.metrics-subtitle {
  font-size: 14px;
  color: var(--muted-text, #a0a0a7);
  max-width: 560px;
  margin: 0 auto;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.metric-card {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.metric-icon-circle {
  position: relative;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.metric-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(51%) sepia(89%) saturate(4569%) hue-rotate(7deg) brightness(101%) contrast(101%);
  transition:
    transform 0.25s ease-out,
    filter 0.25s ease-out;
}

.metric-icon-circle::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: none;
  filter: none;
  opacity: 0;
  transition: none;
}

/* hover: lift + stronger glow */
.metric-card:hover .metric-icon {
  transform: translateY(-4px) scale(1.08);
  filter: brightness(0) saturate(100%) invert(51%) sepia(89%) saturate(4569%) hue-rotate(7deg) brightness(101%) contrast(101%);
}

.metric-card:hover .metric-icon-circle::before {
  opacity: 1;
  transform: scale(1.05);
}

/* Optional: when you add real icons, drop SVG/PNG files into assets/icons and
   update these background-image URLs to match your filenames. Until then,
   these just show an orange pill with no image, which still looks clean. */
.metric-icon-containers {
  background-image: url("assets/icons/containers.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60% 60%;
}

.metric-icon-bulk {
  background-image: url("assets/icons/bulk.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60% 60%;
}

.metric-icon-team {
  background-image: url("assets/icons/team.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60% 60%;
}

.metric-icon-clients {
  background-image: url("assets/icons/clients.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60% 60%;
}

.metric-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 6px;
}

.metric-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.metric-value span.metric-plus {
  font-size: 1.6rem;
  font-weight: 600;
}

.metric-plus {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
}

.metric-label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted-text, #9ca3af);
  max-width: 16rem;
}

@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .metrics {
    padding: 56px 0 24px;
  }
  .metrics-title {
    font-size: 26px;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

.logo-cloud-section {
  padding: 96px 0 80px;
  background: #1c1c1c;
}

.logo-cloud-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.logo-cloud-section .section-kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.logo-cloud-section .section-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.logo-cloud-section .section-lead {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.65);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw + 1rem, 3.8rem);
  letter-spacing: -0.02em;
  margin: 0;
  color: #ffffff;
}

.subhead {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #121212;
  box-shadow: 0 15px 45px rgba(249, 115, 22, 0.28);
}

.btn.primary:hover {
  transform: translateY(-2px) scale(1.01);
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  box-shadow: 0 18px 55px rgba(249, 115, 22, 0.34);
}

.btn.ghost {
  border-color: rgba(245, 247, 251, 0.25);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn.ghost:hover {
  border-color: rgba(249, 115, 22, 0.5);
  color: var(--accent-hover);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto 0;
  max-width: 980px;
}

.highlight {
  padding: 1rem 1.25rem;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.highlight .label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.highlight .value {
  font-weight: 700;
  font-size: 1rem;
}

.highlight:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.14), 0 10px 30px rgba(0, 0, 0, 0.45);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0.05s);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-bento [data-animate],
.icc-section [data-animate] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.about-bento [data-animate].is-visible,
.icc-section [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .about-bento [data-animate],
  .icc-section [data-animate] {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.divisions {
  padding: 5rem 0 6rem;
  background: #1c1c1c;
}

.section-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-header h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  letter-spacing: -0.01em;
  color: #ffffff;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.timber-products-grid,
.pharma-products-grid,
.steel-advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

.timber-markets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

/* Pharma portfolio bento */
.pharma-portfolio {
  padding: 4rem 0 3.5rem;
}

.pharma-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
  align-items: stretch;
}

.pharma-bento-card {
  position: relative;
  padding: 1.5rem 1.6rem;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: #e5e7eb;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.28s ease, border-color 0.22s ease;
  order: 1;
}

.pharma-bento-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(249, 115, 22, 0.18),
    rgba(249, 115, 22, 0.03) 50%,
    transparent 75%
  );
  opacity: 0;
  transition: opacity 0.18s ease-out;
  z-index: 0;
  filter: blur(4px);
}

.pharma-bento-card > * {
  position: relative;
  z-index: 1;
}

.pharma-bento-card--lead {
  grid-column: 1 / -1;
  grid-row: auto;
  order: 2;
  gap: 0.9rem;
}

.pharma-bento-card:not(.pharma-bento-card--lead) {
  grid-column: span 2;
}

.pharma-bento-card h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.pharma-bento-card .card-body {
  margin: 0;
  color: #c7c9cf;
}

.pharma-bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 24px 60px rgba(249, 115, 22, 0.12), 0 16px 40px rgba(0, 0, 0, 0.55);
}

.pharma-bento-card:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .timber-markets-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.division-card {
  padding: 1.8rem 2rem;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  gap: 0.8rem;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
  transition: transform 0.22s ease, box-shadow 0.28s ease, border-color 0.22s ease;
}

.division-card h3 {
  margin: 0.2rem 0 0;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.card-body {
  margin: 0;
  color: var(--muted);
}

.division-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 24px 60px rgba(249, 115, 22, 0.12), 0 16px 40px rgba(0, 0, 0, 0.55);
}

.about {
  padding: 5rem 0 2rem;
  background:
    radial-gradient(circle at 25% 10%, rgba(249, 115, 22, 0.1), rgba(28, 28, 28, 0.9)),
    linear-gradient(180deg, rgba(20, 20, 20, 0.82), rgba(20, 20, 20, 0.82)),
    url("assets/heros/about.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #161616;
}

.icc-section {
  background: #1c1c1c;
  padding: 72px 0;
}

.icc-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.icc-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.icc-logo-chip {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(0, 83, 155, 0.1);
  border: 1px solid rgba(0, 83, 155, 0.55);
  backdrop-filter: blur(10px);
}

.icc-logo-chip img {
  display: block;
  max-width: 140px;
  height: auto;
}

.icc-tag {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e5f0ff;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 83, 155, 0.2);
}

.icc-content-card {
  margin-top: 8px;
  background: #1a1a1a;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
  padding: 28px 32px;
  color: #e5e7eb;
  transition: transform 0.22s ease, box-shadow 0.28s ease, border-color 0.22s ease;
}

.icc-content-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 24px 60px rgba(249, 115, 22, 0.12), 0 16px 40px rgba(0, 0, 0, 0.55);
}

.icc-content-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.4vw, 2rem);
}

.icc-content-card p {
  margin: 0 0 10px;
  line-height: 1.6;
}

.icc-content-card ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 16px;
  display: grid;
  gap: 8px;
}

.icc-content-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.icc-content-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff6a1a;
}

@media (max-width: 768px) {
  .icc-section {
    padding: 56px 0;
  }

  .icc-logo-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .icc-content-card {
    padding: 22px 20px;
  }
}.about-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(140px, auto);
  gap: 1rem;
  margin-top: 1.75rem;
}

.bento-panel {
  position: relative;
  padding: 1.5rem 1.6rem;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: none;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.22s ease, box-shadow 0.28s ease, border-color 0.22s ease;
}

.bento-panel::before {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(249, 115, 22, 0.18),
    rgba(249, 115, 22, 0.03) 50%,
    transparent 75%
  );
  opacity: 0;
  transition: opacity 0.18s ease-out;
  z-index: 0;
  filter: blur(4px);
}

.bento-panel > * {
  position: relative;
  z-index: 1;
}

.bento-panel--lead {
  grid-column: span 6;
  grid-row: span 2;
  padding: 1.8rem 1.9rem;
  gap: 1rem;
}

.bento-panel--small {
  grid-column: span 3;
}

.bento-panel--stat {
  grid-column: span 3;
  justify-content: flex-start;
}

.bento-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.bento-chip {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: #e8e8e8;
}

.bento-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: none;
}

.bento-panel:hover::before {
  opacity: 1;
}

.bento-panel h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.bento-panel .card-body {
  margin: 0;
  color: var(--muted);
}

.about-lead {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .about-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .bento-panel--lead {
    grid-column: span 6;
    grid-row: span 2;
  }

  .bento-panel--small {
    grid-column: span 3;
  }

  .bento-panel--stat {
    grid-column: span 3;
  }
}

@media (max-width: 640px) {
  .about-bento {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .bento-panel--lead,
  .bento-panel--small,
  .bento-panel--stat {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-lead {
  margin: 0 auto;
  max-width: 900px;
  color: var(--muted);
  font-size: 1.05rem;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.about-card {
  padding: 1.25rem 1.35rem;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-card .card-body {
  margin-top: 0.35rem;
}

.hubs {
  padding: 4rem 0 4.5rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(249, 115, 22, 0.08), rgba(28, 28, 28, 0.9)),
    linear-gradient(180deg, rgba(20, 20, 20, 0.84), rgba(20, 20, 20, 0.84)),
    url("assets/heros/global.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #161616;
}

.hubs .section-header {
  margin-bottom: 2rem;
}

.hubs-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2rem;
  align-items: stretch;
}

.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  height: 100%;
  z-index: 1;
}

.hub-shell {
  position: relative;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.hub-card:hover .hub-shell {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.65);
}

.hub-inner {
  position: relative;
  padding: 1.4rem 1.6rem;
  z-index: 1;
  border-radius: 20px;
}

.hub-spotlight {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(249, 115, 22, 0.18),
    rgba(249, 115, 22, 0.03) 50%,
    transparent 75%
  );
  opacity: 0;
  transition: opacity 0.18s ease-out;
  z-index: 0;
  filter: blur(4px);
}

.hub-card:hover .hub-spotlight {
  opacity: 1;
}

.hub-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.95), rgba(249, 115, 22, 0.25));
  border: 1px solid rgba(249, 115, 22, 0.5);
  margin-bottom: 0.75rem;
}

.hub-map-icon {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: hubMapIn 0.6s ease-out forwards;
}

.hub-card:nth-child(1) .hub-map-icon { animation-delay: 0.05s; }
.hub-card:nth-child(2) .hub-map-icon { animation-delay: 0.12s; }
.hub-card:nth-child(3) .hub-map-icon { animation-delay: 0.19s; }
.hub-card:nth-child(4) .hub-map-icon { animation-delay: 0.26s; }
.hub-card:nth-child(5) .hub-map-icon { animation-delay: 0.33s; }

.hub-card:hover .hub-map-icon {
  transform: translateY(-3px) scale(1.04);
  transition: transform 0.2s ease-out, filter 0.2s ease-out;
  filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.45));
}

.hub-card h3 {
  margin: 0 0 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.hub-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #d4d4d4;
}

@keyframes hubMapIn {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact {
  padding: 5rem 0 6rem;
  background: #1c1c1c;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-header {
  text-align: center;
}

.contact-sub {
  margin: 0.6rem auto 0;
  color: var(--muted);
  max-width: 620px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.contact-card {
  padding: 1.4rem 1.5rem;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.contact-list .label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-list .value {
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row label {
  font-weight: 600;
  color: var(--text);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(26, 26, 26, 0.65);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  font: inherit;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(161, 161, 161, 0.7);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
  background: rgba(26, 26, 26, 0.85);
}

.form-row textarea {
  resize: vertical;
}

@media (max-width: 900px) {
  :root {
    --header-h: 92px;
  }

  .nav-links {
    gap: 0.75rem;
    font-size: 0.95rem;
    justify-content: flex-end;
  }

  .hero {
    padding: 4.5rem 0 3.5rem;
  }

  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .timber-products-grid,
  .pharma-products-grid,
  .steel-advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  :root {
    --header-h: 124px;
  }

  .container {
    width: 94vw;
  }

  .nav-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
    width: 100%;
  }

  .nav-operations-menu {
    right: 0;
    left: auto;
    width: min(280px, 100%);
    max-width: calc(100vw - 24px);
    transform: translateY(6px);
  }

  .icc-logo-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .icc-logo-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .icc-tag {
    display: inline-flex;
    width: fit-content;
    align-self: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

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

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

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

  .timber-products-grid,
  .pharma-products-grid,
  .steel-advantages-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 4rem 0 5rem;
  }
}

.site-footer {
  background: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 24px;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Timber partner gallery (bento) */

.timber-gallery {
  padding: 4rem 0 3rem;
}

.timber-gallery-header {
  max-width: 820px;
  margin-bottom: 2rem;
}

.timber-gallery-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.timber-gallery-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: rgba(249, 115, 22, 0.9);
  margin-bottom: 0.45rem;
}

.timber-gallery-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.65rem;
}

.timber-gallery-header .muted {
  color: #a3a3a3;
  font-size: 0.95rem;
  max-width: 720px;
}

.timber-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 1rem;
  grid-auto-flow: dense;
}

.timber-gallery-card {
  position: relative;
  grid-row: span 2;
}

.timber-gallery-card .timber-media-content {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.4rem;
  pointer-events: none;
}

.timber-gallery-card .timber-media-title,
.timber-gallery-card .timber-media-body {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 12px 14px;
  width: fit-content;
  color: #fff;
}

.timber-gallery-card .timber-media-title {
  max-width: 70%;
}

.timber-gallery-card .timber-media-body {
  max-width: 88%;
}

.timber-gallery-card.is-wide {
  grid-column: span 6;
  grid-row: span 2;
}

.timber-gallery-card.is-medium {
  grid-column: span 4;
}

@media (max-width: 1040px) {
  .timber-gallery-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .timber-gallery-card.is-wide {
    grid-column: span 4;
  }

  .timber-gallery-card.is-medium {
    grid-column: span 4;
  }
}

@media (max-width: 720px) {
  .timber-gallery {
    padding: 3.2rem 0 2.4rem;
  }

  .timber-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 240px;
  }

  .timber-gallery-card.is-wide,
  .timber-gallery-card.is-medium,
  .timber-gallery-card.is-half {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 1100px) {
  .pharma-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pharma-bento-card {
    grid-column: span 1;
  }

  .pharma-bento-card--lead {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .pharma-bento-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pharma-bento-card,
  .pharma-bento-card--lead {
    grid-column: span 1;
    grid-row: span 1;
    width: 100%;
  }
}

/* Timber media (Hardwood / Softwood tilted cards) */

.timber-media {
  padding: 4rem 0 3.5rem;
}

.timber-media-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.timber-media-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: rgba(249, 115, 22, 0.9);
  margin-bottom: 0.5rem;
}

.timber-media-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

.timber-media-header .muted {
  color: #a3a3a3;
  font-size: 0.95rem;
}

.timber-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  justify-items: center;
}

.tilt-wrapper {
  perspective: 1200px;
  height: 100%;
  width: 100%;
}

.timber-gallery-card .tilt-wrapper,
.timber-media-card .tilt-wrapper {
  height: 100%;
}

.tilt-card {
  position: relative;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 180ms ease-out, box-shadow 220ms ease-out;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.02), #050509);
}

.tilt-card::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--tilt-spot-x, 50%) var(--tilt-spot-y, 50%),
    rgba(249, 115, 22, 0.32),
    rgba(249, 115, 22, 0.12) 45%,
    transparent 65%
  );
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.2s ease-out;
  z-index: 1;
}

.tilt-wrapper:hover .tilt-card {
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
}

.tilt-wrapper:hover .timber-media-card .tilt-card {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
}

.tilt-wrapper:hover .tilt-card::before {
  opacity: 0.85;
}

.timber-media-card .tilt-card {
  aspect-ratio: 1 / 1;
  max-width: 520px;
  width: 100%;
  height: auto;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55);
}

.tilt-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}

.tilt-card {
  will-change: transform;
}

.timber-media-content {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.timber-media-card .timber-media-content {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 0.5rem;
  pointer-events: none;
  justify-items: start;
}

.timber-media-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.timber-media-title,
.timber-media-body {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 12px 16px;
}

.timber-media-title {
  width: fit-content;
  max-width: 60%;
}

.timber-media-body {
  max-width: 88%;
}

.timber-media-title h3 {
  margin: 0;
}

.timber-media-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
  max-width: 420px;
}

@media (max-width: 900px) {
  .timber-media-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }
}

@media (max-width: 820px) {
  .tilt-wrapper {
    perspective: none;
  }

  .tilt-card {
    transform: none !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  }
}

/* Timber featured application */

.timber-feature {
  padding: 4rem 0 3rem;
}

.timber-feature-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.timber-feature-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: rgba(249, 115, 22, 0.9);
  margin-bottom: 0.5rem;
}

.timber-feature-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

.timber-feature-header .muted {
  color: #a3a3a3;
  font-size: 0.95rem;
}

.timber-feature-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.timber-feature-card {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.02), #111);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 100%;
}

.timber-feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.timber-feature-card p {
  font-size: 0.9rem;
  color: #d4d4d4;
}

.timber-feature-card ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: #b3b3b3;
}

.timber-feature-card li + li {
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .timber-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .timber-feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Timber treatment section */

.timber-treatment {
  padding: 3.5rem 0 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.timber-treatment-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.timber-treatment-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: rgba(249, 115, 22, 0.9);
  margin-bottom: 0.5rem;
}

.timber-treatment-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.timber-treatment-header .muted {
  color: #a3a3a3;
  font-size: 0.95rem;
}

.timber-treatment-steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.treatment-step {
  background: #0b0b0b;
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.step-badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 115, 22, 0.85);
  margin-bottom: 0.7rem;
}

.treatment-step h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.treatment-step p {
  font-size: 0.9rem;
  color: #d4d4d4;
}

@media (max-width: 900px) {
  .timber-treatment-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .timber-treatment-steps {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Partners - full-width scrolling logo strip */
.section-partners {
  padding: 96px 0 80px;
}

.section-partners .section-header {
  text-align: center;
}

.partners-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 32px 0;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 72px;
  animation: partners-scroll 35s linear infinite;
  will-change: transform;
}

.partner-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  height: 32px;
  max-height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: grayscale(1) brightness(5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.partner-logo img:hover {
  opacity: 1;
  transform: scale(1.04);
}

/* subtle glassy fade on both ends of the strip */
.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0)
  );
  backdrop-filter: blur(8px);
}

.partners-marquee::after {
  right: 0;
  left: auto;
  transform: scaleX(-1);
}

/* infinite loop animation */
@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Kill edge fades/blur for partners logo strip */
.partners-marquee::before,
.partners-marquee::after,
.partners-marquee-wrapper::before,
.partners-marquee-wrapper::after,
.partners-strip::before,
.partners-strip::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
}
