/* ================================================================
   ESENTA – Bootstrap 5 theme layer
   Bootstrap owns layout / grid / navbar / breakpoints.
   This file only carries the ESENTA brand identity + components.
   Primary #65af91 · Footer #1B1F21 · Orbitron logo
   ================================================================ */

/* ── Brand tokens + Bootstrap variable overrides ────────────────── */
:root {
  /* Feed the brand colour into Bootstrap's own system so every
     utility (.text-primary, .bg-primary, .border-primary …) follows. */
  --bs-primary: #65af91;
  --bs-primary-rgb: 101, 175, 145;
  --bs-link-color: #65af91;
  --bs-link-color-rgb: 101, 175, 145;
  --bs-link-hover-color: #4f987a;

  --bs-body-font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --bs-body-font-size: 0.9375rem;   /* 15px */
  --bs-body-line-height: 1.7;
  --bs-body-color: #777777;

  /* Brand palette */
  --primary:      #65af91;
  --primary-h:    #57a081;
  --primary-dark: #1d3323;
  --primary-50:   #f0f7f3;
  --primary-100:  #c8e6d8;
  --primary-200:  #a8d4c0;

  --text:        #383838;
  --text-m:      #777777;
  --text-l:      #9b9b9b;
  --text-nav:    #303133;

  --white:   #ffffff;
  --bg-alt:  #f7f7f7;
  --bg-top:  #f9f9f9;
  --border:  #ebebeb;
  --dark:    #1B1F21;
  --footer-text: #9E9E9E;
  --footer-link: #D6D6D6;

  --font-heading: 'Source Sans Pro', 'Open Sans', sans-serif;
  --font-logo:    'Orbitron', 'Open Sans', sans-serif;
  --font-footer:  'DM Sans', 'Open Sans', sans-serif;

  --r-lg: 8px;
  --sh-xs: 0 1px 3px rgba(0,0,0,.06);
  --sh-sm: 0 2px 8px rgba(0,0,0,.1);
  --sh-md: 0 4px 20px rgba(0,0,0,.1);
  --sh-lg: 0 8px 40px rgba(0,0,0,.14);
  --ease: 200ms ease;
}

img, svg { max-width: 100%; height: auto; }
a { text-decoration: none; }   /* Bootstrap underlines links by default */

/* ── Codeless "linea" icon font (as used on the original site) ──── */
@font-face {
  font-family: 'codeless-icons';
  src: url('vendor/codeless-icons.woff2') format('woff2'),
       url('vendor/codeless-icons.woff') format('woff'),
       url('vendor/codeless-icons.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
[class^="cl-icon-"]::before,
[class*=" cl-icon-"]::before {
  font-family: 'codeless-icons';
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cl-icon-lock2::before         { content: '\e818'; }
.cl-icon-key2::before          { content: '\e81f'; }
.cl-icon-tools-2::before       { content: '\e827'; }
.cl-icon-cloud2::before        { content: '\e84b'; }
.cl-icon-sun::before           { content: '\e8a4'; }
.cl-icon-business-card::before { content: '\e9d2'; }
.cl-icon-search3::before       { content: '\e888'; }
.cl-icon-camera3::before       { content: '\e875'; }
.cl-icon-box::before           { content: '\e8b3'; }
.cl-icon-shield2::before       { content: '\e81a'; }
.cl-icon-linegraph::before     { content: '\e82c'; }
.cl-icon-upload2::before       { content: '\e84c'; }
.cl-icon-lightbulb::before     { content: '\e823'; }
.cl-icon-adjustments::before   { content: '\e815'; }
.cl-icon-power::before         { content: '\e8ba'; }
.cl-icon-flow-merge::before    { content: '\e9db'; }
.cl-icon-device-tablet::before { content: '\e9ec'; }

/* ── Typography (fluid, brand fonts) ────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
h1 { font-size: clamp(1.75rem, 1.1rem + 2.6vw, 2.1875rem); line-height: 1.2; font-weight: 700; color: var(--text); }
h2 { font-size: clamp(1.6rem, 0.9rem + 3.1vw, 2.375rem); line-height: 1.25; font-weight: 200; letter-spacing: -1px; color: #333; }
h3 { font-size: clamp(1.15rem, 0.95rem + 0.9vw, 1.4375rem); line-height: 1.5; font-weight: 300; color: #545454; }
h4 { font-size: 1rem; line-height: 1.4; font-weight: 600; color: var(--text-nav); }

.eyebrow {
  display: inline-block;
  font-family: var(--bs-body-font-family);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

/* ── Buttons: theme Bootstrap via its own CSS variables ─────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; border-width: 2px; }
.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-h);
  --bs-btn-hover-border-color: var(--primary-h);
  --bs-btn-active-bg: #4f987a;
  --bs-btn-active-border-color: #4f987a;
  --bs-btn-disabled-bg: var(--primary);
  --bs-btn-disabled-border-color: var(--primary);
  --bs-btn-color: #fff; --bs-btn-hover-color: #fff; --bs-btn-active-color: #fff;
}
.btn-dark {
  --bs-btn-bg: #393c3f; --bs-btn-border-color: #393c3f;
  --bs-btn-hover-bg: #017768; --bs-btn-hover-border-color: #017768;
  --bs-btn-active-bg: #017768; --bs-btn-active-border-color: #017768;
}
.btn-outline-light { --bs-btn-border-color: rgba(255,255,255,.55); }

/* ── Section helpers ────────────────────────────────────────────── */
.section { padding: clamp(48px, 8vw, 80px) 0; }
.section-white { background: var(--white); }
.section-grey  { background: var(--bg-alt); }
.section-hd { max-width: 700px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-hd p { color: var(--text-m); }

.section-dark {
  background-color: #383838;
  background-image: url('../img/esenta-assets/adrien-olichon-082xic2aif8-unsplash-scaled.jpg');
  background-position: left top;
  background-size: cover;
  position: relative;
}
.section-dark::before { content:''; position:absolute; inset:0; background: rgba(1,28,28,.6); }
.section-dark > .container { position: relative; z-index: 1; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.82); }
.section-dark.bg-storm { background-image: url('../img/esenta-assets/storm-1-scaled.jpg'); }
.section-dark.bg-newsletter { background-image: url('../img/esenta-assets/cshong-idT3B9dZJSQ-unsplash-scaled.jpg'); background-position: right center; }
.section-dark.bg-newsletter::before { background: rgba(1,28,28,.4); }
.section-dark.bg-contact { background-image: url('../img/esenta-assets/brooke-cagle-NoRsyXmHGpI-unsplash-scaled.jpg'); background-position: left center; }
.section-dark.bg-contact::before { background: rgba(18,22,19,.5); }
.section-dark.bg-karriere { background-image: url('../img/esenta-assets/brooke-cagle-g1Kr4Ozfoac-unsplash-scaled.jpg'); background-position: center center; }
.section-dark.bg-karriere::before { background: rgba(10,10,10,.6); }
.section-dark .section-hd p { color: rgba(255,255,255,.82); }
.section-dark .newsletter-disclaimer { color: rgba(255,255,255,.6) !important; }

/* ── Top info bar ───────────────────────────────────────────────── */
.top-bar { background: var(--bg-top); border-bottom: 1px solid var(--border); font-size: 13px; color: #4c4c4c; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 16px; }
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; color: #4c4c4c; }
.top-bar-item svg { color: var(--primary); flex-shrink: 0; }
.top-bar-item:hover { color: var(--primary); }
.top-bar-right { color: #666; font-style: italic; }
@media (max-width: 767.98px) { .top-bar { display: none; } }

/* ── Navbar (Bootstrap navbar, ESENTA skin) ─────────────────────── */
.esenta-nav {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  border-top: 1px solid var(--border);
  transition: box-shadow .25s;
  padding-top: 0; padding-bottom: 0;
}
.esenta-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.14); }
.logo-name {
  font-family: var(--font-logo);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--dark);
  text-transform: capitalize;
}
.logo-name em { font-style: normal; color: inherit; }
.navbar-brand:hover .logo-name { color: var(--primary); }

.esenta-nav .nav-link {
  color: var(--text-nav);
  font-size: 15px;
  padding: 22px 14px !important;
  border-bottom: 3px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.esenta-nav .nav-link:hover,
.esenta-nav .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }
.esenta-nav .dropdown-menu { border-top: 3px solid var(--primary); border-radius: 0; font-size: 14px; }
.esenta-nav .dropdown-item.active,
.esenta-nav .dropdown-item:active { background: var(--primary-50); color: var(--primary); }

.lang-btn {
  padding: 5px 11px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  color: var(--text-m);
  cursor: pointer;
  transition: all var(--ease);
}
.lang-btn:hover,
.lang-btn.active-lang { border-color: var(--primary); color: var(--primary); background: var(--primary-50); }

/* Floating flag language switcher (like the original, bottom-right) —
   only the active language shows by default; the other(s) reveal on hover. */
.lang-floater {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1030;
  display: flex;
  align-items: center;
  padding: 7px 9px;
  background: rgba(27, 31, 33, .92);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
}
.lang-floater .lang-flag {
  display: inline-block;
  padding: 0;
  border: 0;
  background: none;
  line-height: 0;
  opacity: .5;
  border-radius: 3px;
  max-width: 26px;
  margin-left: 6px;
  overflow: hidden;
  transition: opacity .2s, transform .2s, box-shadow .2s, max-width .25s ease, margin-left .25s ease;
}
.lang-floater .lang-flag:first-child { margin-left: 0; }
.lang-floater .lang-flag img { display: block; width: 26px; height: auto; border-radius: 2px; }
.lang-floater .lang-flag:hover { opacity: .95; transform: translateY(-1px); }
.lang-floater .lang-flag.active-lang { opacity: 1; box-shadow: 0 0 0 2px var(--primary); }
.lang-floater .lang-flag:not(.active-lang) { max-width: 0; margin-left: 0; opacity: 0; pointer-events: none; }
.lang-floater:hover .lang-flag:not(.active-lang) { max-width: 26px; margin-left: 6px; opacity: .5; pointer-events: auto; }
.lang-floater:hover .lang-flag:not(.active-lang):first-child { margin-left: 0; }

@media (max-width: 991.98px) {
  .esenta-nav .nav-link { padding: 12px 4px !important; border-bottom: 1px solid var(--border); }
  .esenta-nav .navbar-collapse { padding-bottom: 14px; }
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(48px, 7vh, 80px) 0;
  min-height: auto;
  display: flex;
  align-items: center;
  background-color: #0d1e1a;
  background-image: url('../img/esenta-assets/esenta-hero-family-arriving-home.jpg');
  background-position: right center;
  background-size: cover;
}
.hero::before { content:''; position:absolute; inset:0; background: rgba(0,28,25,0.43); }
.hero > .container { position: relative; z-index: 1; }
.hero-kicker {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.hero-h1 { font-family: var(--font-heading); font-size: clamp(2rem, 1rem + 4.4vw, 3.25rem); font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 16px; }
.hero-h2 { font-family: var(--font-heading); font-size: clamp(1.4rem, 0.7rem + 2.9vw, 2.5rem); font-weight: 300; line-height: 1.2; text-transform: uppercase; color: #fff; opacity: .9; margin-bottom: 36px; }
.device-wrap { animation: device-float 5s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); }
.device-img { width: clamp(140px, 18vw, 200px); }
@keyframes device-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── Trust bar ──────────────────────────────────────────────────── */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.trust-item {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 18px 20px;
  font-size: .8rem; font-weight: 600; color: var(--text-m);
  text-align: center;
}
.trust-item { height: 100%; }
.trust-item svg { color: var(--primary); flex-shrink: 0; }
.trust-bar .col { border-left: 1px solid var(--border); }
.trust-bar .col:first-child { border-left: none; }
@media (max-width: 767.98px) {
  .trust-bar .col:nth-child(odd) { border-left: none; }
  .trust-bar .col:nth-child(n+3) { border-top: 1px solid var(--border); }
}

/* ── Feature cards ──────────────────────────────────────────────── */
.feat-card {
  height: 100%;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.feat-card:hover { background: var(--white); box-shadow: var(--sh-md); border-color: var(--border); }
.feat-icon {
  width: 65px; height: 65px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--primary);
  transition: background .25s, color .25s;
}
.feat-card:hover .feat-icon { background: var(--primary); color: #fff; }
.feat-icon i { font-size: 30px; line-height: 1; }

/* Vielfältige Vorteile: no circle, icon to the left of the text */
.vorteil-card { display: flex; gap: 20px; align-items: flex-start; padding: 6px 0; }
.vorteil-card > i { font-size: 42px; line-height: 1; color: var(--primary); flex-shrink: 0; }
.vorteil-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-nav); margin-bottom: 6px; }
.vorteil-card p  { font-size: 14px; color: var(--text-m); line-height: 1.65; margin: 0; }
.feat-card h3 { font-size: 17px; line-height: 1.3; margin-bottom: 10px; font-weight: 400; color: var(--text-nav); }
.feat-card p { font-size: 14px; color: #6a6a6a; line-height: 1.7; }

/* ── Dark application items ─────────────────────────────────────── */
.app4-item { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.app4-icon { color: #fff; }
.app4-item h4 { font-size: 16px; font-weight: 600; color: #fff; margin: 0; }
.app4-item p { font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.6; }

/* ── Cloud cards ────────────────────────────────────────────────── */
.cloud-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.cloud-card.featured { border-top-color: var(--primary); }
.cloud-card.featured::before {
  content: 'Empfohlen';
  position: absolute; top: -1px; right: 16px;
  background: var(--primary); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px;
}
.cloud-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.cloud-icon-wrap {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary-50); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--primary);
}
.cloud-icon-wrap i { font-size: 26px; line-height: 1; }
.cloud-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--text-nav); font-weight: 600; }
.cloud-card p  { font-size: 14px; color: var(--text-m); line-height: 1.65; }
.cloud-card.text-start { padding: 30px 28px; }
.cloud-card.text-start .cloud-icon-wrap { margin-left: 0; margin-right: auto; }
.tp-logo { display: block; max-height: 130px; max-width: 440px; width: auto; height: auto; object-fit: contain; object-position: left center; margin-bottom: 18px; }

/* ── CTA stripe ─────────────────────────────────────────────────── */
.cta-stripe { background: linear-gradient(135deg, var(--primary-dark) 0%, #2e5e42 60%, #3a7554 100%); padding: clamp(56px,8vw,80px) 0; text-align: center; }
.cta-stripe h2 { color: #fff; margin-bottom: 14px; }
.cta-stripe p  { color: rgba(255,255,255,.78); max-width: 500px; margin: 0 auto 32px; }
.cta-contact-row {
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
  padding-top: 28px; margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.cta-item { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: rgba(255,255,255,.82); }
.cta-item a { color: rgba(255,255,255,.82); }
.cta-item a:hover { color: #fff; }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer { background: var(--dark); padding: 60px 0 0; font-family: var(--font-footer); color: var(--footer-text); }
.footer-logo-name { font-family: var(--font-logo); font-size: 1.2rem; letter-spacing: 3px; color: var(--footer-link); display: block; margin-bottom: 14px; }
.footer-logo-name em { font-style: normal; color: inherit; }
.footer-brand-desc { font-size: .85rem; color: var(--footer-text); line-height: 1.7; max-width: 270px; }
.footer-contact-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list a { display: flex; align-items: center; gap: 8px; color: var(--footer-text); font-size: .84rem; }
.footer-contact-list a:hover { color: var(--footer-link); }
.footer-col h4 { font-family: var(--font-footer); font-size: 13px; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; color: var(--footer-link); margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.footer-links a { color: var(--footer-text); font-size: .84rem; }
.footer-links a:hover { color: var(--footer-link); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 44px; padding: 16px 0; font-size: .78rem; color: #999; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #999; }
.footer-legal a:hover { color: var(--footer-link); }

/* ── Inner page hero ────────────────────────────────────────────── */
.page-hero { background: var(--bg-alt); padding: 50px 0 40px; border-bottom: 1px solid var(--border); }
.page-hero p { color: var(--text-m); max-width: 540px; }
.page-hero-split p { max-width: none; }
.page-hero-img { width: 100%; height: clamp(160px, 22vw, 230px); object-fit: cover; object-position: center 20%; border-radius: var(--r-lg); box-shadow: var(--sh-md); display: block; }

/* ── Technical page ─────────────────────────────────────────────── */
.spec-group { height: 100%; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.spec-group-hd { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 14px 20px; display: flex; align-items: center; gap: 10px; }
.spec-group-hd svg { color: var(--primary); flex-shrink: 0; }
.spec-group-hd h3 { font-size: .9rem; font-weight: 600; color: var(--text-nav); line-height: 1.2; margin: 0; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr:not(:last-child) { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 11px 20px; font-size: .85rem; vertical-align: top; }
.spec-table td:first-child { color: var(--text-m); font-weight: 500; width: 44%; }
.spec-table tr:nth-child(even) td { background: rgba(247,247,247,.8); }

.tech-feat { height: 100%; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; display: flex; gap: 14px; align-items: flex-start; transition: border-color .25s, box-shadow .25s; }
.tech-feat:hover { border-color: var(--primary-200); box-shadow: var(--sh-sm); }
.tech-feat-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--white); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.tech-feat-icon i { font-size: 20px; line-height: 1; }
.tech-feat h4 { margin-bottom: 4px; font-size: .93rem; }
.tech-feat p  { font-size: .815rem; color: var(--text-m); line-height: 1.6; margin: 0; }

/* ── Contact page ───────────────────────────────────────────────── */
.contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--sh-sm); }
.contact-form-box > p { color: var(--text-m); margin-bottom: 28px; }
.form-label { font-size: .82rem; font-weight: 600; color: var(--text-nav); margin-bottom: 6px; }
.contact-form-box .form-control,
.contact-form-box .form-select {
  border: 1px solid var(--border); background: var(--bg-alt); font-size: .9rem; color: var(--text);
  border-radius: 4px;
}
.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(101,175,145,.12); }
.contact-info-box { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.cd-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--white); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-detail strong { display: block; font-size: .82rem; margin-bottom: 3px; color: var(--text); }
.contact-detail span, .contact-detail a { font-size: .875rem; color: var(--text-m); }
.contact-detail a:hover { color: var(--primary); }
.contact-divider { height: 1px; background: var(--border); margin: 24px 0; }
.form-success { display: none; background: var(--primary-50); border: 1px solid var(--primary-100); padding: 14px 18px; color: var(--primary-dark); font-size: .875rem; margin-top: 12px; align-items: center; gap: 9px; }
.form-success.show { display: flex; }
.form-error { display: none; background: #fdecec; border: 1px solid #f3b8b8; padding: 14px 18px; color: #a02020; font-size: .875rem; margin-top: 12px; align-items: center; gap: 9px; }
.form-error.show { display: flex; }
.form-error a { color: inherit; text-decoration: underline; }
/* Honeypot: off-screen for humans, still present in the DOM for bots. */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── Partner page ───────────────────────────────────────────────── */
.partner-map {
  height: clamp(320px, 46vw, 460px);
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  z-index: 0;            /* keep Leaflet panes below the sticky navbar */
  background: var(--bg-alt);
}
.partner-map .leaflet-popup-content { font-family: var(--bs-body-font-family); font-size: .85rem; line-height: 1.5; }
.map-legend { display: flex; flex-wrap: wrap; gap: 20px; padding: 14px 4px 26px; }
.map-legend-item { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-m); }
.map-legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.map-legend-dot--hq { background: #2f5fa8; border: 2px solid #1c3a66; }
.map-legend-dot--distributor { background: #e0a336; border: 2px solid #a97613; }
.map-legend-dot--fachpartner { background: #65af91; border: 2px solid #3f7a5e; }
.partner-card { height: 100%; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px 20px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; box-shadow: var(--sh-xs); transition: all .22s; }
.partner-card:hover { border-color: var(--primary-100); box-shadow: var(--sh-md); transform: translateY(-2px); }
.partner-card-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--white); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.partner-card h4 { font-size: .875rem; margin: 0; }
.partner-card p  { font-size: .78rem; color: var(--text-l); margin: 0; }
/* Partner directory listing card (name + address + phone + website) */
.partner-listing { height: 100%; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; box-shadow: var(--sh-xs); transition: border-color .2s, box-shadow .2s; }
.partner-listing:hover { border-color: var(--primary-100); box-shadow: var(--sh-md); }
.pl-logo { display: block; max-height: 112px; max-width: 320px; width: auto; height: auto; object-fit: contain; object-position: left center; margin-bottom: 14px; }
.partner-listing h4 { font-size: .95rem; margin-bottom: 8px; color: var(--text-nav); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pl-badge { font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--primary); padding: 2px 7px; border-radius: 100px; }
.partner-listing .pl-addr { font-size: .8rem; color: var(--text-m); margin-bottom: 10px; line-height: 1.5; display: flex; gap: 7px; }
.partner-listing .pl-addr svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.partner-listing .pl-links { display: flex; flex-direction: column; gap: 5px; }
.partner-listing .pl-links a { font-size: .8rem; color: var(--text-m); display: flex; gap: 7px; align-items: center; word-break: break-word; }
.partner-listing .pl-links a:hover { color: var(--primary); }
.partner-listing .pl-links svg { color: var(--primary); flex-shrink: 0; }

.tech-partner-card { height: 100%; background: var(--white); border: 1px solid var(--border); padding: 20px; display: flex; align-items: center; justify-content: center; min-height: 64px; transition: all .22s; }
.tech-partner-card:hover { border-color: var(--primary); box-shadow: var(--sh-sm); }
.tech-partner-card span { font-weight: 600; color: var(--text-m); font-size: .85rem; text-align: center; }
.become-partner { background: linear-gradient(135deg, var(--primary-dark) 0%, #2e5e42 100%); padding: 48px 40px; display: flex; gap: 36px; align-items: center; }
.become-partner h2 { color: #fff; margin-bottom: 10px; }
.become-partner p  { color: rgba(255,255,255,.75); margin-bottom: 22px; }
.bp-icon { width: 72px; height: 72px; background: rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.benefit-card { height: 100%; background: var(--white); border: 1px solid var(--border); padding: 22px; text-align: center; box-shadow: var(--sh-xs); }
.benefit-card svg { color: var(--primary); margin: 0 auto 10px; }
.benefit-card h4 { font-size: .9rem; margin-bottom: 5px; }
.benefit-card p  { font-size: .8rem; color: var(--text-m); margin: 0; }
@media (max-width: 767.98px) { .become-partner { flex-direction: column; padding: 32px 24px; text-align: center; } }

/* ── Legal pages ────────────────────────────────────────────────── */
.legal-wrap { max-width: 740px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); padding: clamp(28px,5vw,52px) clamp(22px,5vw,60px); box-shadow: var(--sh-sm); }
.legal-wrap h2 { font-size: 1.35rem; font-weight: 600; margin: 40px 0 12px; padding-top: 40px; border-top: 1px solid var(--border); color: var(--text); }
.legal-wrap h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-wrap h3 { font-size: .97rem; font-weight: 600; margin: 22px 0 8px; color: var(--text-nav); }
.legal-wrap p  { color: var(--text-m); line-height: 1.75; margin-bottom: 10px; font-size: .9rem; }
.legal-wrap a  { color: var(--primary); }
.legal-wrap ul { margin: 10px 0 10px 18px; color: var(--text-m); font-size: .9rem; line-height: 1.75; }

/* ── Support knowledge base ─────────────────────────────────────── */
.kb-cat { margin-bottom: 44px; }
.kb-cat:last-child { margin-bottom: 0; }
.kb-cat > h2 { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 1.4rem; font-weight: 600; }
.kb-count { font-size: .7rem; font-weight: 700; color: var(--primary); background: var(--primary-50); border: 1px solid var(--primary-100); border-radius: 100px; padding: 2px 9px; }
.kb-card { display: flex; flex-direction: column; justify-content: space-between; gap: 14px; height: 100%; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 22px; box-shadow: var(--sh-xs); transition: border-color .2s, box-shadow .2s, transform .2s; }
.kb-card:hover { border-color: var(--primary-100); box-shadow: var(--sh-md); transform: translateY(-2px); }
.kb-card h3 { font-size: 1rem; line-height: 1.4; font-weight: 600; color: var(--text-nav); margin: 0; }
.kb-more { font-size: .8rem; font-weight: 600; color: var(--primary); }
.kb-card-cat { font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--primary); }
.kb-card-snippet { font-size: .82rem; line-height: 1.6; color: var(--text-m); margin: 0; }

/* ── Support knowledge base: search ─────────────────────────────── */
.kb-search { position: relative; max-width: 420px; margin-top: 22px; }
.kb-search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-l); pointer-events: none; }
.kb-search-input { width: 100%; padding: 11px 16px 11px 42px; font-size: .9rem; color: var(--text-nav); background: var(--white); border: 1px solid var(--border); border-radius: 100px; box-shadow: var(--sh-xs); transition: border-color .2s, box-shadow .2s; }
.kb-search-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-50); }
.kb-search-input::-webkit-search-cancel-button { cursor: pointer; }
.kb-search-summary { font-size: .85rem; color: var(--text-m); margin-bottom: 18px; }
.kb-no-results { color: var(--text-m); font-size: .9rem; padding: 40px 0; text-align: center; }

.legal-wrap.kb-article { max-width: none; }
.kb-article h2 { font-size: 1.3rem; margin-top: 34px; scroll-margin-top: 100px; }
.kb-article h2:first-child { margin-top: 0; }
.kb-article h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-nav); border: 0; padding: 0; margin: 26px 0 8px; scroll-margin-top: 100px; }
.kb-article img { border: 1px solid var(--border); border-radius: 6px; margin: 14px 0; }
.kb-article ul, .kb-article ol { margin: 10px 0 14px 20px; color: var(--text-m); font-size: .9rem; line-height: 1.7; }
.kb-article code { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; padding: 1px 5px; font-size: .85em; }
.kb-article pre { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 6px; padding: 14px; overflow: auto; }
.kb-article pre code { border: 0; padding: 0; background: none; }
.kb-pdf { width: 100%; height: 80vh; border: 1px solid var(--border); border-radius: var(--r-lg); }
.kb-back { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }
.kb-back a { color: var(--primary); font-weight: 600; }

/* ── Support article: table of contents ───────────────────────────── */
.kb-toc { position: sticky; top: 96px; }
.kb-toc-hd { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-l); margin-bottom: 10px; }
.kb-toc-list { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--border); }
.kb-toc-list li + li { margin-top: 1px; }
.kb-toc-list .nav-link { display: block; padding: 7px 16px; margin-left: -2px; font-size: .85rem; line-height: 1.4; color: var(--text-m); border-left: 2px solid transparent; transition: color .2s, border-color .2s, background .2s; }
.kb-toc-list .kb-toc-h3 .nav-link { padding-left: 28px; font-size: .8rem; }
.kb-toc-list .nav-link:hover { color: var(--primary); }
.kb-toc-list .nav-link.active { color: var(--primary); border-left-color: var(--primary); background: var(--primary-50); font-weight: 600; }
@media (max-width: 991.98px) {
  .kb-toc { position: static; margin-bottom: 30px; }
}

/* ── Image lightbox (support articles + product drawings) ──────────── */
img.kb-lightbox-img { cursor: zoom-in; transition: opacity .15s; }
img.kb-lightbox-img:hover { opacity: .85; }
.kb-lightbox-overlay { position: fixed; inset: 0; background: rgba(10,14,12,.92); display: flex; align-items: center; justify-content: center; padding: 40px; z-index: 2000; cursor: zoom-out; animation: kb-lightbox-fade .15s ease; }
.kb-lightbox-overlay img { max-width: 100%; max-height: 100%; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.5); cursor: zoom-out; }
.kb-lightbox-close { position: absolute; top: 18px; right: 22px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.12); border: 0; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.kb-lightbox-close:hover { background: rgba(255,255,255,.22); }
@keyframes kb-lightbox-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .kb-lightbox-overlay { animation: none; } }

/* ── Produkte page ──────────────────────────────────────────────── */
.prod-nav { position: sticky; top: 96px; }
.prod-nav-list { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--border); }
.prod-nav-list li + li { margin-top: 2px; }
.prod-nav-list a { display: block; padding: 10px 18px; margin-left: -2px; font-size: .88rem; font-weight: 600; color: var(--text-m); border-left: 2px solid transparent; transition: color .2s, border-color .2s, background .2s; }
.prod-nav-list a:hover { color: var(--primary); }
.prod-nav-list a.active { color: var(--primary); border-left-color: var(--primary); background: var(--primary-50); }
.prod-nav-count { float: right; font-size: .72rem; font-weight: 700; color: var(--text-l); }
.prod-nav-list a.active .prod-nav-count { color: var(--primary); }

.prod-group { scroll-margin-top: 108px; }
.prod-group:not(:first-child) { margin-top: 60px; padding-top: 44px; border-top: 1px solid var(--border); }
.prod-group-hd { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.prod-group-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--white); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.prod-group-icon i { font-size: 22px; line-height: 1; }
.prod-group-icon svg { width: 22px; height: 22px; }
.prod-group-hd h2 { margin: 0; font-size: 1.5rem; }
.prod-group-intro { max-width: 780px; margin-bottom: 30px; color: var(--text-m); }
.prod-group-intro p { color: var(--text-m); }
.prod-group-intro ul { margin: 10px 0 0 18px; font-size: .9rem; line-height: 1.75; }

.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(20px, 3vw, 30px); margin-bottom: 26px; box-shadow: var(--sh-xs); }
.product-card:last-child { margin-bottom: 0; }
.product-card-hd { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.product-card-hd h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-nav); margin: 0; }
.product-card-sub { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--primary); font-weight: 700; }
.product-card-lead { font-size: .86rem; color: var(--text-m); margin: 6px 0 0; }
.product-card-merkmale { margin: 16px 0 22px; padding-left: 18px; color: var(--text-m); font-size: .88rem; line-height: 1.75; }

.badge-made-de { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; padding: 5px 13px 5px 8px; border: 1px solid var(--primary-100); background: var(--primary-50); border-radius: 100px; font-size: .74rem; font-weight: 700; color: var(--primary-dark); }
.badge-made-de img { display: block; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }

/* ── Merkmale tab: grouped feature checklists ───────────────────── */
.merkmale-diagram { text-align: center; margin-bottom: 30px; }
.merkmale-diagram img { max-width: 100%; width: 560px; height: auto; }
.merkmale-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px 28px; margin-top: 6px; }
.merkmale-group-hd { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.merkmale-group-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--primary-50); border: 1px solid var(--primary-100); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.merkmale-group-icon svg { width: 17px; height: 17px; }
.merkmale-group-hd h4 { margin: 0; font-size: .92rem; font-weight: 700; color: var(--text-nav); }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li { position: relative; padding-left: 25px; font-size: .85rem; line-height: 1.6; color: var(--text-m); }
.check-list li::before { content: ''; position: absolute; left: 0; top: .3em; width: 15px; height: 15px; border-radius: 50%; background: var(--primary-50); border: 1px solid var(--primary-100); }
.check-list li::after { content: ''; position: absolute; left: 4.5px; top: .52em; width: 6px; height: 3.5px; border-left: 2px solid var(--primary); border-bottom: 2px solid var(--primary); transform: rotate(-45deg); }
.check-list--grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px 26px; margin-top: 18px; }

/* ── Material & Farbe tab: colour swatches ──────────────────────── */
.color-swatches { display: flex; flex-wrap: wrap; gap: 14px; margin: 18px 0 24px; }
.color-swatch { display: flex; align-items: center; gap: 14px; padding: 14px 20px 14px 14px; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--white); min-width: 220px; }
.color-swatch-chip { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(0,0,0,.12); background-size: 100% 100%; }
.color-swatch-chip--steel {
  background-image:
    repeating-linear-gradient(100deg,
      rgba(255,255,255,.55) 0px, rgba(255,255,255,.55) 1px,
      rgba(0,0,0,.05) 1px, rgba(0,0,0,.05) 2px,
      transparent 2px, transparent 3px),
    linear-gradient(115deg, #d8d9db 0%, #f2f3f4 22%, #b3b6ba 45%, #eef0f1 65%, #c2c4c7 85%, #e9eaeb 100%);
}
.color-swatch-body { display: flex; flex-direction: column; gap: 3px; }
.color-swatch-body strong { font-size: .88rem; color: var(--text-nav); }
.color-swatch-code { font-size: .74rem; color: var(--text-l); }
.color-swatch-tag { align-self: flex-start; margin-top: 2px; font-size: .64rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--primary); background: var(--primary-50); border: 1px solid var(--primary-100); border-radius: 100px; padding: 2px 9px; }

.color-swatches--ral { gap: 12px; margin: 16px 0 4px; }
.color-swatch--sm { gap: 11px; padding: 10px 16px 10px 11px; min-width: 190px; }
.color-swatch--sm .color-swatch-chip { width: 32px; height: 32px; }
.color-swatch--sm .color-swatch-body strong { font-size: .8rem; }

/* ── Product page tabs (Merkmale / Technische Daten / Varianten) ─── */
.prod-tabs { display: flex; gap: 26px; flex-wrap: wrap; border-bottom: 1px solid var(--border); margin: 22px 0 4px; }
.prod-tabs .nav-link { padding: 0 0 12px; border: 0; border-bottom: 2px solid transparent; border-radius: 0; background: none; font-size: .92rem; font-weight: 600; color: var(--text-m); transition: color var(--ease), border-color var(--ease); }
.prod-tabs .nav-link:hover { color: var(--text-nav); }
.prod-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); background: none; }
.prod-tab-content { padding-top: 24px; }

.variant-group { margin-top: 30px; }
.variant-group:first-of-type { margin-top: 20px; }
.variant-group-hd { display: flex; align-items: center; gap: 14px; background: var(--primary-50); border: 1px solid var(--primary-100); border-radius: var(--r-lg); padding: 12px 18px; margin-bottom: 18px; }
.variant-group-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--white); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.variant-group-icon svg { width: 19px; height: 19px; }
.variant-group-hd h4 { margin: 0 auto 0 0; font-size: 1rem; font-weight: 700; color: var(--primary-dark); }
.variant-group-count { font-size: .72rem; font-weight: 700; color: var(--primary); background: var(--white); border: 1px solid var(--primary-100); border-radius: 100px; padding: 3px 11px; flex-shrink: 0; }
.variant-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.variant-tile { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--white); overflow: hidden; transition: border-color .2s, box-shadow .2s, transform .2s; }
.variant-tile:hover { border-color: var(--primary-100); box-shadow: var(--sh-md); transform: translateY(-2px); }
.variant-tile-media { background: var(--bg-alt); display: flex; align-items: center; justify-content: center; padding: 14px; border-bottom: 1px solid var(--border); }
.variant-tile-media img { max-height: 150px; max-width: 100%; width: auto; display: block; }
.variant-tile-body { padding: 13px 15px 15px; }
.variant-tile-body strong { display: block; font-family: var(--font-heading); font-size: .85rem; color: var(--text-nav); margin-bottom: 10px; }
.variant-tile-specs { margin: 0; display: flex; flex-direction: column; gap: 5px; }
.variant-tile-specs > div { display: flex; justify-content: space-between; gap: 10px; font-size: .76rem; }
.variant-tile-specs dt { color: var(--text-l); margin: 0; }
.variant-tile-specs dd { margin: 0; color: var(--text-m); font-weight: 600; text-align: right; }

.prod-spec-stack .spec-group { height: auto; }

.product-media { text-align: center; }
.product-media img { display: inline-block; max-width: 100%; max-height: 260px; width: auto; border-radius: var(--r-lg); background: #fbfbfb; padding: 14px; }
.product-media.tall img { max-height: 470px; }
.product-media.compact img { max-height: 150px; padding: 10px; }
.product-media.two-up { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.product-media.two-up img { max-height: 190px; }
.product-media.compact.two-up img { max-height: 95px; }
.product-media.tall.two-up img { max-height: 470px; }
.product-card-top { margin-bottom: 14px; }

.variant-tile img { display: block; margin: 0 auto 10px; max-width: 100%; max-height: 130px; }

.prod-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.prod-cat-card { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; height: 100%; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--sh-xs); transition: border-color .22s, box-shadow .22s, transform .22s; }
.prod-cat-card:hover { border-color: var(--primary-100); box-shadow: var(--sh-md); transform: translateY(-2px); }
.prod-cat-card .prod-group-icon { margin-bottom: 4px; }
.prod-cat-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-nav); margin: 0; }
.prod-cat-card p { font-size: .87rem; color: var(--text-m); line-height: 1.65; margin: 0; flex-grow: 1; }
.prod-cat-more { font-size: .82rem; font-weight: 600; color: var(--primary); }
@media (max-width: 575.98px) {
  .product-card-top .product-media { margin-bottom: 10px; }
}

.prod-note { background: var(--primary-50); border: 1px solid var(--primary-100); border-radius: var(--r-lg); padding: 16px 20px; font-size: .86rem; color: var(--primary-dark); margin-top: 22px; }
.prod-note strong { display: block; margin-bottom: 3px; }

.prod-subgroup-hd { display: flex; align-items: center; gap: 12px; background: var(--primary-50); border: 1px solid var(--primary-100); border-radius: var(--r-lg); padding: 10px 18px; margin: 34px 0 16px; }
.prod-subgroup-hd:first-of-type { margin-top: 4px; }
.prod-subgroup-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--white); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.prod-subgroup-icon i { font-size: 15px; line-height: 1; }
.prod-subgroup-icon svg { width: 16px; height: 16px; }
.prod-subgroup-hd h4 { margin: 0; font-size: .92rem; font-weight: 700; color: var(--primary-dark); }

.download-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.download-item a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--r-lg); font-size: .85rem; font-weight: 600; color: var(--text-nav); transition: border-color .15s, background .15s, color .15s; }
.download-item a:hover { border-color: var(--primary); background: var(--primary-50); color: var(--primary-dark); }
.download-item-ext { font-size: .64rem; font-weight: 700; letter-spacing: .03em; color: var(--primary); background: var(--primary-50); border-radius: 4px; padding: 2px 6px; flex-shrink: 0; }
.download-item a:hover .download-item-ext { background: var(--white); }
.download-item svg { flex-shrink: 0; color: var(--text-l); margin-left: auto; }

.tech-drawing { max-width: 280px; width: 100%; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--white); padding: 10px; }
.prod-drawing { margin-top: 28px; }
.variant-tile-desc { margin: 0; font-size: .76rem; color: var(--text-m); line-height: 1.5; }

.prod-source { text-align: center; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border); font-size: .85rem; color: var(--text-m); }
.prod-source a { color: var(--primary); font-weight: 600; }

@media (max-width: 991.98px) {
  .prod-nav { position: static; margin-bottom: 30px; }
  .prod-nav-list { display: flex; flex-wrap: wrap; gap: 8px; border-left: 0; }
  .prod-nav-list li + li { margin-top: 0; }
  .prod-nav-list a { border: 1px solid var(--border); border-radius: 100px; padding: 8px 16px; margin-left: 0; }
  .prod-nav-list a.active { border-color: var(--primary); }
}

/* ── Lösungen page: moment timeline ───────────────────────────────── */
.moment-list { max-width: 1060px; margin: 0 auto; }
.moment-row { display: grid; grid-template-columns: 84px 1fr; gap: 8px 30px; padding: 38px 0; border-top: 1px solid var(--border); }
.moment-row:first-child { border-top: 0; padding-top: 0; }
.moment-row:last-child { padding-bottom: 0; }
.moment-num { font-family: var(--font-heading); font-size: 2.75rem; font-weight: 700; color: var(--primary-100); line-height: 1; }
.moment-body { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start; }
.moment-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-alt); order: -1; }
.moment-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.moment-tag { display: inline-block; align-self: start; font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--primary); background: var(--primary-50); border: 1px solid var(--primary-100); border-radius: 100px; padding: 4px 12px; margin-bottom: 12px; }
.moment-row h3 { font-size: 1.28rem; margin-bottom: 10px; color: var(--text-nav); line-height: 1.3; }
.moment-row p { color: var(--text-m); margin-bottom: 16px; }
.moment-solved { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.moment-solved li { font-size: .78rem; color: var(--primary-dark); background: var(--bg-alt); border: 1px solid var(--border); border-radius: 100px; padding: 6px 13px; }
@media (min-width: 700px) {
  .moment-body { grid-template-columns: 1fr 220px; }
  .moment-media { order: 0; }
}
@media (max-width: 575.98px) {
  .moment-row { grid-template-columns: 1fr; }
  .moment-num { font-size: 1.5rem; }
}

/* ── Lösungen page: fit finder table ──────────────────────────────── */
.fit-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--white); box-shadow: var(--sh-xs); }
.fit-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.fit-table th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-l); background: var(--bg-alt); padding: 15px 20px; border-bottom: 1px solid var(--border); }
.fit-table td { padding: 17px 20px; font-size: .87rem; color: var(--text-m); vertical-align: top; border-bottom: 1px solid var(--border); line-height: 1.6; }
.fit-table tr:last-child td { border-bottom: 0; }
.fit-table td:first-child { font-weight: 600; color: var(--text-nav); }
.fit-table td:nth-child(2) { white-space: nowrap; }
.fit-table a { color: var(--primary); font-weight: 600; }

/* ── Lösungen page: integration cards ─────────────────────────────── */
.integ-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.integ-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-xs); }
.integ-card h4 { font-size: .95rem; margin-bottom: 10px; display: flex; align-items: center; gap: 11px; color: var(--text-nav); }
.integ-card h4 svg { color: var(--primary); flex-shrink: 0; }
.integ-card p { font-size: .84rem; color: var(--text-m); margin: 0; line-height: 1.65; }

/* ── Wide / 4K screens ──────────────────────────────────────────────
   Bootstrap's .container tops out at 1320px from 1400px upward and
   never grows past it, so on very wide/high-res viewports the page
   sits in a fixed-width island with huge empty margins and everything
   (relative to the screen) reads small. Step the cap up in stages and
   nudge the few fixed-max clamp()s that would otherwise stay pinned
   at their small-desktop ceiling forever. Body copy is left alone —
   only the ceiling was raised, not the base scale, so line lengths
   stay readable. */
@media (min-width: 1600px) {
  .container { max-width: 1480px; }
}
@media (min-width: 1920px) {
  .container { max-width: 1680px; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2.625rem; }
  .hero-h1 { font-size: 3.75rem; }
  .hero-h2 { font-size: 2.75rem; }
}
@media (min-width: 2560px) {
  .container { max-width: 1880px; }
}

/* ── Motion / accessibility ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .device-wrap { animation: none; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}
