/*
  BOX 24X7 · GLEEBEES SMARTFRIDGE
  Farbpalette 2026
  ──────────────────────────────────────────────
  --bg:       #0b1726  Haupt-Hintergrund (dunkles Navy)
  --bg2:      #111f30  Karten-Hintergrund
  --bg3:      #1a2f45  Karten-Hintergrund sekundär
  --bg4:      #243d55  Hellere Fläche / Hover
  --orange:   #f0a500  Primärfarbe / Akzente / CTAs
  --orange-d: #d4920a  Orange Dunkel / Hover
  --orange-l: #fbbf24  Orange Hell
  --teal:     #3db8c5  Sekundär / Box 24x7
  --white:    #ffffff
  ──────────────────────────────────────────────
*/

:root {
  --bg:       #0b1726;
  --bg2:      #111f30;
  --bg3:      #1a2f45;
  --bg4:      #243d55;
  --orange:   #f0a500;
  --orange-d: #d4920a;
  --orange-l: #fbbf24;
  --teal:     #3db8c5;
  --white:    #ffffff;
  --t60:      rgba(255,255,255,0.6);
  --t35:      rgba(255,255,255,0.35);
  --t12:      rgba(255,255,255,0.12);
  --o15:      rgba(240,165,0,0.15);
  --o30:      rgba(240,165,0,0.30);
}


/* ════════════════════════════════════════════
   FONT-FACE
════════════════════════════════════════════ */

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

@font-face {
  font-family: 'font';
  src: url('../fonts/NoirPro-SemiBold.eot');
  src: url('../fonts/NoirPro-SemiBold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/NoirPro-SemiBold.woff2') format('woff2'),
      url('../fonts/NoirPro-SemiBold.woff') format('woff'),
      url('../fonts/NoirPro-SemiBold.ttf') format('truetype'),
      url('../fonts/NoirPro-SemiBold.svg#NoirPro-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'font';
  src: url('../fonts/NoirPro-Regular.eot');
  src: url('../fonts/NoirPro-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/NoirPro-Regular.woff2') format('woff2'),
      url('../fonts/NoirPro-Regular.woff') format('woff'),
      url('../fonts/NoirPro-Regular.ttf') format('truetype'),
      url('../fonts/NoirPro-Regular.svg#NoirPro-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'font';
  src: url('../fonts/NoirPro-Bold.eot');
  src: url('../fonts/NoirPro-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/NoirPro-Bold.woff2') format('woff2'),
      url('../fonts/NoirPro-Bold.woff') format('woff'),
      url('../fonts/NoirPro-Bold.ttf') format('truetype'),
      url('../fonts/NoirPro-Bold.svg#NoirPro-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'digital';
  src: url('../fonts/DS-Digital-Bold.eot');
  src: url('../fonts/DS-Digital-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/DS-Digital-Bold.woff2') format('woff2'),
      url('../fonts/DS-Digital-Bold.woff') format('woff'),
      url('../fonts/DS-Digital-Bold.ttf') format('truetype'),
      url('../fonts/DS-Digital-Bold.svg#DS-Digital-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


/* ════════════════════════════════════════════
   SMARTMENUS CORE (nicht ändern)
════════════════════════════════════════════ */
.sm{box-sizing:border-box;position:relative;z-index:9999;-webkit-tap-highlight-color:rgba(0,0,0,0);}
.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;}
.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right;}
.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0;}
.sm ul{display:none;}
.sm li,.sm a{position:relative;}
.sm a{display:block;}
.sm a.disabled{cursor:default;}
.sm::after{content:"";display:block;height:0;font:0px/0 serif;clear:both;overflow:hidden;}
.sm *,.sm *::before,.sm *::after{box-sizing:inherit;}


/* ════════════════════════════════════════════
   GLOBAL BASE
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'font', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  color: var(--white);
  background-color: var(--bg);
}

b, strong { font-weight: bold; }

a, a:hover, a:active {
  color: var(--orange);
  text-decoration: none;
}
a:hover { opacity: 0.85; }

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

h1, h2, h3, h4 { font-weight: bold; line-height: 1.1; color: var(--white); }

h1 {
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 600;
}
h2 {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 600;
}
h2 span {
  color: var(--t60);
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 0.5px;
}
h3 {
  font-size: 20px;
  color: var(--white);
}
h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

p { line-height: 1.65; color: var(--t60); }
p.highlight { color: var(--orange); font-weight: 600; }

.img-responsive { width: 100%; height: auto; max-width: 100%; display: block; }
.font-light { font-weight: 600; }


/* ════════════════════════════════════════════
   SPACING UTILITIES
════════════════════════════════════════════ */
.padding-medium  { padding-top: 30px;  padding-bottom: 30px; }
.padding-large   { padding-top: 60px;  padding-bottom: 60px; }
.padding-xlarge  { padding-top: 90px;  padding-bottom: 90px; }
.nopaddingbottom { padding-bottom: 0; }
.extrapb         { padding-bottom: 200px; }
.mb-md           { margin-bottom: 60px; }
.mb-sm           { margin-bottom: 30px; }
.text-center     { text-align: center; }

@media (max-width: 991px) {
  .distance-sm { margin-bottom: 30px; }
}


/* ════════════════════════════════════════════
   EYEBROW / BADGE
════════════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow-teal { color: var(--teal); }

.badge-new {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  background: var(--o15);
  border: 1px solid var(--o30);
  color: var(--orange);
  border-radius: 2px;
}
.badge-teal-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  background: rgba(61,184,197,0.15);
  border: 1px solid rgba(61,184,197,0.3);
  color: var(--teal);
  border-radius: 2px;
}
.badge-solid-orange {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  background: var(--orange);
  color: #000;
  border-radius: 2px;
}


/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-orange, a.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--orange);
  color: #000 !important;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.btn-orange:hover, a.btn-orange:hover {
  background: var(--orange-d);
  opacity: 1;
}

.btn-outline-white, a.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: transparent;
  color: var(--white) !important;
  border: 1px solid var(--t35);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.btn-outline-white:hover, a.btn-outline-white:hover {
  border-color: var(--orange);
  color: var(--orange) !important;
  opacity: 1;
}

.btn-dark-card, a.btn-dark-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--bg3);
  color: var(--white) !important;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.btn-dark-card:hover, a.btn-dark-card:hover {
  background: var(--bg4);
  opacity: 1;
}

.btn-teal-outline, a.btn-teal-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: transparent;
  color: var(--teal) !important;
  border: 1px solid var(--teal);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.btn-teal-outline:hover, a.btn-teal-outline:hover {
  background: rgba(61,184,197,0.12);
  opacity: 1;
}

.btn-black, a.btn-black {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: #000;
  color: var(--white) !important;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.btn-black:hover, a.btn-black:hover {
  background: #1a1a1a;
  opacity: 1;
}

/* Legacy .button class (konfigurator) */
.button, .button:hover, .button:active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-align: center;
  background-color: var(--orange);
  padding: 12px 28px;
  border: 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.button:hover { background-color: var(--orange-d); opacity: 1; }
.button:focus { outline: none; }

.button.outline, .button.outline:hover, .button.outline:active {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--t35);
}
.button.outline:hover { border-color: var(--orange); color: var(--orange); }


/* ════════════════════════════════════════════
   LOGO
════════════════════════════════════════════ */
.logo {
  display: block;
  max-width: 150px;
}


/* ════════════════════════════════════════════
   NAVIGATION (Bootstrap Navbar)
════════════════════════════════════════════ */
.site-nav {
  background: rgba(11,23,38,0.97) !important;
  border-bottom: 1px solid var(--t12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-nav .navbar-brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 1px;
  text-decoration: none;
}
.site-nav .navbar-brand span { color: var(--orange); }

.site-nav .nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--t60) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  text-decoration: none;
}
.site-nav .nav-link:hover { color: var(--white) !important; }
.site-nav .nav-link.active { color: var(--orange) !important; }

.site-nav .navbar-toggler {
  border-color: var(--t35);
  padding: 4px 8px;
}
.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-nav .navbar-nav { gap: 2px; }

@media (max-width: 991px) {
  .site-nav .navbar-collapse {
    background: var(--bg2);
    padding: 16px 20px 20px;
    border-top: 1px solid var(--t12);
    margin-top: 8px;
  }
  .site-nav .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid var(--t12);
  }
  .site-nav .btn-orange { margin-top: 16px; width: 100%; justify-content: center; }
}


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  background-color: var(--bg);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='121' viewBox='0 0 70 121'%3E%3Cpolygon points='35,2 67,19 67,53 35,70 3,53 3,19' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cpolygon points='35,52 67,69 67,103 35,120 3,103 3,69' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 72% 50%, rgba(240,165,0,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(61,184,197,0.05) 0%, transparent 40%);
  padding: 80px 0 0;
  overflow: hidden;
}

.hero-inner {
  padding-bottom: 60px;
}

.hero-sub-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--t60);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 22px;
  color: var(--white);
}
.hero-title .orange { color: var(--orange); }

.hero-sub {
  font-size: 16px;
  color: var(--t60);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-tag {
  padding: 6px 14px;
  background: var(--t12);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  font-weight: 600;
  color: var(--t60);
  border-radius: 2px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  min-height: 360px;
}
.hero-visual img {
  max-height: 460px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 30px 60px rgba(240,165,0,0.22)) drop-shadow(0 0 50px rgba(61,184,197,0.12));
  margin-bottom: -20px;
}
.hero-visual::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 80px;
  background: radial-gradient(ellipse, rgba(240,165,0,0.25) 0%, transparent 70%);
  z-index: 0;
}

/* Stats bar */
.hero-stats {
  background: var(--bg2);
  border-top: 1px solid var(--t12);
}
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--t12);
  display: flex;
  align-items: center;
  gap: 18px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--t60);
  line-height: 1.4;
}

@media (max-width: 767px) {
  .stat-item { border-right: none; border-bottom: 1px solid var(--t12); }
  .stat-item:last-child { border-bottom: none; }
  .hero-visual { min-height: 240px; }
  .hero-visual img { max-height: 280px; }
}


/* ════════════════════════════════════════════
   BACKGROUNDS (Mapping alter Klassen)
════════════════════════════════════════════ */
.bgLight        { background-color: var(--bg3); }
.bgMedium       { background-color: var(--bg2); }
.bgMediumDarker { background-color: var(--bg3); }
.bgDark         { background-color: var(--bg2); }
.bg-section     { background-color: var(--bg2); }
.bg-dark-main   { background-color: var(--bg); }


/* ════════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════════ */
.section-header { margin-bottom: 48px; }
.section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
}
.section-title .orange { color: var(--orange); }
.section-sub {
  font-size: 15px;
  color: var(--t60);
  max-width: 520px;
  margin-top: 12px;
  line-height: 1.6;
}


/* ════════════════════════════════════════════
   SYSTEM CARDS (Zwei Systeme)
════════════════════════════════════════════ */
.system-card {
  background: var(--bg3);
  border: 1px solid var(--t12);
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.system-card.sf {
  border-color: var(--o30);
  background: linear-gradient(140deg, #1a2f45 0%, #0f2135 100%);
}

.system-card-img {
  margin: -36px -36px 28px -36px;
  overflow: hidden;
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.system-card.sf .system-card-img {
  background: linear-gradient(160deg, #0f2135 0%, #1a2f45 100%);
}
.system-card:not(.sf) .system-card-img {
  background: linear-gradient(160deg, #111f30 0%, #1a2f45 100%);
}
.system-card-img img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
}
.system-card-img::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
}
.system-card.sf .system-card-img::after {
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.system-card:not(.sf) .system-card-img::after {
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.system-card-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.system-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.system-tagline {
  font-size: 14px;
  color: var(--t60);
  margin-bottom: 24px;
  line-height: 1.55;
}
.system-features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  flex: 1;
}
.system-features li {
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--t60);
  border-bottom: 1px solid var(--t12);
  position: relative;
}
.system-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
}
.system-btns { display: flex; gap: 10px; flex-wrap: wrap; }


/* ════════════════════════════════════════════
   FEATURE TILES
════════════════════════════════════════════ */
.features-section { padding: 90px 0; }
.feature-tile {
  background: var(--bg2);
  border: 1px solid var(--t12);
  padding: 32px 28px;
  position: relative;
  margin-bottom: 2px;
  height: 100%;
}
.feature-tile:hover { background: var(--bg3); }
.feature-tile-icon {
  width: 48px;
  height: 48px;
  background: var(--o15);
  border: 1px solid var(--o30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.feature-tile h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-tile p {
  font-size: 13px;
  color: var(--t60);
  line-height: 1.55;
}
.feature-only-sf {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  background: var(--orange);
  color: #000;
}


/* ════════════════════════════════════════════
   EINSATZBEREICHE
════════════════════════════════════════════ */
.einsatz-card {
  background: var(--bg3);
  border: 1px solid var(--t12);
  padding: 28px 24px;
  height: 100%;
  transition: border-color 0.2s;
}
.einsatz-card:hover { border-color: var(--o30); }
.einsatz-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.einsatz-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.einsatz-card p { font-size: 13px; color: var(--t60); line-height: 1.5; }


/* ════════════════════════════════════════════
   KONFIG CARDS (CTA Bereich)
════════════════════════════════════════════ */
.konfig-card {
  background: var(--bg2);
  border: 1px solid var(--t12);
  padding: 40px 40px 44px;
  height: 100%;
}
.konfig-card.sf { border-color: var(--o30); }
.konfig-card-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}
.konfig-card.sf .konfig-card-label { color: var(--orange); }
.konfig-card.box .konfig-card-label { color: var(--teal); }
.konfig-card h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}
.konfig-steps {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}
.konfig-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--t12);
  font-size: 14px;
  color: var(--t60);
}
.step-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.sf .step-circle  { border: 1px solid var(--orange); color: var(--orange); }
.box .step-circle { border: 1px solid var(--teal); color: var(--teal); }


/* ════════════════════════════════════════════
   TECHNISCHE DATEN / SPECS
════════════════════════════════════════════ */
.specs-tabs {
  display: flex;
  gap: 4px;
  margin: 30px 0 36px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid var(--t12);
  background: transparent;
  color: var(--t60);
  transition: all 0.2s;
}
.tab-btn.active {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}
.tab-btn:hover:not(.active) {
  border-color: var(--orange);
  color: var(--orange);
}
.spec-item {
  background: var(--bg3);
  border: 1px solid var(--t12);
  padding: 20px 22px;
  margin-bottom: 2px;
}
.spec-key {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--t35);
  margin-bottom: 6px;
}
.spec-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}


/* ════════════════════════════════════════════
   SCALE / ORANGE CTA SECTION
════════════════════════════════════════════ */
.scale-section {
  background: var(--orange);
  padding: 72px 0;
}
.scale-headline {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;
  color: #000;
  line-height: 1.05;
}
.scale-sub {
  font-size: 16px;
  color: rgba(0,0,0,0.65);
  margin-top: 10px;
}


/* ════════════════════════════════════════════
   PAGE HERO (Unterseiten)
════════════════════════════════════════════ */
section.page-hero {
  background-color: var(--bg2);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='121' viewBox='0 0 70 121'%3E%3Cpolygon points='35,2 67,19 67,53 35,70 3,53 3,19' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cpolygon points='35,52 67,69 67,103 35,120 3,103 3,69' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 70% 40%, rgba(240,165,0,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 5% 80%, rgba(61,184,197,0.05) 0%, transparent 40%);
  padding: 80px 0;
  border-bottom: 1px solid var(--t12);
}
section.page-hero h1 {
  color: var(--white);
  text-shadow: none;
}
section.page-hero .hero-visual img {
  max-height: 400px;
}

/* Legacy header section */
section.header {
  background-color: var(--bg2);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='121' viewBox='0 0 70 121'%3E%3Cpolygon points='35,2 67,19 67,53 35,70 3,53 3,19' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cpolygon points='35,52 67,69 67,103 35,120 3,103 3,69' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  min-height: 240px;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--t12);
}
section.header h1 { color: var(--white); }
section.header h2 { color: var(--white); }

.home section.header { display: none; }


/* ════════════════════════════════════════════
   VORTEILE / PLUS CARDS (legacy, index)
════════════════════════════════════════════ */
.plus { z-index: 5; }
.plus a {
  display: block;
  position: relative;
  text-decoration: none;
}
.plus .overlay {
  display: block;
  opacity: 0;
  z-index: 10;
  background-color: rgba(240,165,0,0.9);
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  text-align: center;
  padding: 20px 10px 10px;
  transition: opacity 0.4s;
}
.plus a:hover .overlay { opacity: 1; }
.plus .overlay p { color: #000; font-size: 13px; }
.plus .overlay .button { margin: auto; background: #000; color: #fff; }
.plus h4 {
  color: var(--white);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 0 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  text-align: center;
}
.einsatz .plus h4 {
  position: relative;
  bottom: unset; left: unset; right: unset;
  padding: 10px 0;
  background-color: var(--bg4);
  text-align: center;
}

@media (min-width: 900px) {
  .einsatz { padding-top: 30px; }
}


/* ════════════════════════════════════════════
   TIMER SECTION (legacy, index)
════════════════════════════════════════════ */
.timer { padding: 60px 0; }
.timer p { color: var(--t60); }
.numbers {
  display: inline-block;
  color: var(--orange);
  margin: 0 10px;
}
.numbers p { color: var(--orange); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.numbers span {
  font-family: 'digital', Arial, Helvetica, sans-serif;
  font-size: 80px;
  line-height: normal;
  display: block;
  border-bottom: 1px solid var(--t35);
  margin: 0 10px 8px;
}


/* ════════════════════════════════════════════
   VORTEILSLISTE
════════════════════════════════════════════ */
.list {
  position: relative;
  padding-left: 40px;
  margin-bottom: 24px;
}
.list:before {
  display: block;
  content: "";
  background: url(../img/icon-check.svg) center center no-repeat var(--orange);
  background-size: 18px 14px;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 3px;
  left: 0;
}
.list h4 { color: var(--white); margin-bottom: 4px; }
.list p  { color: var(--t60); margin: 0; }

.teaser-box-aside {
  position: absolute;
  background-color: var(--bg4);
  left: 50%;
  bottom: -150px;
  right: 0;
  margin-left: 15px;
}
.teaser-box-aside img { max-width: 474px; }

@media (max-width: 899px) {
  .teaser-box-aside { display: none; }
}


/* ════════════════════════════════════════════
   MODULE SLIDER (Konfigurator Step 1)
════════════════════════════════════════════ */
.step1 .mb-md { margin-bottom: 250px; }
.multiple-items { margin-top: -190px; }
.modules { padding: 60px 0; }

.slider .box { margin: 0 5px; }
.slider .boxShadow {
  position: relative;
  margin: 5px;
  padding: 1px;
  background: var(--bg3);
  box-shadow: 0 0 0 1px var(--t12);
}
.slider .box:focus { outline: none; }
.slider .title {
  position: absolute;
  text-align: center;
  color: var(--white);
  top: 10px;
  left: 10px; right: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.add {
  position: absolute;
  left: 0; bottom: 0;
  cursor: pointer;
  background: url(../img/icon-add.svg) center center no-repeat var(--orange);
  background-size: 25px 25px;
  width: 30px;
  height: 30px;
  display: block;
}


/* ════════════════════════════════════════════
   DRAG LIST (Konfigurator Step 2)
════════════════════════════════════════════ */
.container-fluid { width: auto; overflow: visible; }

.drag-list {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow-x: scroll;
  overflow-y: visible;
  padding-bottom: 300px;
  white-space: nowrap;
}
.drag-list ul { margin: 0; padding: 0; display: inline-block; position: relative; }
.drag-list li {
  list-style: none;
  margin: 0; padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 200px;
}
.drag-list li.boxKaffee { width: 400px; }

.drag-list .actions { height: 25px; overflow: hidden; }
.drag-list .delete, .drag-list .closeoptions {
  cursor: pointer;
  display: block;
  float: left;
  background: url(../img/icon-close.svg) center center no-repeat;
  background-size: 15px 15px;
  width: 20px; height: 20px;
  margin-left: 5px;
}
.drag-list .closeoptions {
  position: absolute;
  float: none;
  top: 3px; left: 3px;
  background: url(../img/icon-close.svg) center center no-repeat;
  background-size: 10px 10px;
  width: 15px; height: 15px;
  margin-left: 0;
}
.drag-list .drag-area {
  display: block;
  float: right;
  cursor: move;
  background: url(../img/icon-move.svg) center center no-repeat;
  background-size: contain;
  width: 25px; height: 20px;
  margin-right: 5px;
}
.drag-list .prodimg { display: block; width: 100%; max-width: 100%; }
.drag-list .rahmen-left, .drag-list .rahmen-right { width: 11.5px; }
.drag-list .rahmen-left img, .drag-list .rahmen-right img {
  display: block;
  width: 11.5px; width: 100%; max-width: 100%;
}
.drag-list .info {
  position: absolute;
  background: url(../img/icon-info.svg) center center no-repeat var(--orange);
  background-size: 20px 20px;
  width: 30px; height: 30px;
  bottom: -15px; left: 50%;
  margin-left: -15px;
  z-index: 20;
  cursor: pointer;
}
.drag-list .options {
  position: absolute;
  bottom: -270px; left: 50%;
  z-index: 10;
  width: 190px;
  margin-left: -95px;
  padding: 5px;
  background-color: var(--bg2);
  border: 1px solid var(--t12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  text-align: left;
  font-size: 13px;
  line-height: 1.4;
}
.drag-list .options .title {
  font-size: 13px; text-align: center; margin-bottom: 13px;
  color: var(--white);
}
.drag-list .options:before {
  content: "";
  width: 2px; height: 30px;
  background-color: var(--orange);
  position: absolute;
  left: 50%; margin-left: -1px;
  top: -30px; z-index: 10;
}
.drag-list .options input[type=range] { display: block; margin-bottom: 13px; }
.drag-list .options input[type=checkbox] { float: right; display: block; width: 15px; height: 15px; }
.drag-list .options .label {
  display: block; float: left;
  padding: 3px 5px 3px 0;
  margin-bottom: 5px;
  color: var(--t60);
  font-size: 12px;
}
.drag-list .options .rval {
  text-align: right; display: block; float: right;
  padding: 3px 5px;
  background-color: var(--bg4);
  color: var(--white);
  margin-bottom: 5px;
  width: 30px;
}
.drag-list .options .revenue {
  font-weight: normal;
  color: var(--orange);
  border-bottom: 3px solid var(--orange);
}
.drag-list .options .revenue span { display: block; float: right; }


/* Screen overlays */
.screenTopWrapper {
  position: absolute;
  display: block;
  top: 57px;
  width: auto;
  left: 11.5px; right: 11.5px;
  z-index: 30;
  text-align: left;
}
.screenTop .screen {
  content: "";
  background: url(../img/module/screen.jpg) 0 0 no-repeat;
  background-size: contain;
  width: 216px; height: 131px;
  display: inline-block;
  margin-left: 92px; margin-right: 92px;
}
.screenTop .screenDouble { margin-left: 56px; margin-right: 56px; }
.screenTop .screenDouble.first  { margin-right: 28px; }
.screenTop .screenDouble.second { margin-left: 28px; }


/* ════════════════════════════════════════════
   SLICK SLIDER
════════════════════════════════════════════ */
.slick-prev, .slick-next,
.slick-prev:hover, .slick-next:hover,
.slick-prev:active, .slick-next:active {
  width: 40px; height: 40px;
  background-color: var(--orange);
  padding: 5px;
}
.header .slick-prev, .header .slick-next,
.header .slick-prev:hover, .header .slick-next:hover {
  background-color: rgba(255,255,255,0.15);
}
.slick-prev { left: -65px; }
.slick-next { right: -65px; }
.slick-slide { outline: none; }

@media (max-width: 990px) {
  .slick-prev { left: -45px; }
  .slick-next { right: -45px; }
}

.slick-prev:before, .slick-next:before {
  content: "";
  background: url(../img/arrow-blue-left.svg) center center no-repeat transparent;
  background-size: contain;
  width: 30px; height: 30px;
  display: block; opacity: 1;
}
.slick-next:before {
  background: url(../img/arrow-blue-right.svg) center center no-repeat transparent;
}
.slick-dots li button { background-color: var(--orange); width: 10px; height: 10px; opacity: 1; }
.slick-dots li button:before { content: ""; opacity: 1; }
.slick-dots li.slick-active button { background-color: var(--white); }


/* ════════════════════════════════════════════
   KONFIGURATOR OPTIONS / TABLES
════════════════════════════════════════════ */
.table { margin-bottom: 2rem; }
.table, td { color: var(--t60); }
.table td {
  vertical-align: top;
  border-top: 0;
  border-bottom: 1px solid var(--t12);
  padding: 8px 0;
}
.table td:last-child { padding-left: 4px; text-align: right; }
.highlight td:last-child { color: var(--orange); font-weight: 600; }
.table td:first-child { padding-right: 3px; text-align: left; }

.step3 input[type=number] {
  border: 1px solid var(--t12);
  background-color: var(--bg3);
  color: var(--white);
  width: 65px;
  text-align: right;
  padding: 4px 6px;
}
.step3 select {
  background-color: var(--bg3);
  color: var(--white);
  border: 1px solid var(--t12);
  padding: 4px 6px;
}
.step3 input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--orange); }

.result { display: none; }
.emptybox { text-align: center; margin: 0 auto; color: var(--t60); }

.customize .mb-md { margin-bottom: 90px; }

/* CTAs (Step 4) */
.ctas {
  position: relative;
  margin-top: -100px;
  text-align: center;
}
.cta img { max-width: 80px; height: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.cta p { color: var(--t60); font-weight: 600; margin: 30px 0; }


/* ════════════════════════════════════════════
   INPUT RANGE
════════════════════════════════════════════ */
input[type=range] { -webkit-appearance: none; margin: 5px 0; width: 100%; }
input[type=range]:focus { outline: none; }
input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 5px; cursor: pointer; background: var(--bg4); border-radius: 2px; }
input[type=range]::-webkit-slider-thumb { height: 15px; width: 15px; border-radius: 50%; background: var(--orange); cursor: pointer; -webkit-appearance: none; margin-top: -6px; }
input[type=range]::-moz-range-track { width: 100%; height: 5px; cursor: pointer; background: var(--bg4); }
input[type=range]::-moz-range-thumb { height: 15px; width: 15px; border-radius: 50%; background: var(--orange); cursor: pointer; }


/* ════════════════════════════════════════════
   ADMIN
════════════════════════════════════════════ */
.adminShow { display: block; }
.adminHide { display: none; }
tr.adminShow { display: table-row; }


/* ════════════════════════════════════════════
   FORMS (Kontakt)
════════════════════════════════════════════ */
.ctaForm h3 { margin-bottom: 30px; }
.ctaForm .row { margin-bottom: 15px; }
.ctaForm input, .ctaForm textarea {
  padding: 10px 14px;
  display: block;
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--t12);
  color: var(--white);
  font-family: 'font', sans-serif;
  font-size: 15px;
}
.ctaForm input:focus, .ctaForm textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.ctaForm input::placeholder, .ctaForm textarea::placeholder { color: var(--t35); }
.form-control {
  background: var(--bg3) !important;
  border: 1px solid var(--t12) !important;
  color: var(--white) !important;
  border-radius: 0 !important;
}
.form-control:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 2px var(--o30) !important;
  background: var(--bg3) !important;
  color: var(--white) !important;
}

.datacheck { padding-left: 20px; }
.datacheck .form-check-input { margin-left: -1.5rem; }


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer.site-footer {
  background-color: #060e18;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='121' viewBox='0 0 70 121'%3E%3Cpolygon points='35,2 67,19 67,53 35,70 3,53 3,19' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3Cpolygon points='35,52 67,69 67,103 35,120 3,103 3,69' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E");
  padding: 64px 0 28px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-decoration: none;
  display: inline-block;
}
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 13px; color: var(--t35); line-height: 1.65; margin-bottom: 16px; }
.footer-contact { font-size: 13px; color: var(--t60); line-height: 1.7; }
.footer-contact a { color: var(--orange); }
.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--t60); text-decoration: none; }
.footer-col a:hover { color: var(--white); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--t12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--t35);
}

@media (max-width: 767px) {
  .footer-bottom { flex-direction: column; }
  footer.site-footer .col-md-3 { margin-bottom: 32px; }
}


/* ════════════════════════════════════════════
   SMARTFRIDGE LANDINGPAGE SPECIFICS
════════════════════════════════════════════ */
.sf-info-row {
  background: var(--bg2);
  border: 1px solid var(--t12);
  padding: 40px;
}
.sf-3d-banner {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border: 1px solid var(--o30);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sf-3d-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.sf-3d-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}
.sf-brochure-card {
  background: var(--bg3);
  border: 1px solid var(--t12);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.sf-brochure-icon {
  width: 56px;
  height: 56px;
  background: var(--o15);
  border: 1px solid var(--o30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

/* Single module display (SmartFridge Konfigurator) */
.sf-module-display {
  background: var(--bg3);
  border: 1px solid var(--o30);
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}
.sf-module-display img {
  max-height: 320px;
  width: auto;
  margin: 0 auto 20px;
  mix-blend-mode: lighten;
}
.sf-module-display h3 { color: var(--orange); margin-bottom: 8px; }
.sf-module-display p { color: var(--t60); font-size: 14px; }


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 767px) {
  .step1 .mb-md { margin-bottom: 220px; }
  .multiple-items { margin-top: -160px; }
  .numbers span { font-size: 55px; }
  .ctas { margin-top: -60px; }
  .konfig-card { padding: 28px 24px 32px; }
  h2 span { display: block; }
}

@media (max-width: 575px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-orange,
  .hero-btns .btn-outline-white { width: 100%; justify-content: center; }
  .system-btns { flex-direction: column; }
  .system-btns .btn-orange,
  .system-btns .btn-outline-white,
  .system-btns .btn-dark-card { width: 100%; justify-content: center; }
}
