/* ============================================
   GABOR Industrial - Design System
   Light Industrial Aesthetic (GKS-Perfekt/Solving inspired)
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* === CSS VARIABLES === */
:root {
  /* Colors - Light Industrial palette (GKS-Perfekt / Solving inspired) */
  --bg-primary: #f9f9f9;
  --bg-secondary: #ffffff;
  --bg-tertiary: #eeeeee;
  --bg-card: rgba(255, 255, 255, 0.9);

  --accent-blue: #2A2A2A;
  --accent-blue-light: #404040;
  --accent-blue-glow: rgba(42, 42, 42, 0.3);

  --accent-red: #AB341F;
  --accent-red-light: #c43d24;
  --accent-red-glow: rgba(0, 0, 0, 0.1);

  --text-primary: #2A2A2A;
  --text-secondary: #727272;
  --text-muted: #888888;

  --border-subtle: rgba(171, 52, 31, 0.12);
  --border-accent: rgba(171, 52, 31, 0.2);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-heavy: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-red) var(--bg-secondary);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--accent-red);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red-light);
}

/* === UTILITY CLASSES === */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity var(--transition-heavy), transform var(--transition-heavy);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background: rgba(249, 249, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-medium);
}

.nav.scrolled {
  padding: var(--space-sm) 0;
  background: rgba(249, 249, 249, 0.98);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-logo {
  height: 60px;
  width: 139px;
  transition: transform var(--transition-fast);
max-width: 139px;
    max-height: 60px; 
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
 margin-bottom: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  position: relative;
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: calc(100% - 2rem);
}

.nav-link.highlight {
  background: var(--accent-red);
  color: #ffffff;
}

.nav-link.highlight:hover {
  background: var(--accent-red-light);
}

.nav-link.highlight::after {
  display: none;
}




li.wyr .nav-link {
  background: var(--accent-red);
  color: #ffffff;
}

li.wyr .nav-link:hover {
  background: var(--accent-red-light);
}

li.wyr .nav-link::after {
  display: none;
}

li.wyr .nav-link:hover::after {
 display: none;
}


li.nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-left: var(--space-sm);
  padding-left: var(--space-sm);
  border-left: 1px solid var(--border-subtle);
}


.nav-lang a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  text-transform: uppercase;
}

.nav-lang a:hover {
  color: var(--text-primary);
}

.nav-lang a.wyb {
    display: none;
}




/* === DROPDOWN MENU - INDUSTRIAL PRECISION === */
.nav-item {
  position: relative;
}

/* Level 1 Dropdown Indicator - Sharp Chevron Down */
.has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  margin-left: 0;
  border: none;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
  transition: all 0.2s ease;
}

.has-dropdown:hover > .nav-link::after,
.has-dropdown.active > .nav-link::after {
  opacity: 1;
  background: var(--accent-red);
}

/* Dropdown Panel - Level 2 */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  background: var(--bg-secondary);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-accent);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all var(--transition-medium);
  z-index: 1000;
  padding: 4px;
  overflow: hidden;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.active .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  list-style: none;
}

/* Dropdown Links - Level 2 */
.nav-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  transition: all var(--transition-fast);
  position: relative;
  border-left: 3px solid transparent;
  background: transparent;
}

.nav-dropdown-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(171, 52, 31, 0.08);
  opacity: 0;
  transition: all var(--transition-fast);
}

.nav-dropdown-link:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-primary);
  border-left-color: var(--accent-red);
  padding-left: 20px;
}

.nav-dropdown-link:hover::before {
  width: 100%;
  opacity: 0.05;
}

/* Level 2 → 3 Submenu Indicator - Sharp Chevron Right */
.nav-dropdown-item {
  position: relative;
  list-style: none;
}


/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

/* === HERO SECTION === */
/* ============================================
   HERO SECTION - INDUSTRIAL MONUMENT
   Brutalist, powerful, unforgettable
   ============================================ */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url('../img/products/hero_bg.jpg') center/cover no-repeat;
  box-sizing: border-box;
  padding-top: 80px; /* Space for fixed nav */
  padding-bottom: 80px; /* Space for scroll indicator */
}

/* Dark cinematic overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(10, 15, 30, 0.7);
  pointer-events: none;
}

/* Hero Overlay - subtle vignette */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 0;
}

/* === MONUMENTAL 360 BACKDROP === */
.hero-monument {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-monument-number {
  font-family: var(--font-display);
  font-size: clamp(40rem, 80vw, 100rem);
  font-weight: 400;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.04);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.08);
  text-stroke: 2px rgba(255, 255, 255, 0.08);
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: monumentReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes monumentReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}

/* === ANIMATED FILM GRAIN === */
.hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.12;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: grainShift 0.8s steps(4) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-80px, 40px); }
  50% { transform: translate(60px, -90px); }
  75% { transform: translate(-40px, 70px); }
  100% { transform: translate(0, 0); }
}

/* === HORIZONTAL ACCENT LINES (Symmetric) === */
.hero::after {
  content: '';
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  z-index: 3;
  animation: lineGrow 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
}

@keyframes lineGrow {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 0.4;
    height: 100px;
  }
}

/* === GLITCH SCANLINES === */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.1) 2px,
    rgba(0, 0, 0, 0.1) 4px
  );
  z-index: 4;
  pointer-events: none;
  opacity: 0.3;
  animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/* === LIGHT STREAKS ON METAL === */
.hero-bokeh {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.bokeh-circle {
  position: absolute;
  border-radius: 0;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.bokeh-circle:nth-child(1) { width: 35%; left: -35%; top: 18%; animation: streakSlide 6s ease-in-out infinite 0s; }
.bokeh-circle:nth-child(2) { width: 25%; left: -25%; top: 35%; height: 2px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); animation: streakSlide 8s ease-in-out infinite 2s; }
.bokeh-circle:nth-child(3) { width: 40%; left: -40%; top: 52%; animation: streakSlide 7s ease-in-out infinite 4s; }
.bokeh-circle:nth-child(4) { width: 20%; left: -20%; top: 68%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); animation: streakSlide 9s ease-in-out infinite 1s; }
.bokeh-circle:nth-child(5) { width: 30%; left: -30%; top: 82%; height: 2px; animation: streakSlide 7.5s ease-in-out infinite 5s; }
.bokeh-circle:nth-child(6) { width: 45%; left: -45%; top: 25%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent); animation: streakSlide 10s ease-in-out infinite 3s; }
.bokeh-circle:nth-child(7) { width: 22%; left: -22%; top: 45%; animation: streakSlide 6.5s ease-in-out infinite 6s; }
.bokeh-circle:nth-child(8) { width: 35%; left: -35%; top: 72%; height: 2px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent); animation: streakSlide 8.5s ease-in-out infinite 1.5s; }

@keyframes streakSlide {
  0% { left: -45%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}


/* === ACCENT GLOW - disabled for light theme === */
.hero-glow {
  display: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0; }
}

/* === HERO CONTENT - CENTERED FULL WIDTH === */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-xxl);
  max-width: 1100px;
  width: 100%;
}

/* Dark cinematic overlay behind text - disabled white blob */
.hero-content::before {
  display: none;
}

/* === BADGE - Industrial Tag with TEXT GLOW === */
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  position: relative;
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-badge span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@keyframes badgeGlowSweep {
  0%, 100% {
    background-position: 100% 0;
    text-shadow: none;
  }
  50% {
    background-position: -100% 0;
    text-shadow: 0 0 20px var(--accent-red-glow);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === MAIN TITLE - Massive Typography with POWER BREATHING === */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 18rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0;
  position: relative;
  animation: titleEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes titleEnter {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Power breathing wrapper - separate element for continuous animation */
.hero-title::before {
  content: 'GABOR';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  z-index: 1;
  pointer-events: none;
  animation: powerBreathing 3s ease-in-out 2s infinite;
}

/* Power breathing - disabled for light theme */
@keyframes powerBreathing {
  0%, 100% {
    text-shadow: none;
  }
  50% {
    text-shadow: none;
  }
}

/* Glow behind title - disabled for light theme */
.hero-title::after {
  display: none;
}

@keyframes titleRedGlow {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
}

/* === TONNAGE - The Power Statement with HYDRAULIC PULSE === */
.hero-tonnage {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.hero-tonnage-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  position: relative;
  text-shadow: none;
  animation: hydraulicPulse 3s ease-in-out 2s infinite;
}

/* Power indicator line */
.hero-tonnage-number::before {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 120%;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  transform-origin: center;
  animation: underlineGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

/* Tonnage glow ring - disabled for light theme */
.hero-tonnage-number::after {
  display: none;
}

@keyframes hydraulicPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes underlineGrow {
  to { transform: translateX(-50%) scaleX(1); }
}

@keyframes powerLineGlow {
  0%, 100% {
    box-shadow: none;
  }
  50% {
    box-shadow: none;
  }
}

@keyframes tonnageGlow {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-tonnage-unit {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  align-self: flex-end;
  padding-bottom: 0.8rem;
  animation: textFlicker 5s ease-in-out 2.5s infinite;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes textFlicker {
  0%, 95%, 100% {
    opacity: 1;
  }
  96% {
    opacity: 0.5;
  }
  97% {
    opacity: 1;
  }
  98% {
    opacity: 0.7;
  }
}

/* === SUBTITLE (Centered) === */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* === CTA BUTTONS (Centered) === */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
  position: relative;
  z-index: 10;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 4px 30px var(--accent-red-glow);
  animation: buttonPulse 3s ease-in-out 2.5s infinite;
}

/* Power surge sweep effect */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: powerSurge 4s ease-in-out 3s infinite;
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 4px 30px var(--accent-red-glow);
  }
  50% {
    box-shadow:
      0 4px 30px var(--accent-red-glow),
      0 0 60px var(--accent-red-glow);
  }
}

@keyframes powerSurge {
  0% {
    left: -100%;
  }
  30%, 100% {
    left: 200%;
  }
}

.btn-primary:hover {
  background: var(--accent-red-light);
  transform: translateY(-3px);
  box-shadow:
    0 8px 40px var(--accent-red-glow),
    0 0 80px var(--accent-red-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.btn-icon {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(5px);
}

/* === SCROLL INDICATOR - Bottom Center === */
.hero-scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 1;
  z-index: 5;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero-scroll.hidden {
  opacity: 0;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}

.hero-scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% {
    top: 0;
    opacity: 1;
  }
  50% {
    top: 40px;
    opacity: 0.3;
  }
}

/* === HERO RESPONSIVE === */
@media (max-width: 1024px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-monument-number {
    font-size: clamp(25rem, 60vw, 50rem);
  }

  .hero-title {
    font-size: clamp(4rem, 16vw, 12rem);
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 60px;      
      
  }
    
 

  .hero-content {
    padding: var(--space-sm);
  }

  .hero-badge {
    margin-bottom: var(--space-sm);
  }

  .hero-badge::before,
  .hero-badge::after {
    width: 25px;
  }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 8rem);
  }

  .hero-tonnage {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
  }

  .hero-tonnage-number {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-tonnage-unit {
    width: 100%;
    text-align: center;
    padding-bottom: 0;
    font-size: 0.7rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
  }

  .hero-monument-number {
    font-size: clamp(15rem, 50vw, 30rem);
  }

  .hero::after {
    display: none;
  }

  .hero-scroll {
    bottom: var(--space-xs);
  }

  .hero-scroll-line {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 65px;
    padding-bottom: 50px;
  }

  .hero-content {
    padding: var(--space-xs);
  }

  .hero-title {
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  .hero-tonnage-number {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-tonnage-unit {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .hero-badge span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }

  .hero-badge::before,
  .hero-badge::after {
    width: 20px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-monument-number {
    font-size: clamp(10rem, 40vw, 20rem);
  }

  /* Disable particles on small screens for performance */
  .hero-particles,
  .hero-grid-lines,
  .hero-accent-bars {
    display: none;
  }
}

/* === PAGE HEADER (Subpages) === */
.page-header {
  padding: calc(80px + var(--space-lg)) 0 var(--space-lg);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.page-header-content {
  text-align: center;
}

.page-header-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

/* === ABOUT SECTION - INDUSTRIAL COMMAND CENTER === */
.about {
  padding: var(--space-xl) 0;
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.about .tit7{ max-width: 450px; }

/* Top accent line - subtle */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

/* Technical blueprint grid - subtle gray */
.about::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 80% at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at center, black 30%, transparent 70%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-content {
  padding-right: var(--space-md);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent-red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}



.about-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* Stats - Industrial Data Readouts */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: var(--space-lg);
}

.stat {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(171, 52, 31, 0.18);
  border-radius: 0;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* Top accent bar */
.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(171, 52, 31, 0.4);
  transform-origin: left;
  transform: scaleX(0.3);
  transition: transform 0.4s ease;
}

/* Scanning line effect */
.stat::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(171, 52, 31, 0.03);
  transition: left 0.6s ease;
}

.stat:hover {
  border-color: rgba(171, 52, 31, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(171, 52, 31, 0.08);
}

.stat:hover::before {
  transform: scaleX(1);
}

.stat:hover::after {
  left: 100%;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(42, 42, 42, 0.95);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: none;
  transition: all var(--transition-medium);
  position: relative;
}

.stat:hover .stat-number {
  color: var(--accent-red);
  text-shadow: none;
  transform: scale(1.05);
}

.stat-label {
  font-size: 0.65rem;
  color: rgba(42, 42, 42, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  line-height: 1.4;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

/* === HERITAGE PANEL - INDUSTRIAL COMMAND DISPLAY === */
.heritage-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border: none;
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  width: 100%;
  max-width: 440px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(171, 52, 31, 0.12);
}

/* Outer accent frame */
.heritage-panel::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: rgba(171, 52, 31, 0.08);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  z-index: -1;
  opacity: 0.8;
  transition: opacity var(--transition-medium);
}

.heritage-panel:hover::before {
  opacity: 1;
  background: rgba(171, 52, 31, 0.12);
}

/* Noise texture overlay */
.heritage-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Corner cut indicators - subtle warm accent */
.heritage-corner {
  position: absolute;
  border-color: rgba(171, 52, 31, 0.25);
  border-style: solid;
  border-width: 0;
  transition: all var(--transition-medium);
  z-index: 3;
}

.heritage-corner-tl {
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  border: none;
  background: rgba(171, 52, 31, 0.3);
}

.heritage-corner-tr {
  top: 20px;
  right: 0;
  width: 2px;
  height: 40px;
  border: none;
  background: rgba(171, 52, 31, 0.3);
}

.heritage-corner-bl {
  bottom: 20px;
  left: 0;
  width: 2px;
  height: 40px;
  border: none;
  background: rgba(171, 52, 31, 0.3);
}

.heritage-corner-br {
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  border: none;
  background: rgba(171, 52, 31, 0.3);
}

.heritage-panel:hover .heritage-corner-tl,
.heritage-panel:hover .heritage-corner-tr,
.heritage-panel:hover .heritage-corner-bl,
.heritage-panel:hover .heritage-corner-br {
  background: rgba(171, 52, 31, 0.45);
}

/* Header with technical marking */
.heritage-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(171, 52, 31, 0.12);
}

.heritage-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(100, 80, 70, 0.8);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}

.heritage-label::before {
  content: '//';
  margin-right: 6px;
  opacity: 0.5;
}

.heritage-line {
  flex: 1;
  height: 1px;
  background: rgba(171, 52, 31, 0.15);
}

/* Year - MONUMENTAL SERIAL NUMBER */
.heritage-year {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: var(--space-md) 0;
  position: relative;
}

.heritage-year::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: rgba(171, 52, 31, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.heritage-year-prefix {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(100, 80, 70, 0.65);
  letter-spacing: 0.3em;
  margin-bottom: 4px;
}

.heritage-year-value {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-shadow: none;
  position: relative;
  z-index: 5;
  filter: none;
  animation: none;
}

@keyframes yearFlicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.95;
  }
  52% {
    opacity: 1;
  }
}

.heritage-tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(100, 80, 70, 0.75);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
  display: flex;
  align-items: center;
  gap: 12px;
}

.heritage-tagline::before,
.heritage-tagline::after {
  content: '';
  width: 20px;
  height: 1px;
  background: rgba(171, 52, 31, 0.25);
}

/* Divider - Technical separator */
.heritage-divider {
  position: relative;
  text-align: center;
  margin: var(--space-md) 0 var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.heritage-divider::before,
.heritage-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(171, 52, 31, 0.18);
}

.heritage-divider-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(100, 80, 70, 0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid rgba(171, 52, 31, 0.2);
  background: rgba(171, 52, 31, 0.04);
}

/* Partners row - Data cards */
.heritage-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: var(--space-sm) 0 var(--space-md);
}

.heritage-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(171, 52, 31, 0.18);
  transition: all var(--transition-medium);
  position: relative;
  z-index: 5;
  overflow: hidden;
}

/* Top accent bar */
.heritage-partner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(171, 52, 31, 0.35);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.heritage-partner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(171, 52, 31, 0.02);
  animation: partnerSweep 8s linear infinite;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

@keyframes partnerSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.heritage-partner:hover {
  border-color: rgba(171, 52, 31, 0.3);
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.1),
    0 0 15px rgba(0, 0, 0, 0.05);
}

.heritage-partner:hover::before {
  transform: scaleX(1);
}

.heritage-partner:hover::after {
  opacity: 1;
}

.heritage-partner-flag {
  width: 44px;
  height: 30px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
  position: relative;
  z-index: 2;
}

.heritage-partner:hover .heritage-partner-flag {
  transform: scale(1.1);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 0 10px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.heritage-partner-flag svg {
  width: 100%;
  height: 100%;
}

.heritage-partner-name {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(100, 80, 70, 0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: all var(--transition-fast);
  position: relative;
  z-index: 2;
}

.heritage-partner:hover .heritage-partner-name {
  color: var(--text-primary);
  text-shadow: none;
}

/* Footer status - System readout */
.heritage-footer {
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
}

.heritage-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(34, 197, 94, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.heritage-status-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: statusBlink 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

@keyframes statusBlink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.3);
  }
}

/* === PRODUCTS SECTION === */
.products {
  padding: var(--space-xl) 0;
  position: relative;
 background: #f9f9f9;
}

.products-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.product-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: var(--space-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 42, 0.03);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.product-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:nth-child(2)::before {
  background: rgba(171, 52, 31, 0.04);
}

.product-card:nth-child(2):hover {
  border-color: var(--accent-red);
}

.product-content {
  position: relative;
  z-index: 1;
}

.product-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 2rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.product-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-right: 70px;
  padding-bottom: var(--space-xs);
}

.product-spec {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}

.product-arrow {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.product-card:hover .product-arrow {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: white;
  transform: translateX(5px);
}

.product-card:nth-child(2):hover .product-arrow {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: white;
}

/* Product Cards with Images */
.products-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-card-img {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.product-card-img .product-content {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-img .product-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
    color: #2a2a2a!important;
    font-weight: 700;
}





.product-card-img .product-desc {
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  flex: 1;
}

.product-card-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.product-card-image.contain-img,
.category-card-image.contain-img {
  background: #ffffff;
}

.product-card-image.contain-img img,
.category-card-image.contain-img img {
  object-fit: contain;
  padding: 8px;
}

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

.product-carousel-slide .img3 img { object-fit: contain;   padding: 10px; }
.product-carousel-slide .img3  { background: #fff; }

.arr5> a:hover { color: #fff; }

.product-card  .arr5 > a{ color: #727272; }
.product-card:hover  .arr5 > a{ color: #fff; }


#produkty .product-arrow.arr5 { z-index: 3;  }

.product-card-img .product-arrow {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  z-index: 1;
}

.product-card-img .product-specs {
  padding-right: 50px;
}

/* 4-column grid responsive */
@media (max-width: 1200px) {
  .products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid-4 {
    grid-template-columns: 1fr;
  }

  .product-card-image {
    height: 200px;
  }
}

/* === PARTNERS SECTION - Industrial Data Cards === */
.partners {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern background */
.partners::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Top/bottom accent lines */
.partners::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(171, 52, 31, 0.25);
}

.partners-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.partners-subtitle {
  color: var(--text-secondary);
  margin-top: var(--space-sm);
  font-size: 1.1rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

/* === PARTNER CARD === */
.partner-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-subtle);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition-medium);
  overflow: hidden;
}

/* Corner brackets - industrial look */
.partner-card-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--border-accent);
  border-style: solid;
  border-width: 0;
  transition: all var(--transition-medium);
  opacity: 0.8;
}

.partner-card-corner-tl {
  top: 8px;
  left: 8px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.partner-card-corner-tr {
  top: 8px;
  right: 8px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.partner-card-corner-bl {
  bottom: 8px;
  left: 8px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.partner-card-corner-br {
  bottom: 8px;
  right: 8px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.partner-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-8px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.12),
    0 0 40px rgba(0, 0, 0, 0.05);
}

.partner-card:hover .partner-card-corner {
  border-color: var(--accent-red);
  opacity: 1;
  width: 25px;
  height: 25px;
}

/* Featured card (SOLVING - max tonnage) */
.partner-card-featured {
  border-color: var(--accent-red);
  background: rgba(255, 255, 255, 0.98);
}

.partner-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-red);
}

/* Badge - inline next to tonnage, not in corner */
.partner-card-badge {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  margin-left: var(--space-sm);
  transform: translateY(-2px);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1); }
  50% { box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.15); }
}

/* Card Header - flag, origin, since */
.partner-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border-subtle);
}


.partner-card-flag {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
 line-height: 0;
}


.flag-svg {
  width: 100%;
  height: 100%;
}

.partner-card-origin {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.partner-card-since {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-red);
  letter-spacing: 0.05em;
}

/* Brand name section */
.partner-card-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.partner-card-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  line-height: 1;
  white-space: nowrap;
}

.partner-card-company {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* Spec - the big tonnage number */
.partner-card-spec {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: var(--space-sm) 0;
  border-top: 1px dashed var(--border-subtle);
  border-bottom: 1px dashed var(--border-subtle);
  margin: var(--space-xs) 0;
}

.partner-card-spec-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent-red);
  line-height: 1;
  letter-spacing: -0.02em;
}

.partner-card-spec-unit {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Alternative spec (for Holmatro - no tonnage) */
.partner-card-spec-alt {
  justify-content: center;
  padding: var(--space-md) 0;
}

.partner-card-spec-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent-red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Description */
.partner-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex-grow: 1;
}

/* Tags */
.partner-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.partner-card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 4px 10px;
  border: 1px solid var(--border-subtle);
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
}

.partner-card:hover .partner-card-tag {
  border-color: var(--accent-blue);
  color: var(--text-secondary);
}

/* Status indicator */
.partner-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.partner-card-status-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* === POLECAMY SECTION === */
.polecamy {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
}

.polecamy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.polecamy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition-medium);
}

.polecamy-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.polecamy-icon {
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--accent-red);
}

    
.polecamy-icon img { filter: brightness(0) saturate(100%) invert(25%) sepia(15%) saturate(4318%) hue-rotate(332deg) brightness(113%) contrast(106%); }



.polecamy-card:hover .polecamy-icon {
  color: var(--accent-red-light);
}

.polecamy-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.polecamy-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* === CTA SECTION === */
.cta {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
}

.cta-inner {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(171, 52, 31, 0.03);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.cta-text {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto var(--space-md);
}

.cta .btn-primary {
  background: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta .btn-primary:hover {
  background: var(--accent-red-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* === CONTACT PAGE === */
.contact-section {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: space-between;
}

.contact-card {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all var(--transition-medium);
  align-items: flex-start;
}

.contact-card:hover {
  border-color: var(--accent-blue);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(171, 52, 31, 0.06);
  border: 1px solid var(--accent-blue);
  border-radius: 8px;
  color: var(--accent-blue);
}

.contact-card-content h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.contact-card-content p {
  color: var(--text-primary);
  line-height: 1.6;
}

.contact-card-content a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-card-content a:hover {
  color: var(--accent-blue);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(171, 52, 31, 0.08);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--accent-blue);
  text-decoration: none;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.form-submit {
  margin-top: var(--space-sm);
  width: 100%;
}

/* Map Section */
.map-section {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === FOOTER === */
.footer {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

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

.footer-logo {
  height: 40px;
  margin-bottom: var(--space-sm);
    margin-bottom: 6px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-red);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.footer-contact p a{  color: var(--text-secondary); }
.footer-contact p a:hover{ color: var(--accent-red);  }


.footer-contact .address-line {
  white-space: nowrap;
}

.footer-contact-icon {
  color: var(--accent-red);
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}
.footer-contact-icon img{
    filter: invert(32%) sepia(65%) saturate(600%) hue-rotate(340deg); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
    width: 100%; 
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

 


/* RODO */

  .page-hero {
      padding: calc(var(--space-xl) + 80px) 0 var(--space-lg);
      background: var(--bg-secondary);
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-blue-glow) 0%, transparent 50%);
      opacity: 0.3;
    }

    .page-hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .page-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 6rem);
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
        text-align: center;
font-weight: 700; 
    }

    .page-subtitle {
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }

    /* RODO Content */
    .rodo-section {
      padding: var(--space-xl) 0;
    }

    .rodo-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .rodo-block {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: var(--space-lg);
      margin-bottom: var(--space-md);
    }

    .rodo-block h2 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-md);
      color: var(--accent-red);
    }

    .rodo-block h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      letter-spacing: 0.05em;
      margin: var(--space-md) 0 var(--space-sm);
      color: var(--text-primary);
    }

    .rodo-block p {
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: var(--space-sm);
    }

    .rodo-block ul {
      color: var(--text-secondary);
      line-height: 1.8;
      margin-left: var(--space-md);
      margin-bottom: var(--space-sm);
    }

    .rodo-block li {
      margin-bottom: 0.5rem;
    }

    .rodo-block strong {
      color: var(--text-primary);
    }

    .rodo-block a {
      color: var(--accent-red);
      text-decoration: none;
    }

    .rodo-block a:hover {
      text-decoration: underline;
    }

    .admin-info {
      background: var(--bg-tertiary);
      border-radius: 8px;
      padding: var(--space-md);
      margin: var(--space-md) 0;
    }

    .admin-info p {
      margin-bottom: 0.5rem;
    }


.rodo-section {   padding: var(--space-xl) 0; background-color: #f9f9f9; }

.page-hero-content {  text-align: center; } 

.page-rodo  h1 {  text-align: center; }



/* FIRMA */
/* Page-specific styles */
    .page-hero {
      padding: calc(var(--space-xl) + 80px) 0 var(--space-lg);
      background: var(--bg-secondary);
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-blue-glow) 0%, transparent 50%);
      opacity: 0.5;
    }

    .page-hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .page-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 6rem);
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
    }

    .page-subtitle {
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Timeline */
    .timeline {
      padding: var(--space-xl) 0;
      position: relative;
        background: #f9f9f9;
    }

    .timeline-items {
      position: relative;
    }

    .timeline-items::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 10px;
      bottom: calc(var(--space-lg) + 10px);
      width: 2px;
      background: var(--border-accent);
      transform: translateX(-50%);
    }

    .timeline-item {
      display: flex;
      margin-bottom: var(--space-lg);
      position: relative;
    }

    .timeline-item:last-child {
      margin-bottom: 0;
    }

    .timeline-item:nth-child(odd) {
      flex-direction: row-reverse;
    }

    .timeline-item:nth-child(odd) .timeline-content {
      text-align: right;
      padding-right: var(--space-lg);
      padding-left: 0;
    }

    .timeline-content {
      width: 50%;
      padding-left: var(--space-lg);
    }

    .timeline-dot {
      position: absolute;
      left: 50%;
      top: 0;
      width: 20px;
      height: 20px;
      background: var(--accent-red);
      border-radius: 50%;
      transform: translateX(-50%);
      box-shadow: 0 0 20px var(--accent-red-glow);
    }

    .timeline-year {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--accent-blue-light);
      margin-bottom: var(--space-xs);
    }

    .timeline-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-xs);
    }

    .timeline-text {
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* Industries */
    .industries {
      padding: var(--space-xl) 0;
      background: var(--bg-secondary);
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }

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

    @media (max-width: 480px) {
      .industries-grid {
        grid-template-columns: 1fr;
      }
    }

    .industry-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: var(--space-md);
      text-align: center;
      transition: all var(--transition-medium);
    }

    .industry-card:hover {
      border-color: var(--accent-blue);
      transform: translateY(-5px);
    }

    .industry-icon {
      font-size: 2.5rem;
      margin-bottom: var(--space-sm);
    }

    .industry-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: 0.05em;
    }

    /* Company Info */
    .company-info {
      padding: var(--space-xl) 0;
        background: #f9f9f9;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-lg);
    }

    .info-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: var(--space-lg);
    }

    .info-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-md);
      color: var(--accent-red);
    }

    .info-list {
      list-style: none;
    }

    .info-list li {
      display: flex;
      justify-content: space-between;
      padding: var(--space-sm) 0;
      border-bottom: 1px solid var(--border-subtle);
      font-size: 0.95rem;
    }

    .info-list li:last-child {
      border-bottom: none;
    }

    .info-label {
      color: var(--text-muted);
    }

    .info-value {
      color: var(--text-primary);
      font-family: var(--font-mono);
    }

    @media (max-width: 768px) {
      .timeline-items::before {
        left: 20px;
      }

      .timeline-item,
      .timeline-item:nth-child(odd) {
        flex-direction: column;
      }

      .timeline-content,
      .timeline-item:nth-child(odd) .timeline-content {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
      }

      .timeline-dot {
        left: 20px;
      }

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



 /* CONTACT */

  .page-hero {
      padding: calc(var(--space-xl) + 80px) 0 var(--space-lg);
      background: var(--bg-secondary);
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-red-glow) 0%, transparent 50%);
      opacity: 0.5;
    }

    .page-hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .page-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 6rem);
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
    }

    .page-subtitle {
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 680px;
      margin: 0 auto;
    }

    /* Contact Section */
    .contact-section {
      padding: var(--space-xl) 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-lg);
    }

    /* Contact Info */
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .contact-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: var(--space-md);
      display: flex;
      align-items: flex-start;
      gap: var(--space-md);
      transition: all var(--transition-medium);
    }

    .contact-card:hover {
      border-color: var(--accent-red);
      transform: translateX(10px);
    }

    .contact-card-icon {
      width: 50px;
      height: 50px;
      background: var(--bg-tertiary);
      border: 1px solid var(--border-accent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .contact-card-content h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: 0.05em;
      margin-bottom: 0.5rem;
    }

    .contact-card-content p {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .contact-card-content a {
      color: var(--accent-red);
      text-decoration: none;
      transition: color var(--transition-fast);
    }

    .contact-card-content a:hover {
      color: var(--accent-red-light);
    }

    /* Contact Form */
    .contact-form-wrapper {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: var(--space-lg);
    }

    .contact-form-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-md);
    }

    .form-group {
      margin-bottom: var(--space-md);
    }

    .form-label {
      display: block;
      font-size: 0.9rem;
      color: var(--text-secondary);
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 1rem;
      background: var(--bg-tertiary);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 1rem;
      transition: all var(--transition-fast);
    }

    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--accent-red);
      box-shadow: 0 0 0 3px var(--accent-red-glow);
    }

    .form-textarea {
      min-height: 150px;
      resize: vertical;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-md);
    }

    .form-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      cursor: pointer;
    }

    .form-checkbox input {
      width: 20px;
      height: 20px;
      accent-color: var(--accent-red);
      flex-shrink: 0;
      margin-top: 0.2rem;
    }

    .form-checkbox span {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .form-checkbox a {
      color: var(--accent-red);
      text-decoration: none;
    }

    .form-submit {
      width: 100%;
      margin-top: var(--space-sm);
    }

    /* Map Section */
    .map-section {
      padding: var(--space-xl) 0;
      background: var(--bg-secondary);
    }

    .map-wrapper {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      height: 400px;
    }

.map-wrapper > p{  height: 100%;    }



    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(100%) invert(92%) contrast(90%);
    }

    @media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }

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



.page-hero {
      padding: calc(var(--space-xl) + 80px) 0 var(--space-lg);
      background: var(--bg-secondary);
      position: relative;
      overflow: hidden;
    }

.p101 .page-hero {padding: calc(80px + var(--space-lg)) 0 var(--space-lg); }


    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-red-glow) 0%, transparent 50%);
      opacity: 0.6;
    }

    .page-hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .page-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 6rem);
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
    }

    .page-subtitle {
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Promotions Section */
    .promo-section {
      padding: var(--space-xl) 0;
        background: #f9f9f9;
    }

    .promo-banner {
      background: var(--bg-tertiary);
      border: 1px solid var(--border-accent);
      border-radius: 20px;
      padding: var(--space-xl);
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-bottom: var(--space-xl);
    }

    .promo-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .promo-banner-content {
      position: relative;
      z-index: 1;
    }

    .promo-banner h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.5rem);
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
      color: var(--text-primary);
        font-weight: 700;
    }

    .promo-banner p {
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto var(--space-md);
    }

    .promo-banner .btn-primary {
      background: var(--accent-red);
      color: #ffffff;
    }

    /* Promo Cards - 2 columns for symmetry (4 cards = 2+2) */
    .promo-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
    }

    .promo-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      overflow: hidden;
      transition: all var(--transition-medium);
    }

    .promo-card:hover {
      border-color: var(--accent-blue);
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .promo-card-header {
      background: var(--bg-tertiary);
      border-bottom: 1px solid var(--border-subtle);
      padding: var(--space-md);
      position: relative;
    }

    .promo-badge {
      position: absolute;
      top: var(--space-sm);
      right: var(--space-sm);
      background: var(--accent-red);
      color: #ffffff;
      font-family: var(--font-display);
      font-size: 0.9rem;
      padding: 0.3rem 0.8rem;
      border-radius: 4px;
      letter-spacing: 0.05em;
        
    }

    .promo-card-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      color: var(--text-primary);
           font-weight: 700;
    }

    .promo-card-body {
      padding: var(--space-lg);
    }

    .promo-card-desc {
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: var(--space-md);
    }

    .promo-card-features {
      list-style: none;
      margin-bottom: var(--space-md);
    }

    .promo-card-features li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--text-secondary);
      margin-bottom: 0.75rem;
      font-size: 0.95rem;
    }

    .promo-card-features li::before {
      content: '✓';
      color: var(--accent-red);
      font-weight: bold;
    }

    .promo-card-cta {
      display: flex;
      gap: var(--space-sm);
    }

    .promo-card-cta .btn {
      flex: 1;
      justify-content: center;
    }

    /* Info Section */
    .promo-info {
      background: var(--bg-secondary);
      padding: var(--space-xl) 0;
    }

    .promo-info-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .promo-info h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-md);
        font-weight: 700;
    }

    .promo-info p {
      color: var(--text-secondary);
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    .promo-contact-info {
      display: flex;
      justify-content: center;
      gap: var(--space-lg);
      flex-wrap: wrap;
      margin-top: var(--space-md);
    }

    .promo-contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--text-secondary);
    }

    .promo-contact-item a {
      color: var(--accent-red);
      text-decoration: none;
    }

    .promo-contact-item a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .promo-grid {
        grid-template-columns: 1fr;
      }

      .promo-banner {
        padding: var(--space-md);
        margin-bottom: var(--space-md);
      }

      .promo-banner h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: var(--space-xs);
      }

      .promo-banner p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: var(--space-sm);
      }

      .promo-card-body {
        padding: var(--space-md);
      }

      .promo-card-title {
        font-size: 1.2rem;
      }

      .promo-card-desc {
        font-size: 0.9rem;
        line-height: 1.5;
      }

      .promo-info {
        padding: var(--space-md) 0;
      }

      .promo-info h2 {
        font-size: 1.5rem;
        line-height: 1.2;
      }

      .promo-info p {
        font-size: 0.95rem;
        line-height: 1.5;
      }

      .promo-contact-info {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
      }
    }





 

    .page-hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .page-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 6rem);
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
    }

    .page-subtitle {
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Tech Sections */
    .tech-section {
      padding: var(--space-xl) 0;
    }

#transport { background: #f9f9f9;  }
#transporte { background: #f9f9f9;  }

    .tech-section:nth-child(even) {
      background: var(--bg-secondary);
    }

    .tech-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }

    .tech-grid-5col {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }

    @media (max-width: 1200px) {
      .tech-grid-5col {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 1024px) {
      .tech-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .tech-grid-5col {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .tech-grid,
      .tech-grid-5col {
        grid-template-columns: 1fr;
      }
    }

    .tech-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: var(--space-md);
      transition: all var(--transition-medium);
      display: flex;
      flex-direction: column;
    }

    .tech-card:hover {
      border-color: var(--accent-blue);
      transform: translateY(-5px);
    }

    .tech-card-icon {
      width: 50px;
      height: 50px;
      background: var(--bg-tertiary);
      border: 1px solid var(--border-accent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-sm);
      color: var(--accent-red);
    }

    .tech-card-icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
    }

    .tech-card-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-xs);
    }

    .tech-card-desc {
      color: var(--text-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
      flex-grow: 1;
    }

    .tech-card-type {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--accent-blue-light);
      background: rgba(43, 58, 140, 0.2);
      padding: 0.3rem 0.6rem;
      border-radius: 4px;
      margin-top: var(--space-sm);
      align-self: flex-start;
    }

    /* Resources Info */
    .resources-info {
      background: var(--bg-card);
      border: 1px solid var(--accent-blue);
      border-radius: 12px;
      padding: var(--space-lg);
      margin-top: var(--space-lg);
      text-align: center;
    }

    .resources-info h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
    }

    .resources-info p {
      color: var(--text-secondary);
      margin-bottom: var(--space-md);
    }




   .page-hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .page-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 6rem);
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
    }

.p101 .page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
    }


    .page-subtitle {
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 700px;
      margin: 0 auto;
    }


 .p101 .page-subtitle {
 color: var(--text-secondary);
  max-width: 600px;
  margin: var(--space-sm) auto 0;
     font-size: 16px; 
     font-weight: 400; line-height: 26px; 
    }

 .p101 .page-hero-content .section-label { justify-content: flex-start!important; }


    /* Category Cards */
    .categories-section {
      padding: var(--space-xl) 0;
        background-color: #f9f9f9; 
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-lg);
      margin-top: var(--space-lg);
    }

    .category-card {
      display: block;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: all var(--transition-medium);
    }

    .category-card:hover {
      border-color: var(--accent-red);
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .category-card-image {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: var(--bg-tertiary);
    }

    .category-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .category-card:hover .category-card-image img {
      transform: scale(1.05);
    }

    .category-card-content {
      padding: var(--space-md) var(--space-lg);
    }

    .category-card-title {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 3vw, 1.8rem);
      letter-spacing: 0.05em;
      margin-bottom: var(--space-xs);
    }

    .category-card-desc {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: var(--space-sm);
    }

    .category-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-display);
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      color: var(--accent-red);
      transition: gap 0.3s ease;
    }

    .category-card:hover .category-card-link {
      gap: 0.8rem;
    }

.category-card-link:hover {  color:#222;}


    @media (max-width: 768px) {
      .categories-grid {
        grid-template-columns: 1fr;
      }
    }




/* Products Grid */
    .products-section {
      padding: var(--space-xl) 0;
        background-color: #f9f9f9; 
    }

    .products-category-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-md);
    }

    @media (max-width: 1200px) {
      .products-category-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .products-category-grid {
        grid-template-columns: 1fr;
      }
    }

    .product-category-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: var(--space-lg);
      transition: all var(--transition-medium);
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .product-category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-light));
      transform: scaleX(0);
      transition: transform var(--transition-medium);
    }

    .product-category-card:hover {
      border-color: var(--accent-blue);
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

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

    .product-category-icon {
      width: 70px;
      height: 70px;
      background: var(--bg-tertiary);
      border: 1px solid var(--border-accent);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-md);
      color: var(--accent-red);
      transition: all var(--transition-medium);
    }

    .product-category-icon svg {
      width: 32px;
      height: 32px;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
    }

    .product-category-card:hover .product-category-icon {
      background: var(--accent-blue);
      border-color: var(--accent-blue);
      color: white;
    }

    .product-category-title {
      font-family: var(--font-display);
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
    }

    .product-category-desc {
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: var(--space-md);
      font-size: 0.95rem;
      flex-grow: 1;
    }

    .product-category-specs {
      margin-top: auto;
    }

    .product-category-spec {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--accent-blue-light);
      background: rgba(43, 58, 140, 0.2);
      padding: 0.4rem 0.8rem;
      border-radius: 4px;
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
      white-space: nowrap;
    }

    /* Brands */
    .brands-section {
      padding: var(--space-lg) 0;
      background: var(--bg-secondary);
    }

    .brands-grid {
      display: flex;
      justify-content: center;
      gap: var(--space-lg);
      flex-wrap: wrap;
    }

    .brand-item {
      text-align: center;
      padding: var(--space-md) var(--space-lg);
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      min-width: 200px;
    }

    .brand-name {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      margin-bottom: 0.5rem;
    }

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

    .brand-spec {
      font-family: var(--font-mono);
      font-size: 0.9rem;
      color: var(--accent-red);
      margin-top: var(--space-sm);
    }










/* Products Grid */
    .products-section {
      padding: var(--space-xl) 0;
    }

    .products-category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
    }

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

    @media (max-width: 768px) {
      .products-category-grid {
        grid-template-columns: 1fr;
      }
    }

    .product-category-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: var(--space-lg);
      transition: all var(--transition-medium);
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .product-category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-light));
      transform: scaleX(0);
      transition: transform var(--transition-medium);
    }

    .product-category-card:hover {
      border-color: var(--accent-red);
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

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

    .product-category-icon {
      width: 70px;
      height: 70px;
      background: var(--bg-tertiary);
      border: 1px solid var(--border-accent);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-md);
      color: var(--accent-red);
      transition: all var(--transition-medium);
    }

    .product-category-icon svg {
      width: 32px;
      height: 32px;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
    }


.product-category-icon img {  width: 32px;   height: auto;    }


    .product-category-card:hover .product-category-icon {
      background: var(--accent-red);
      border-color: var(--accent-red);
      color: white;
    }

 .product-category-card:hover .product-category-icon img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    }



    .product-category-title {
      font-family: var(--font-display);
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
    }

    .product-category-desc {
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: var(--space-md);
      font-size: 0.95rem;
      flex-grow: 1;
    }

    .product-category-specs {
      margin-top: auto;
    }

    .product-category-spec {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--accent-red-light);
      background: rgba(0, 0, 0, 0.05);
      padding: 0.4rem 0.8rem;
      border-radius: 4px;
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
      white-space: nowrap;
    }

    /* Features */
    .features-section {
      padding: var(--space-lg) 0;
      background: var(--bg-secondary);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: var(--space-md);
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: var(--space-sm);
      padding: var(--space-md);
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      background: var(--bg-tertiary);
      border: 1px solid var(--border-accent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--accent-red);
    }

    .feature-icon svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
    }

.feature-icon img { width: 20px;  height: auto;    }



    .feature-text {
      font-size: 0.95rem;
      color: var(--text-secondary);
    }

    .feature-text strong {
      color: var(--text-primary);
      display: block;
      margin-bottom: 0.25rem;
    }









/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .heritage-year-value {
    font-size: 4rem;
  }

  .heritage-partners {
    flex-direction: column;
      display: flex;
  }

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

  /* Partners - 2 columns on tablet, featured card spans full width */
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card-featured {
    grid-column: 1 / -1;
  }

  /* Polecamy - 2 columns on tablet */
  .polecamy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact - single column on tablet */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

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

@media (max-width: 768px) {
  /* MOBILE MENU - Full screen overlay with SOLID background */
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #f9f9f9 !important;
    background: #f9f9f9 !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 80px 24px 40px 24px !important;
    gap: 0 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 9999 !important;
    -webkit-overflow-scrolling: touch;
      padding: 80px 24px 15px 24px !important; 
  }

  .nav-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-menu > li {
    width: 100% !important;
    border-bottom: 1px solid rgba(0,0,0,0.2) !important;
    display: block !important;
  }

  .nav-menu > li:last-child {
    border-bottom: none !important;
  }

  .nav-link {
    display: block !important;
    padding: 1rem 0 !important;
    font-size: 1rem !important;
    color: #2A2A2A !important;
  }

  .nav-toggle {
    display: flex !important;
    z-index: 10001 !important;
  }

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

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

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

  /* Language switcher - visible in menu with red background */
  .nav-lang {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 0.75rem !important;
    margin: 0 !important;
    padding: 1rem 0 !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
  }

  .nav-lang a {
    font-size: 0.9rem !important;
    padding: 0.6rem 1rem !important;
    background: #AB341F !important;
    border-radius: 4px !important;
    color: #fff !important;
    font-weight: 600 !important;
  }

  .nav-lang a:hover {
    background: #8a2a19 !important;
  }

  /* Mobile Dropdown - Industrial Accordion */
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    margin: 4px 0 0 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .has-dropdown.active .nav-dropdown {
    max-height: 500px !important;
  }

  .has-dropdown > .nav-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .has-dropdown > .nav-link::after {
    margin-left: auto !important;
  }

  .nav-dropdown-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    color: rgba(42, 42, 42, 0.85) !important;
    border-left: 2px solid transparent !important;
    transition: all 0.2s ease;
  }

  .nav-dropdown-link:hover,
  .nav-dropdown-link:active {
    padding-left: 24px !important;
    background: rgba(0, 0, 0, 0.04) !important;
    border-left-color: var(--accent-red) !important;
    color: #2A2A2A !important;
  }

  /* ============================================
     MOBILE HERO - Precision viewport layout
     Using CSS Grid for exact 3-zone distribution
     ============================================ */
  .hero {
    /* Use svh for iOS Safari compatibility */
    height: 100svh !important;
    height: 100dvh !important;
    min-height: -webkit-fill-available !important;
    max-height: 100svh !important;
    max-height: 100dvh !important;

    /* CSS Grid for precise vertical distribution */
    display: grid !important;
    grid-template-rows: 60px 1fr auto !important;
    grid-template-areas:
      "spacer"
      "content"
      "scroll" !important;

    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Top spacer for navbar */
  .hero::before {
    content: '' !important;
    grid-area: spacer !important;
    display: block !important;
  }

  /* Main content - vertically centered in middle zone */
  .hero-content {
    grid-area: content !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 var(--space-md) !important;
    min-height: 0 !important;
  }

  /* CTA buttons */
  .hero-cta {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-top: var(--space-sm) !important;
  }

  /* ============================================
     SCROLL INDICATOR - Bottom zone
     Elegant fade-out on scroll
     ============================================ */
  .hero-scroll {
    grid-area: scroll !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding-bottom: 20px !important;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none !important;
  }

  .hero-scroll span {
    font-size: 0.6rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 0.5rem !important;
    color: rgba(42, 42, 42, 0.5) !important;
  }

  .hero-scroll-line {
    height: 40px !important;
    width: 1px !important;
  }

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

  /* Hide decorative elements that may affect layout */
  .hero-monument {
    opacity: 0.03 !important;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .partner-card-spec-value {
    font-size: 2.5rem;
  }

  .partner-card-name {
    font-size: 1.6rem;
  }

  /* Polecamy - 1 column on mobile */
  .polecamy-grid {
    grid-template-columns: 1fr;
  }

  /* Contact - optimize for mobile */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    transform: none !important;
  }

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

  .map-wrapper {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
  }
}

/* === TABLET SPACING OPTIMIZATION === */
@media (max-width: 1024px) {
  .about,
  .products,
  .partners,
  .polecamy,
  .cta-section {
    padding: var(--space-lg) 0;
  }
}

@media (max-width: 768px) {
  .about,
  .products,
  .partners,
  .polecamy,
  .cta-section {
    padding: var(--space-md) 0;
  }

  /* Section headers - proper spacing between label and title */
  .section-header {
    margin-bottom: var(--space-md) !important;
  }

  .section-label {
    font-size: 0.65rem !important;
    margin-bottom: 1.25rem !important;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    margin-bottom: var(--space-sm) !important;
    margin-top: 0 !important;
  }

  /* Product specs - compact layout */
  .product-specs {
    padding-right: 0 !important;
    gap: 0.3rem !important;
  }

  .product-spec {
    font-size: 0.65rem !important;
    padding: 0.3rem 0.5rem !important;
    white-space: nowrap !important;
  }

  /* CTA section - reduce padding */
  .cta {
    padding: var(--space-md) 0 !important;
  }

  .cta-inner {
    padding: var(--space-md) !important;
  }

  .cta-title {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
  }

  .cta-desc {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  /* Polecamy cards - equal vertical padding */
  .polecamy-card {
    padding: 1.25rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: auto !important;
  }

  .polecamy-icon {
    margin-bottom: 0.75rem !important;
    width: 40px !important;
    height: 40px !important;
  }

  .polecamy-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .polecamy-title {
    font-size: 0.95rem !important;
    margin-bottom: 0.4rem !important;
  }

  .polecamy-desc {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  /* ============================================
     MOBILE FOOTER - Spacious Industrial Layout
     Full-width utilization with proper typography
     ============================================ */
  .footer {
    padding: var(--space-lg) 0 var(--space-md) !important;
  }

  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: var(--space-lg) !important;
  }

  .footer-col {
    margin-bottom: 0 !important;
  }

  /* Logo & description section */
  .footer-logo {
    height: 32px !important;
    margin-bottom: var(--space-sm) !important;
  }

  .footer-desc {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: rgba(42, 42, 42, 0.7) !important;
    margin-bottom: 0 !important;
  }

  /* Section titles - bold industrial style */
  .footer-title {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    margin-bottom: var(--space-sm) !important;
    color: #2A2A2A !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  }

  /* Links - comfortable touch targets */
  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .footer-links a {
    font-size: 0.95rem !important;
    padding: 0.4rem 0 !important;
    color: rgba(42, 42, 42, 0.75) !important;
    transition: color 0.2s ease !important;
  }

  .footer-links a:hover {
    color: var(--accent-red) !important;
  }

  /* Contact section - clear hierarchy */
  .footer-contact {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .footer-contact p {
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    color: rgba(42, 42, 42, 0.75) !important;
  }

  .footer-contact a {
    font-size: 0.95rem !important;
    color: var(--accent-red) !important;
  }

  /* Bottom bar - copyright & legal */
  .footer-bottom {
    padding-top: var(--space-md) !important;
    margin-top: var(--space-md) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.2) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: var(--space-sm) !important;
    text-align: center !important;
  }

  .footer-copyright {
    font-size: 0.8rem !important;
    color: rgba(42, 42, 42, 0.5) !important;
  }

  .footer-legal {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: var(--space-sm) 1rem !important;
  }

  .footer-legal a {
    font-size: 0.8rem !important;
    color: rgba(42, 42, 42, 0.5) !important;
    transition: color 0.2s ease !important;
  }

  .footer-legal a:hover {
    color: var(--accent-red) !important;
  }
}

/* === SMALL MOBILE (600px) - Products to 1 column === */
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}


/* === EXTRA SMALL SCREENS (360px) === */
@media (max-width: 360px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .hero-title {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .hero-tonnage-number {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .btn {
    padding: 0.7rem 1rem;
    font-size: 0.75rem;
  }

  .footer-title {
    font-size: 0.85rem;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 0.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .heritage-year-value {
    font-size: 3rem;
  }

  .nav-lang {
    right: 60px;
  }

  .nav-lang a {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
  }
}

/* === CROSS-SELL BOX RESPONSIVE === */
.crosssell-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(171,52,31,0.04), rgba(171,52,31,0.08));
  border: 1px solid rgba(171,52,31,0.12);
  border-radius: 20px;
  text-align: center;
}

.crosssell-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.crosssell-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 0.5rem 0 1.5rem;
}

.crosssell-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent-red);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  border-radius: 4px;
    color:#fff; 
}

.crosssell-btn:hover {
  background: #c13d26;
  transform: translateY(-2px);
color:#fff; 
}

@media (max-width: 768px) {
  .crosssell-box {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }

  .crosssell-title {
    font-size: 1.75rem;
  }

  .crosssell-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* === ANIMATIONS FOR SCROLL REVEAL === */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === LOADING STATE - PRECISION LOADER === */

/*
 * CONCEPT: PRECISION
 * Minimalist, elegant loader inspired by Tesla/Apple
 * Single progress line + typography + subtle counter
 * Professional, refined, premium industrial aesthetic
 */

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

/* Subtle backdrop */
.page-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(171, 52, 31, 0.04);
  pointer-events: none;
}

/* Exit animation - elegant fade */
.page-loader.hidden {
  animation: loaderExit 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderExit {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.page-loader.hidden .loader-content {
  animation: contentExit 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Main content container */
.loader-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  padding: 0 var(--space-md);
}

/* === GABOR LOGO - Primary Element === */
.loader-logo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.5em;
  color: var(--text-primary);
  text-align: center;
  position: relative;
  margin-right: -0.5em; /* Compensate for letter-spacing */
  opacity: 0;
  animation: logoReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === PRECISION LINE - The Star Element === */
.loader-line {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin-top: 30px;
  position: relative;
  overflow: visible;
  opacity: 0;
  animation: lineAppear 0.6s ease-out 0.5s forwards;
}

@keyframes lineAppear {
  to { opacity: 1; }
}

/* Progress fill */
.loader-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--accent-red);
  animation: lineFill 2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes lineFill {
  to { width: 100%; }
}

/* Glowing dot at the end of progress */
.loader-line-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow:
    0 0 10px var(--accent-red),
    0 0 20px var(--accent-red-glow);
}

/* === TONNAGE COUNTER === */
.loader-counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  opacity: 0;
  animation: counterAppear 0.6s ease-out 0.8s forwards;
}

@keyframes counterAppear {
  to { opacity: 1; }
}

.loader-counter-number {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  min-width: 3ch;
  text-align: right;
}

.loader-counter-unit {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.loader-counter-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-left: 0.3em;
  opacity: 0;
  animation: labelAppear 0.8s ease-out 1.5s forwards;
}

@keyframes labelAppear {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === STATUS TEXT === */
.loader-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 40px;
  opacity: 0;
  animation: statusAppear 0.5s ease-out 1s forwards;
}

@keyframes statusAppear {
  to { opacity: 0.6; }
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .loader-content {
    max-width: 320px;
  }

  .loader-logo {
    font-size: 2.5rem;
    letter-spacing: 0.4em;
    margin-right: -0.4em;
  }

  .loader-line {
    margin-top: 24px;
  }

  .loader-counter {
    margin-top: 20px;
  }

  .loader-counter-number {
    font-size: 1.2rem;
  }

  .loader-counter-unit {
    font-size: 0.6rem;
  }

  .loader-status {
    font-size: 0.55rem;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .loader-content {
    max-width: 280px;
  }

  .loader-logo {
    font-size: 2rem;
    letter-spacing: 0.3em;
    margin-right: -0.3em;
  }

  .loader-line {
    margin-top: 20px;
  }

  .loader-counter-number {
    font-size: 1rem;
  }

  .loader-status {
    margin-top: 25px;
    letter-spacing: 0.2em;
  }
}

/* === DOWNLOAD PAGE STYLES === */
/* Download grid - 4 columns for Transport (8 cards = 4+4), 3 columns for Wentylacja (6 = 3+3) */
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* 3-column variant for ventilation section (6 items) */
.download-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.download-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition-medium);
}

.download-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.download-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-content {
  flex: 1;
}

.download-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}

.download-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.download-format {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.download-btn {
  display: inline-block;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-accent);
  color: var(--text-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.download-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: white;
}

/* === VIDEO PAGE STYLES === */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.video-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.video-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all var(--transition-fast);
}

.video-card:hover .video-icon {
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--accent-red-glow);
}

.video-content {
  padding: var(--space-md);
}

.video-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}

.video-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.video-note {
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.video-note p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

/* === TRADE SHOW PAGE STYLES === */
.trade-show-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
}

.trade-show-badge {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.trade-show-date,
.trade-show-location {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-accent);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trade-show-date {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: white;
}

.trade-show-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
}

.trade-show-text {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.trade-show-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.highlight-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.highlight-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}

.highlight-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.trade-show-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: var(--space-md);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-info {
  margin-bottom: var(--space-md);
}

.sidebar-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.sidebar-info p a{  color: var(--text-secondary); }

.sidebar-info p a:hover {  color: var(--accent-red);}


.sidebar-info strong {
  color: var(--text-primary);
}

.sidebar-brands {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.brand-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-tertiary);
  border-radius: 8px;
}

.brand-flag {
  font-size: 1.5rem;  
}

.brand-flag img{ width: 20px; height: 12px; position: relative;   top: -3px; }


.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
    margin-bottom: 0;
}

/* === RESPONSIVE FOR NEW PAGES === */
@media (max-width: 1024px) {
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .trade-show-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .download-grid,
  .download-grid-3col {
    grid-template-columns: 1fr;
  }

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

  .trade-show-badge {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .trade-show-title {
    font-size: 2rem;
  }
}

/* ============================================
   PRODUCT CAROUSEL
   ============================================ */
.product-carousel {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.product-carousel:hover {
  border-color: var(--accent-red);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-carousel-slide {
  min-width: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-carousel-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.product-carousel-image.contain-img {
  background: #ffffff;
}

.product-carousel-image.contain-img img {
  object-fit: contain;
  padding: 10px;
}

.product-carousel:hover .product-carousel-slide.active .product-carousel-image img {
  transform: scale(1.05);
}

.product-carousel-content {
  padding: var(--space-md);
}

.product-carousel-content .product-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.product-carousel-content .product-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Carousel Navigation Arrows */
.product-carousel-prev,
.product-carousel-next {
  position: absolute;
  top: 140px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.35);
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.product-carousel-prev { left: 10px; }
.product-carousel-next { right: 10px; }

.product-carousel-prev:hover,
.product-carousel-next:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

/* Carousel Dots */
.product-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0 var(--space-md) var(--space-md);
}

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

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

/* Carousel arrow in bottom-right */
.product-carousel .product-arrow {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
  z-index: 1;
}

.product-carousel:hover .product-arrow {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .product-carousel-image {
    height: 220px;
  }

  .product-carousel-prev,
  .product-carousel-next {
    top: 100px;
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .product-carousel-content .product-title {
    font-size: 1.25rem;
  }
    
 
  li.wyr .nav-link {
    color: #ffffff !important;
  }
    
    
   nav #lang_menu9{ justify-content: flex-end!important; opacity: 0; } 
 nav #lang_menu9  a{ margin-right: 6px;   } 

 nav #lang_menu9.act{ opacity: 1; pointer-events: all; } 
 
 .contact-section form#contact .form-group { -ms-flex: 100%;  flex: 100%;     max-width: 100%; }   
    
    .contact-section form#contact .form-group {   width: 100%; }
    
    
    .product-card {    padding: var(--space-md); }
    
    .product-card .product-arrow { bottom: 15px;   right: 15px; padding-bottom: 3px; }

 .product-carousel .product-arrow { bottom: 15px;   right: 15px; padding-bottom: 3px; }
    
 .product-card-img .product-content {    padding: 20px 0; }
    
    .heritage-panel {  padding: var(--space-md); }
    
    .about-visual {  padding: 20px 0; }
    
    .info-card { padding: var(--space-md); }
    
    .rodo-block {  padding: var(--space-md); }
    
    .feature-item { padding: 20px; }
    
    .product-category-card {   padding: var(--space-md); }
    
    .feature-item {  flex-direction: column;}
    
    .products-section {  padding-bottom: 15px; }
    
    .resources-info { padding: var(--space-md); }
    
    .video-content {   padding: var(--space-sm); }
    
    .video-note { padding: var(--space-md); }
 
    .category-card-content {  padding: var(--space-md);  } 
    
      .contact-form-wrapper { padding: 30px 16px; }
    
    .contact-form-title {   padding: 0 10px; } 
    
    .about-content {  padding-right: 0; }
    
    
   .products .product-card   .product-arrow { width: 40px;    height: 40px; }
    
     .footer-title {  font-size: 1.2rem !important; }
    
    .timeline-content, .timeline-item:nth-child(2n+1) .timeline-content {   padding-left: 40px; margin-top: -20px; }
    
}




@media (max-width: 568px) {
    
    
.info-list li {  flex-direction: column; }
    .info-list .info-label {  margin-bottom: 6px;   }
    
 .heritage-panel {  width: 100%; max-width: 100%; }   
    
      
    .contact-card {  padding: 30px 22px; }
    
    .company-info {   padding-bottom: 25px; }
    
    .industries {   padding-bottom: 50px; }
    
}



.contact-section form#contact{  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; }

.contact-section form#contact .form-group {  width: 51%;  display: flex;  flex-direction: column; } 

.contact-section form#contact .form-group  .col-md-4 {-ms-flex: auto; flex: auto; max-width: unset; text-align: left; }

.contact-section form#contact .form-group .subb {  margin-left: 0;     }
.contact-section form#contact .form-group.subbb {   width: 106%;   }

.contact-section form#contact .form-group.textar { width: 106%; } 

.contact-section form#contact .form-group .form-submit { height: auto;  margin-bottom: 0;  } 

.contact-section form#contact .form-group.mus {  width: 100%; }  

.contact-section form#contact .form-group .form-label { padding-top: 0;  padding-bottom: 0;}

.contact-section form#contact .form-group .form-input {height: 60px;}



.product-card-img .product-arrow { bottom: 15px;   right: 15px; padding-bottom: 3px; }

.product-card:hover .product-arrow {color:#fff;   } 
.product-card .product-arrow:hover {color:#fff;   } 
    
    




