/* =========================================================
   METALLFORM MALTA — Premium Design System
   Medical Device Manufacturing | Est. Malta
   ========================================================= */

/* =========================================================
   LANGUAGE SWITCHING
   ========================================================= */
[data-lang] { display: none !important; }
[data-lang].lang-active { display: revert !important; }

/* =========================================================
   DEFAULT CURSOR
   ========================================================= */
body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; cursor: default; }
*, *::before, *::after { cursor: inherit; }
a, button, [role="button"], label[for], select, summary,
.clickable, .btn, .nav-link, .thumb, .fold-cell,
.puzzle-tile, .product-card, .slide-arrow, .hero-thumb,
.mobile-menu-toggle, .lang-btn, .close-btn { cursor: pointer !important; }
input, textarea, [contenteditable="true"] { cursor: text !important; -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; }

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --primary: #1b4f8a;
  --primary-light: #2d7ec2;
  --primary-dark: #0f3460;
  --teal: #46a094;
  --teal-light: #5bc4b5;
  --teal-dark: #378578;
  --bg-light: #f7f9fc;
  --bg-white: #ffffff;
  --bg-dark: #1e2a3a;
  --bg-footer: #1a2332;
  --text-dark: #1e293b;
  --text-primary: #222222;
  --text-secondary: #555555;
  --text-muted: #64748b;
  --text-light: #ffffff;
  --border-light: #e8ecf0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-stack: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --header-height: 80px;
  --navbar-height: 52px;
  --total-nav-height: 132px;
}

/* =========================================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-stack);
  background-color: var(--bg-white);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(27, 79, 138, 0.2);
  color: var(--primary-dark);
}

::-moz-selection {
  background: rgba(27, 79, 138, 0.2);
  color: var(--primary-dark);
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-dark);
}

button {
  font-family: var(--font-stack);
}

/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--teal), var(--teal-light));
  background-size: 300% 100%;
  animation: gradientShift 3s ease infinite;
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(27, 79, 138, 0.4);
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.gradient-text,
h2.section-title {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo-round {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  transition: transform var(--transition-normal), filter var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.logo-round:hover {
  transform: scale(1.08) rotate(3deg);
  filter: brightness(1.05);
  animation: logoGlow 2s ease-in-out infinite;
}

.site-title {
  position: relative;
  overflow: hidden;
}

.site-title img {
  height: 38px;
  width: auto;
  transition: transform var(--transition-normal);
}

.site-title:hover img {
  transform: translateY(-2px);
}

.site-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: logoLightSweep 4s ease-in-out infinite;
  pointer-events: none;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right img.logo-imf {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.header-right img.logo-imf:hover {
  opacity: 0.8;
  transform: scale(1.03);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active {
  font-weight: 700;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.distributor-link {
  background: linear-gradient(135deg, #1b4f8a, #2a6cb5);
  color: #fff !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(27, 79, 138, 0.25);
  margin-left: auto;
}

.distributor-link:hover {
  background: linear-gradient(135deg, #2a6cb5, #3a7cc5);
  box-shadow: 0 4px 14px rgba(27, 79, 138, 0.35);
  transform: translateY(-1px);
}

.distributor-link::after {
  display: none !important;
}

/* =========================================================
   LANGUAGE SWITCH (PILLS)
   ========================================================= */
.lang-switch {
  display: flex;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.04);
  padding: 3px;
  border-radius: 20px;
}

.lang-switch button {
  background: transparent;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 16px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: var(--font-stack);
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

.lang-switch button.active,
.lang-switch button:hover {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 2px 8px rgba(27, 79, 138, 0.3);
  transform: scale(1.05);
}

/* =========================================================
   HAMBURGER BUTTON
   ========================================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  transition: transform var(--transition-normal);
}

.hamburger:hover {
  transform: scale(1.1);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =========================================================
   MOBILE MENU OVERLAY
   ========================================================= */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

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

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
}

.mobile-menu-overlay.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-primary);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-menu-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links a {
  display: block;
  padding: 0.9rem 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-overlay.open .mobile-nav-links a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-overlay.open .mobile-nav-links a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-overlay.open .mobile-nav-links a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu-overlay.open .mobile-nav-links a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-overlay.open .mobile-nav-links a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu-overlay.open .mobile-nav-links a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu-overlay.open .mobile-nav-links a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu-overlay.open .mobile-nav-links a:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu-overlay.open .mobile-nav-links a:nth-child(8) { transition-delay: 0.4s; }
.mobile-menu-overlay.open .mobile-nav-links a:nth-child(9) { transition-delay: 0.45s; }

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--primary);
  padding-left: 1rem;
  background: rgba(27, 79, 138, 0.04);
}

.mobile-nav-links .distributor-link {
  background: linear-gradient(135deg, #1b4f8a, #2a6cb5);
  color: #fff !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 20px;
  display: inline-block;
  margin: 1rem auto 0;
  text-align: center;
  font-weight: 600;
  border-bottom: none;
  width: fit-content;
}

.mobile-nav-links a.active {
  font-weight: 700;
  border-left: 3px solid var(--primary);
}

.mobile-lang-switch {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem 0;
}

.mobile-lang-switch button {
  background: transparent;
  border: 2px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  font-family: var(--font-stack);
}

.mobile-lang-switch button.active,
.mobile-lang-switch button:hover {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(27, 79, 138, 0.3);
}

/* =========================================================
   MAIN CONTENT AREA
   ========================================================= */
.page {
  padding-top: var(--total-nav-height);
  min-height: calc(100vh - 160px);
}

.page-centered {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--total-nav-height) + 2rem) 2rem 4rem;
  min-height: calc(100vh - 160px);
}

/* =========================================================
   SECTION SPACER
   ========================================================= */
.section-spacer {
  height: 0;
}

/* =========================================================
   HERO SLIDER / MEDIA GALLERY
   ========================================================= */
.hero-section,
.media-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-section {
  height: 100vh;
  min-height: 400px;
}

.main-display {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: var(--bg-dark);
}

.hero-section .main-display {
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.fold-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  z-index: 5;
  pointer-events: none;
  perspective: 1200px;
}

.fold-cell {
  background: rgba(27, 79, 138, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transform: rotateY(-90deg);
  transform-origin: left center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.fold-cell.flip {
  animation: cellFlip 1.0s ease-in-out forwards;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.slide.active img {
  animation: kenBurns 18s ease-in-out infinite alternate;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}

.caption {
  position: absolute;
  bottom: 12%;
  left: 6%;
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 2.2rem;
  border-radius: var(--radius-md);
  max-width: 55%;
  font-size: 1.15rem;
  line-height: 1.7;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  animation: captionFade 1s ease forwards;
}

.caption p {
  display: none;
}

.caption p.lang-active {
  display: block !important;
}

@keyframes captionFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  background: var(--bg-light);
  flex-wrap: wrap;
}

.thumb {
  width: 110px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  position: relative;
}

.thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.thumb:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

.thumb.active {
  opacity: 1;
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(27, 79, 138, 0.25);
}

.thumb.active::after {
  transform: scaleX(1);
  box-shadow: 0 0 10px rgba(27, 79, 138, 0.4);
}

.thumb img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
  background: var(--bg-light);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  padding: 0;
}

.hero-dot.active {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(27, 79, 138, 0.4);
}

/* =========================================================
   PUZZLE SECTION – Alternating Image + Text Rows
   ========================================================= */
.puzzle-section {
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.puzzle-container {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.puzzle-tile {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 0;
  padding: 0;
  margin: 0;
  position: relative;
}

.puzzle-tile[data-index="0"] {
  background: #e6e7ea;
}

.puzzle-tile[data-index="1"] {
  background: #e8e9ec;
}

.puzzle-tile[data-index="2"] {
  background: #e0e2e5;
}

.puzzle-tile.visible {
  opacity: 1;
  transform: translateY(0);
}

.puzzle-tile:nth-child(even) {
  flex-direction: row-reverse;
}

.puzzle-image {
  flex: 0 0 50%;
  overflow: hidden;
  position: relative;
  padding: 1.5rem;
  background: none;
  box-shadow: none;
}

.puzzle-number {
  display: none;
}

.puzzle-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 16px;
}

.puzzle-tile:hover .puzzle-image img {
  transform: scale(1.03);
}

.puzzle-text {
  flex: 1;
  padding: 2.5rem 3rem;
}

.puzzle-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.puzzle-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--primary));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.puzzle-tile:nth-child(even) .puzzle-text h3::after {
  left: auto;
  right: 0;
}

.puzzle-tile:hover .puzzle-text h3::after {
  width: 80px;
}

.puzzle-text h3[data-lang] {
  display: none;
}

.puzzle-text h3[data-lang="en"] {
  display: block;
}

.puzzle-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  display: none;
}

.puzzle-text p[data-lang="en"] {
  display: block;
}

.puzzle-tile:nth-child(even) .puzzle-text {
  text-align: right;
}

/* =========================================================
   VALUE BLOCKS (Expertise / Mission / Vision)
   ========================================================= */
.value-band {
  width: 100%;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.value-band.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-band[data-index="0"] {
  background: #d9dadd;
}

.value-band[data-index="1"] {
  background: #d2d3d6;
}

.value-band[data-index="2"] {
  background: #cbcccf;
}

.value-band-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.value-band-inner h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: none;
}

.value-band-inner h3[data-lang="en"] {
  display: block;
}

.value-band-inner h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--primary));
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

.value-band-inner p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  display: none;
}

.value-band-inner p[data-lang="en"] {
  display: block;
}

/* =========================================================
   EXPERTISE / QUALITY SECTIONS (alternating split)
   ========================================================= */
.expertise-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 5rem 6%;
  background: linear-gradient(to right, var(--bg-white), var(--bg-light));
  transition: all 0.8s ease;
  opacity: 0;
  transform: translateY(40px);
}

.expertise-tile:nth-child(even) {
  flex-direction: row-reverse;
  background: linear-gradient(to left, var(--bg-white), var(--bg-light));
}

.expertise-tile.visible {
  opacity: 1;
  transform: translateY(0);
}

.expertise-tile:nth-child(odd).visible {
  animation: slideInLeft 0.8s ease forwards;
}

.expertise-tile:nth-child(even).visible {
  animation: slideInRight 0.8s ease forwards;
}

.expertise-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.8s ease;
}

.expertise-tile.visible .expertise-image img {
  transform: scale(1.02);
}

.expertise-tile:hover .expertise-image img {
  transform: scale(1.04);
}

.expertise-text {
  max-width: 600px;
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
}

.expertise-text h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: none;
}

.expertise-text h3[data-lang="en"] {
  display: block;
}

.expertise-text p {
  display: none;
}

.expertise-text p[data-lang="en"] {
  display: block;
}

.section-header {
  text-align: center;
  padding: 2rem 2rem 1rem;
  margin-top: var(--total-nav-height);
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.quality-split {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-sm);
}

.quality-split.reverse {
  flex-direction: row-reverse;
}

.quality-image {
  flex: 0 0 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.quality-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.quality-split:hover .quality-image img {
  transform: scale(1.05);
}

.quality-text {
  flex: 1;
}

.quality-text h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.quality-text p {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1rem;
  text-align: justify;
}

.sustainability-section {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 100%;
  margin: 2rem auto;
  background: linear-gradient(135deg, rgba(70, 160, 148, 0.06), rgba(27, 79, 138, 0.06));
  border-radius: var(--radius-lg);
  position: relative;
}

.sustainability-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.sustainability-section p {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1rem;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}

.sustainability-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(70, 160, 148, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: var(--total-nav-height);
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.viewer-container {
  flex: 0 0 55%;
  position: sticky;
  top: calc(var(--total-nav-height) + 2rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 450px;
}

.viewer-strip {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.viewer-strip img {
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.glass-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  z-index: 5;
}

.glass-btn:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 20px rgba(27, 79, 138, 0.3);
}

.btn-left { left: 15px; }
.btn-right { right: 15px; }

.about-nav-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.about-nav-btn {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.about-nav-btn:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(27, 79, 138, 0.3);
}

.about-text,
.about-description {
  flex: 0 0 42%;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  text-align: justify;
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 1s ease forwards;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.about-text h2,
.about-description h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  display: none;
}

.about-text p[data-lang="en"] {
  display: block;
}

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.product-section {
  padding: 4rem 2rem;
  background: var(--bg-light);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1px solid var(--border-light);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  z-index: 1;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(27, 79, 138, 0.15);
}

.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-light);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

.product-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.image-rotator {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-light);
}

.image-rotator img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.image-rotator img.active {
  opacity: 1;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.product-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0.8rem 0;
}

.product-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.product-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* =========================================================
   CATALOGUE FLOATING BUTTON
   ========================================================= */
.catalogue-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--text-light);
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(27, 79, 138, 0.35);
  z-index: 900;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 3s ease-in-out infinite;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.catalogue-float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 36px rgba(27, 79, 138, 0.45);
  animation: none;
}

.catalogue-float-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--teal), var(--primary-light));
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.catalogue-float-btn:hover::before {
  opacity: 1;
}

.catalogue-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--text-light);
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(27, 79, 138, 0.35);
  z-index: 900;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 3s ease-in-out infinite;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.catalogue-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 36px rgba(27, 79, 138, 0.45);
  animation: none;
}

/* =========================================================
   IMAGE POPUP (Products Page)
   ========================================================= */
.image-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
}

.image-popup.active {
  display: flex;
}

.image-popup img {
  max-width: 85%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5001;
  transition: transform 0.2s;
}

.popup-close:hover {
  transform: scale(1.2);
}

.popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 5001;
}

.popup-nav:hover {
  background: rgba(255,255,255,0.25);
}

.popup-prev { left: 1.5rem; }
.popup-next { right: 1.5rem; }

/* =========================================================
   IMAGE VIEWER POPUP
   ========================================================= */
.image-viewer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.image-viewer-overlay.active {
  display: flex;
  opacity: 1;
  animation: fadeInScale 0.3s ease forwards;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.image-viewer-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: fadeInUp 0.4s ease forwards;
}

.image-viewer-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.image-viewer-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.image-viewer-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg) scale(1.1);
}

.image-viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.image-viewer-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.image-viewer-prev {
  left: -64px;
}

.image-viewer-next {
  right: -64px;
}

/* =========================================================
   CONTACT TILES
   ========================================================= */
.contact-section {
  padding: 2rem 2rem 4rem;
  background: var(--bg-light);
  margin-top: var(--total-nav-height);
  min-height: calc(100vh - var(--total-nav-height));
}

.contact-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card,
.contact-tile {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.2rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27, 79, 138, 0.08), rgba(70, 160, 148, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.contact-tile:hover .contact-icon-circle {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  transform: scale(1.1);
}

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.contact-detail svg {
  color: var(--teal);
  flex-shrink: 0;
}

.contact-card::before,
.contact-tile::before {
  display: none;
}

.contact-card:hover,
.contact-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}


.contact-card h3,
.contact-tile h3 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-card p,
.contact-tile p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.85rem;
}

.contact-card .contact-icon,
.contact-tile .contact-icon {
  font-size: 1.1rem;
  margin-right: 0.4rem;
  color: var(--teal);
}

.contact-card a,
.contact-tile a {
  color: var(--teal);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-card a:hover,
.contact-tile a:hover {
  color: var(--primary);
}

.contact-grid-compact {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}

.contact-grid-departments {
  grid-template-columns: repeat(4, 1fr);
  padding: 0 4%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 1.2rem;
}

.contact-tile iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

.map-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 2rem auto;
  max-width: 1200px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-lg);
}

/* =========================================================
   CAREERS / VACANCY CARDS
   ========================================================= */
.careers-section {
  padding: 4rem 2rem;
  background: var(--bg-light);
}

.careers {
  padding: 2rem 2rem 4rem;
  background: var(--bg-light);
  margin-top: var(--total-nav-height);
}

.careers h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vacancy-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  border-left: 4px solid transparent;
  border-image: linear-gradient(180deg, var(--primary), var(--teal)) 1;
  border-image-slice: 0 0 0 1;
  transition: all var(--transition-normal);
  position: relative;
}

.vacancy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vacancy-card h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.vacancy-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.vacancy-card ul {
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.vacancy-card ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.vacancy-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 6px rgba(70, 160, 148, 0.4);
}

.apply-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--text-light);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(27, 79, 138, 0.25);
}

.apply-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(27, 79, 138, 0.4);
  filter: brightness(1.08);
}

.careers-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-light);
  max-width: 600px;
  margin: 0 auto;
}

.careers-empty::before {
  content: '\1F4BC';
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* =========================================================
   DOWNLOADS PAGE
   ========================================================= */
.downloads-layout {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: var(--total-nav-height);
  min-height: 70vh;
}

.downloads-sidebar {
  width: 300px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--primary-dark), var(--primary));
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem;
  max-height: calc(100vh - var(--total-nav-height) - 4rem);
  overflow-y: auto;
  position: sticky;
  top: calc(var(--total-nav-height) + 1rem);
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.downloads-sidebar h3 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.downloads-sidebar ul li {
  margin-bottom: 0.3rem;
}

.downloads-sidebar ul li a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.downloads-sidebar ul li a:hover,
.downloads-sidebar ul li a.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  padding-left: 1rem;
}

.folder-toggle {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.folder-toggle:hover {
  color: var(--text-light);
}

.folder-toggle::before {
  content: '\25B6';
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.folder-toggle.expanded::before {
  transform: rotate(90deg);
}

.folder-contents {
  display: none;
  padding-left: 1rem;
}

.folder-toggle.expanded + .folder-contents {
  display: block;
}

.sidebar-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 6rem;
  left: 1rem;
  z-index: 950;
  box-shadow: var(--shadow-md);
}

.sidebar-toggle-btn:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: scale(1.1);
}

.downloads-viewer {
  flex: 1;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}

.downloads-viewer object,
.downloads-viewer embed,
.downloads-viewer iframe {
  width: 100%;
  height: calc(100vh - var(--total-nav-height) - 6rem);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.download-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.download-btn:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* =========================================================
   PRIVACY / TERMS PAGE
   ========================================================= */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  margin-top: var(--total-nav-height);
}

.legal-container h1,
.legal-container h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.legal-container h1 {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.legal-container h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.legal-container h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, var(--primary), var(--teal));
  border-radius: 2px;
}

.legal-container p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.legal-container ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-container ul li {
  list-style: disc;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.legal-container section {
  margin-bottom: 2rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: linear-gradient(180deg, var(--bg-footer) 0%, #141c28 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--primary), transparent);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 2rem;
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--primary));
  border-radius: 2px;
}

.footer-address {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-contact-info a:hover {
  color: var(--teal-light);
  padding-left: 0.3rem;
}

.footer-icon {
  font-size: 1.1rem;
  color: var(--teal);
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-normal);
}

.social-icon:hover {
  background: var(--teal);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(70, 160, 148, 0.4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col ul li a {
  display: block;
  padding: 0.45rem 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  position: relative;
}

.footer-col ul li a:hover {
  color: var(--teal-light);
  padding-left: 0.6rem;
}

.footer-col ul li a::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--teal);
  border-radius: 2px;
  transition: height var(--transition-fast);
}

.footer-col ul li a:hover::before {
  height: 16px;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--teal-light);
}

/* =========================================================
   ANIMATIONS / KEYFRAMES
   ========================================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cellFlip {
  0% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  15% {
    opacity: 1;
    transform: rotateY(0deg);
  }
  85% {
    opacity: 1;
    transform: rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: rotateY(90deg);
  }
}

@keyframes cellReveal {
  0% {
    opacity: 1;
    transform: rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: rotateY(90deg);
  }
}

.fold-cell.intro {
  opacity: 1;
  transform: rotateY(0deg);
}

.fold-cell.intro-out {
  animation: cellReveal 0.8s ease-in-out forwards;
}

.slide.hero-hidden {
  opacity: 0 !important;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.05) translate(-0.5%, -0.5%);
  }
  100% {
    transform: scale(1.08) translate(-1%, 0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 24px rgba(27, 79, 138, 0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(27, 79, 138, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 24px rgba(27, 79, 138, 0.35);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

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

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes logoLightSweep {
  0% {
    left: -100%;
  }
  40% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@keyframes logoGlow {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 0 transparent);
  }
  50% {
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(27, 79, 138, 0.3));
  }
}

@keyframes fadeInCenter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(70, 160, 148, 0.2);
  }
  50% {
    border-color: rgba(70, 160, 148, 0.5);
  }
}

/* =========================================================
   SCROLL REVEAL CLASSES
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

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

.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }
.fade-in:nth-child(7) { transition-delay: 0.6s; }
.fade-in:nth-child(8) { transition-delay: 0.7s; }

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.auto-focus {
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0.6;
  transform: scale(0.98);
  scroll-margin-top: 80px;
}

.auto-focus.visible {
  opacity: 1;
  transform: scale(1);
}

.slide.visible {
  animation: fadeInCenter 0.8s ease forwards;
}

.pulse-circle {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(70, 160, 148, 0.15);
  animation: pulse 3s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.float-element {
  animation: float 4s ease-in-out infinite;
}

.shimmer-loading {
  background: linear-gradient(90deg, var(--bg-light) 25%, rgba(255, 255, 255, 0.8) 50%, var(--bg-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* =========================================================
   SECTION TITLE STYLES
   ========================================================= */
.section-title-wrapper {
  text-align: center;
  padding: 2rem 0;
}

.section-title-wrapper h2 {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.section-title-wrapper p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================================
   RESPONSIVE: 1200px
   ========================================================= */
@media (max-width: 1200px) {
  .navbar {
    padding: 0 1.2rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.84rem;
  }

  .distributor-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem !important;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .footer-container {
    padding: 3rem 2rem 2rem;
  }

  .expertise-tile {
    gap: 3rem;
    padding: 4rem 4%;
  }

  .downloads-layout {
    padding: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-tile iframe {
    height: 200px;
  }

  .about-content {
    gap: 2rem;
  }

  .about-image {
    flex: 0 0 50%;
  }

  .about-text {
    flex: 0 0 47%;
  }
}

/* =========================================================
   RESPONSIVE: 900px
   ========================================================= */
@media (max-width: 900px) {
  .header {
    padding: 0 1.5rem;
    height: 70px;
  }

  .logo-round {
    width: 50px;
    height: 50px;
  }

  .site-title img {
    height: 32px;
  }

  .header-right img.logo-imf {
    height: 30px;
  }

  .navbar {
    top: 70px;
    height: 46px;
    padding: 0 1.5rem;
  }

  :root {
    --header-height: 70px;
    --navbar-height: 46px;
    --total-nav-height: 116px;
  }

  .nav-links {
    display: none;
  }

  .navbar > .distributor-link,
  .navbar > .distributor-link.lang-active {
    display: none !important;
  }

  .lang-switch {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-content,
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .viewer-container {
    flex: 1 1 auto;
    width: 100%;
  }

  .about-text,
  .about-description {
    flex: 1 1 auto;
    width: 100%;
    text-align: left;
  }

  .expertise-tile,
  .expertise-tile:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .quality-split,
  .quality-split.reverse {
    flex-direction: column;
  }

  .quality-image {
    flex: 1 1 auto;
    width: 100%;
  }

  .expertise-image img {
    max-width: 90%;
  }

  .value-band {
    padding: 3rem 1.5rem;
  }

  .value-band-inner h3 {
    font-size: 1.4rem;
  }

  .value-band-inner p {
    font-size: 1rem;
  }

  .puzzle-tile {
    flex-direction: column !important;
    gap: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
  }

  .puzzle-text {
    padding: 1.5rem;
  }

  .puzzle-image {
    flex: none;
    width: 100%;
    border-radius: 0;
  }

  .puzzle-image img {
    border-radius: 0;
  }

  .puzzle-number {
    font-size: 4.5rem;
  }

  .puzzle-tile:nth-child(even) .puzzle-text {
    text-align: left;
  }

  .puzzle-tile:nth-child(even) .puzzle-text h3::after {
    left: 0;
    right: auto;
  }

  .puzzle-tile:nth-child(even) .puzzle-number {
    left: 0;
    right: auto;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
    padding: 3rem 2rem 2rem;
  }

  .footer-col h4::after {
    left: 0;
    transform: none;
  }

  .footer-col ul li a::before {
    display: block;
  }

  .downloads-layout {
    flex-direction: column;
  }

  .downloads-sidebar {
    width: 100%;
    position: static;
    max-height: 250px;
    border-radius: var(--radius-lg);
  }

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

}

/* =========================================================
   RESPONSIVE: 768px
   ========================================================= */
@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    min-height: 300px;
  }

  .caption {
    font-size: 0.95rem;
    max-width: 80%;
    bottom: 8%;
    left: 5%;
    padding: 1rem 1.2rem;
  }

  .thumbnails {
    padding: 0.5rem 1rem;
  }

  .thumb {
    width: 80px;
  }

  .thumb img {
    height: 55px;
  }

  .puzzle-section {
    padding: 0;
  }

  .puzzle-container {
    gap: 0;
  }

  .puzzle-tile {
    gap: 0;
    padding: 0;
    border-radius: 0;
  }

  .puzzle-image {
    border-radius: 0;
  }

  .puzzle-image img {
    border-radius: 0;
  }

  .viewer-container {
    height: 300px;
  }

  .contact-grid,
  .contact-grid-departments {
    grid-template-columns: 1fr;
  }

  .contact-tile iframe {
    height: 250px;
  }

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

  .product-grid {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .legal-container {
    padding: 2rem 1.2rem 4rem;
  }

  .image-viewer-prev {
    left: 10px;
  }

  .image-viewer-next {
    right: 10px;
  }

  .image-viewer-nav {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .catalogue-float-btn {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .map-container iframe {
    height: 280px;
  }

  .section-spacer {
    height: 40px;
  }

  .about-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .value-band {
    padding: 3rem 1.5rem;
  }

  .sidebar-toggle-btn {
    display: flex;
  }

  .downloads-sidebar.mobile-hidden {
    display: none;
  }

  .downloads-sidebar.mobile-visible {
    position: fixed;
    top: var(--total-nav-height);
    left: 0;
    width: 280px;
    height: calc(100vh - var(--total-nav-height));
    max-height: none;
    z-index: 1500;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.2);
    display: block;
    animation: slideInLeft 0.3s ease forwards;
  }
}

/* =========================================================
   RESPONSIVE: 600px
   ========================================================= */
@media (max-width: 600px) {
  .header {
    padding: 0 1rem;
    height: 60px;
  }

  .logo-round {
    width: 42px;
    height: 42px;
  }

  .site-title img {
    height: 26px;
  }

  .header-right img.logo-imf {
    height: 24px;
  }

  .navbar {
    top: 60px;
    height: 42px;
  }

  :root {
    --header-height: 60px;
    --navbar-height: 42px;
    --total-nav-height: 102px;
  }

  .hero-section {
    height: 100vh;
  }

  .caption {
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
    max-width: 90%;
    bottom: 6%;
    left: 4%;
  }

  .thumbnails {
    display: none;
  }

  .hero-dots {
    padding: 0.4rem 0;
  }

  .puzzle-section {
    padding: 0;
  }

  .puzzle-container {
    gap: 0;
  }

  .puzzle-text h3 {
    font-size: 1.3rem;
  }

  .puzzle-text p {
    font-size: 0.95rem;
  }

  .value-band {
    padding: 3rem 1rem;
  }

  .value-band-inner h3 {
    font-size: 1.25rem;
  }

  .value-band-inner p {
    font-size: 0.95rem;
  }

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

  .viewer-container {
    height: 250px;
  }

  .vacancy-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .vacancy-card {
    border-image-slice: 0 0 0 1;
  }

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

  .product-card-body h3 {
    font-size: 1.05rem;
  }

  .legal-container h1 {
    font-size: 1.5rem;
  }

  .legal-container h2 {
    font-size: 1.15rem;
  }

  .downloads-viewer object,
  .downloads-viewer embed,
  .downloads-viewer iframe {
    height: 50vh;
  }

  .section-spacer {
    height: 30px;
  }

  .mobile-menu-panel {
    width: 100%;
    max-width: 100%;
  }

  .expertise-tile {
    padding: 2rem 1rem;
  }

  .expertise-text {
    font-size: 0.95rem;
  }

  .vacancy-card {
    padding: 1.5rem;
  }

  .contact-card,
  .contact-tile {
    padding: 1.5rem;
  }

  .about-text {
    padding: 1.5rem;
    font-size: 0.95rem;
  }

  .image-viewer-content img {
    max-width: 95vw;
    max-height: 80vh;
    border-radius: var(--radius-sm);
  }
}

/* =========================================================
   PRINT STYLES
   ========================================================= */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .header,
  .navbar,
  .scroll-progress,
  .hamburger,
  .mobile-menu-overlay,
  .catalogue-float-btn,
  .download-btn,
  .sidebar-toggle-btn,
  .hero-dots,
  .about-nav-buttons,
  .image-viewer-overlay {
    display: none !important;
  }

  .page {
    padding-top: 0;
  }

  .page-centered {
    padding-top: 1rem;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1 {
    font-size: 20pt;
  }

  h2 {
    font-size: 16pt;
  }

  h3 {
    font-size: 14pt;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #666 !important;
  }

  .footer {
    page-break-before: always;
  }

  .puzzle-section,
  .hero-section {
    page-break-inside: avoid;
  }

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

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  .fade-in,
  .slide-in-left,
  .slide-in-right {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =========================================================
   REDUCED MOTION PREFERENCES
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .slide-in-left,
  .slide-in-right {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .slide img {
    animation: none;
  }
}

/* =========================================================
   FOCUS VISIBLE STYLES (Accessibility)
   ========================================================= */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* =========================================================
   SCROLLBAR STYLES
   ========================================================= */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-light), var(--teal));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) var(--bg-light);
}
