/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

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

:root {
  --primary: #ce0040;
  --primary-dark: #a10030;
  --primary-light: #ffdadb;
  --on-primary: #ffffff;
  --surface: #fff8f7;
  --surface-low: #fff0f0;
  --surface-muted: #f8f9fa;
  --surface-white: #ffffff;
  --on-surface: #281718;
  --text-main: #1a1a1a;
  --text-muted: #4a4a4b;
  --text-secondary: #5e5e5f;
  --border: #d8dadc;
  --border-soft: #e5bdbe;
  --outline: #906f70;
  --dark-overlay: #3f2b2c;
  --shadow-primary: rgba(206, 0, 64, 0.18);
  --shadow-card: rgba(0, 0, 0, 0.06);
  --shadow-card-hover: rgba(0, 0, 0, 0.1);
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --container: 1280px;
  --section-gap: 5rem;
  --gutter: 1.5rem;
  --nav-h: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--surface);
  color: var(--on-surface);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: "Montserrat", sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 4px 20px var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 28px var(--shadow-primary);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost {
  background: var(--surface-low);
  color: var(--primary);
  border: 1px solid var(--border-soft);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--on-primary);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.8125rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-white);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header.scrolled .header-inner {
  height: 60px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
  top: 2.4rem;
  position: relative;
  background: white;
  max-width: 160px;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 0 #0000002e;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo.scrolled {
  width: 100px;
  box-shadow: unset;
  border: unset;
  border-radius: unset;
  background: unset;
  top: 0;
}

.logo span {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 0.7rem;
  display: block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: -2px;
}

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

nav a {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}

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

nav a.active::after,
nav a:hover::after {
  transform: scaleX(1);
}

/* --- Nav Dropdown --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--surface-white);
  border: 1px solid var(--border-soft);
  border-radius: 0.75rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--surface-light);
  color: var(--primary);
}

.nav-dropdown-menu a::after {
  display: none;
}

/* --- Mobile Nav Dropdown --- */
.mobile-nav-dropdown-items {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-dropdown-items a {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--surface-white);
  border-top: 1px solid var(--border);
  padding: 0 var(--gutter);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  max-height: 500px;
  opacity: 1;
  padding: 1rem var(--gutter);
}

.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

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

.b2b-banner {
  background: var(--border-soft);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.hero {
  display: block;
  background: url(../../assets/images/hero-bild.jpg) no-repeat right center/cover;
}

.hero-grid {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-inline: auto;
  padding: var(--section-gap) var(--gutter);
  height: 60vh;
}



.hero .color-overlay {
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0.5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--on-surface);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  position: absolute;
  inset: 0;
  transition: transform 7s ease;
}

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

.hero-image-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--on-surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.hero-image-tag strong {
  display: block;
  color: var(--primary);
  font-size: 1.1rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-header {
  margin-bottom: 3rem;
}

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

.section-header.center .section-sub {
  max-width: 560px;
  margin-inline: auto;
}

.highlights-section {
  background: var(--surface-muted);
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.highlights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.see-all {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.see-all:hover {
  gap: 0.7rem;
}

.see-all svg {
  width: 16px;
  height: 16px;
}

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

.product-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 1rem;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 12px 40px var(--shadow-card-hover);
  transform: translateY(-4px);
}

.product-card-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
  background: #fff;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* 
.product-card:hover .product-card-image img {
  transform: scale(1.15);
  z-index: 99;
} */
.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}

.product-card-body {
  padding: 1.5rem 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-features {
  padding-bottom: 1.25rem;
}

.product-card-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.product-card-attribute {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.product-card-action {
  width: 100%;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

.categories-section {
  padding: var(--section-gap) 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.category-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
  cursor: pointer;
}

.category-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  transition: transform 0.7s ease;
}

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(40, 23, 24, 0.82) 0%,
      rgba(40, 23, 24, 0.15) 50%,
      transparent 100%);
  transition: background 0.3s;
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top,
      rgba(206, 0, 64, 0.72) 0%,
      rgba(40, 23, 24, 0.2) 55%,
      transparent 100%);
}

.category-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1rem 1.1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.logobaender-section {
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logobaender-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--container);
  margin-inline: auto;
}

.logobaender-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-badge {
  display: inline-block;
  background: rgba(206, 0, 64, 0.08);
  color: var(--primary);
  border: 1px solid var(--border-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  width: max-content;
}

.logobaender-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--on-surface);
}

.logobaender-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.logobaender-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.logobaender-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-main);
}

.check-icon {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg {
  width: 10px;
  height: 10px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}

.logobaender-image {
  position: relative;
  min-height: 450px;
  overflow: hidden;
}

.logobaender-image img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.about-section {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--section-gap) var(--gutter);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 6px 32px var(--shadow-card);
}

.about-image img {
  position: absolute;
  inset: 0;
}

.about-image-caption {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-image-caption strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: var(--on-surface);
}

.about-image-caption span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.about-content .section-title {
  margin-bottom: 0.5rem;
}

.about-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.about-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.75rem;
  background: var(--surface-low);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.usp-section {
  background: var(--on-surface);
  padding: var(--section-gap) 0;
}

.usp-section .section-title {
  color: #ffffff;
}

.usp-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

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

.usp-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.usp-card:hover {
  background: rgba(206, 0, 64, 0.12);
  border-color: rgba(206, 0, 64, 0.3);
}

.usp-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.usp-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.usp-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.contact-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg,
      var(--surface-low) 0%,
      var(--surface-white) 100%);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding-inline: var(--gutter);
}

.contact-inner .section-title {
  margin-bottom: 0.75rem;
}

.contact-inner .section-sub {
  margin-bottom: 2.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item strong {
  color: var(--text-main);
}

footer {
  background: var(--surface-low);
  border-top: 1px solid var(--border-soft);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-b2b {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact span,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.footer-contact strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-surface);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-bottom {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
  background: rgba(95, 95, 95, 0.60);
  color: white;
  padding: 20px;
  border-radius: 15px;
}

.fade-up h1,
.fade-up h2,
.fade-up h3,
.fade-up p{
  color: white;
}

.fade-up-delay-2 {
  animation-delay: 0.22s;
}

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

  .hero-image {
    aspect-ratio: 16/9;
    max-height: 420px;
  }

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

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

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

  .logobaender-image {
    display: none;
  }

  .logobaender-content {
    padding: 3.5rem var(--gutter);
  }

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

  .about-image {
    aspect-ratio: 16/10;
    max-height: 380px;
  }

  .about-image-caption {
    display: none;
  }

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

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

  nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .highlights-grid .product-card:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 3.5rem;
  }

  .hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

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

  .highlights-grid .product-card:nth-child(3) {
    grid-column: auto;
  }

  .highlights-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

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

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

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

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

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .about-grid>div:first-child {
    order: 2;
  }

  .about-grid>div:last-child {
    order: 1;
  }

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

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Unified Product Card Layout */
.product-card-body-top {
  flex-grow: 1;
}

.product-card-body-bottom {
  margin-top: auto;
}

.product-card-feature-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.product-card-feature-row span {
  color: #666;
}

.product-card-feature-row strong {
  font-weight: bold;
}

/* Slider Track Layout */
.slider-wrapper {
  position: relative;
}

.slider-overflow {
  overflow: hidden;
  padding: 10px 0;
}

.slider-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.4s ease-in-out;
}

.slider-track>* {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary);
  line-height: 1;
  padding-bottom: 4px;
}

.slider-prev {
  left: -20px;
}

.slider-next {
  right: -20px;
}

.slider-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .slider-track>* {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .slider-track>* {
    flex: 0 0 100%;
  }

  .slider-prev {
    left: 0px;
  }

  .slider-next {
    right: 0px;
  }
}