/* === rollo-solar-nav-customizer.css === */
/* ═══════════════════════════════════════════════════════════════════
   ROLLO SOLAR — Premium Navigation CSS
   ───────────────────────────────────────────────────────────────────
   EINFÜGEN: WP Admin → Design → Customizer → Weitere CSS
   Theme:    Kubi-child (Mikado / Qode Interactive)
   Version:  2.0 — 2026-03 (Premium Mobile UX — Apple / BMW / Miele)
   ═══════════════════════════════════════════════════════════════════ */


/* ── Design-Tokens ───────────────────────────────────────────────── */
:root {
  --rsn-brand:  #014380;
  --rsn-mid:    #0369b5;
  --rsn-dark:   #06111e;
  --rsn-white:  #ffffff;
  --rsn-ease:   cubic-bezier(.4, 0, .2, 1);
  --rsn-dur:    .28s;
}


/* ═══════════════════════════════════════════════════════════════════
   1. HEADER — Basis
   ─────────────────────────────────────────────────────────────────── */

header.scroll_header_top_area {
  background: rgba(255, 255, 255, .97) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow:
    0 1px 0 rgba(1, 67, 128, .12),
    0 4px 24px rgba(0, 0, 0, .07) !important;
  transition:
    background  var(--rsn-dur) var(--rsn-ease),
    box-shadow  var(--rsn-dur) var(--rsn-ease) !important;
}


/* ═══════════════════════════════════════════════════════════════════
   2. SCROLLED-STATE — dunkles Navy (nur Desktop)
   ─────────────────────────────────────────────────────────────────── */

header.scroll_header_top_area.scrolled {
  background: var(--rsn-dark) !important;
  box-shadow: 0 2px 32px rgba(0, 0, 0, .4) !important;
}

/* FIX: Theme sets .header_bottom/.header_top white on scroll — override (desktop only) */
@media only screen and (min-width: 1001px) {
  header.scroll_header_top_area.scrolled .header_bottom,
  header.scroll_header_top_area.scrolled .header_top {
    background: var(--rsn-dark) !important;
    box-shadow: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   3. LOGO — Höhen-Transition + weiß wenn gescrollt
   ─────────────────────────────────────────────────────────────────── */

.logo_wrapper {
  transition: height var(--rsn-dur) var(--rsn-ease) !important;
}

header.scroll_header_top_area.scrolled .logo_wrapper .q_logo img.normal {
  opacity: 1 !important;
  display: block !important;
  filter: brightness(0) invert(1) !important;
}
header.scroll_header_top_area.scrolled .logo_wrapper .q_logo img:not(.normal) {
  display: none !important;
  opacity: 0 !important;
}


/* ═══════════════════════════════════════════════════════════════════
   4. HAUPTNAVIGATION — Basis-Links
   ─────────────────────────────────────────────────────────────────── */

header.scroll_header_top_area nav.main_menu > ul > li > a {
  color: var(--rsn-brand) !important;
  font-family: Rubik, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 0 15px !important;
  opacity: 1 !important;
  transition: color var(--rsn-dur) var(--rsn-ease) !important;
}


/* ═══════════════════════════════════════════════════════════════════
   5. HOVER-UNDERLINE-ANIMATION
   ─────────────────────────────────────────────────────────────────── */

header.scroll_header_top_area nav.main_menu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rsn-mid);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--rsn-dur) var(--rsn-ease);
  pointer-events: none;
}

header.scroll_header_top_area nav.main_menu > ul > li:hover > a::after,
header.scroll_header_top_area nav.main_menu > ul > li.active > a::after,
header.scroll_header_top_area nav.main_menu > ul > li.current-menu-item > a::after,
header.scroll_header_top_area nav.main_menu > ul > li.current-menu-ancestor > a::after {
  transform: scaleX(1);
}

header:not(.with_hover_bg_color) nav.main_menu > ul > li:hover > a,
header.scroll_header_top_area nav.main_menu > ul > li:hover > a,
header.scroll_header_top_area nav.main_menu > ul > li.active > a,
header.scroll_header_top_area nav.main_menu > ul > li.current-menu-item > a,
header.scroll_header_top_area nav.main_menu > ul > li.current-menu-ancestor > a {
  color: var(--rsn-mid) !important;
  opacity: 1 !important;
}


/* ═══════════════════════════════════════════════════════════════════
   6. SCROLLED-STATE — weiße Links
   ─────────────────────────────────────────────────────────────────── */

header.scroll_header_top_area.scrolled nav.main_menu > ul > li > a {
  color: rgba(255, 255, 255, .82) !important;
}

header.scroll_header_top_area.scrolled nav.main_menu > ul > li:hover > a,
header.scroll_header_top_area.scrolled nav.main_menu > ul > li.active > a,
header.scroll_header_top_area.scrolled nav.main_menu > ul > li.current-menu-item > a {
  color: var(--rsn-white) !important;
}

header.scroll_header_top_area.scrolled nav.main_menu > ul > li > a::after {
  bottom: 20px;
  background: rgba(255, 255, 255, .5);
}


/* ═══════════════════════════════════════════════════════════════════
   7. KONTAKT — CTA-Pill-Button (Desktop)
   ─────────────────────────────────────────────────────────────────── */

header.scroll_header_top_area
  nav.main_menu > ul > li.narrow:not(.has_sub):not(.wpml-ls-item) {
  display: flex !important;
  align-items: center !important;
  height: 100px !important;
  margin-left: 6px !important;
}

header.scroll_header_top_area.scrolled
  nav.main_menu > ul > li.narrow:not(.has_sub):not(.wpml-ls-item) {
  height: 60px !important;
}

header.scroll_header_top_area
  nav.main_menu > ul > li.narrow:not(.has_sub):not(.wpml-ls-item) > a {
  height: auto !important;
  line-height: 1 !important;
  padding: 10px 22px !important;
  border: 1.5px solid var(--rsn-brand) !important;
  border-radius: 40px !important;
  color: var(--rsn-brand) !important;
  font-size: 11.5px !important;
  display: inline-block !important;
  transition:
    background     var(--rsn-dur) var(--rsn-ease),
    color          var(--rsn-dur) var(--rsn-ease),
    border-color   var(--rsn-dur) var(--rsn-ease) !important;
}

header.scroll_header_top_area
  nav.main_menu > ul > li.narrow:not(.has_sub):not(.wpml-ls-item) > a::after {
  display: none !important;
}

header.scroll_header_top_area
  nav.main_menu > ul > li.narrow:not(.has_sub):not(.wpml-ls-item):hover > a {
  background: var(--rsn-brand) !important;
  color: var(--rsn-white) !important;
}

header.scroll_header_top_area.scrolled
  nav.main_menu > ul > li.narrow:not(.has_sub):not(.wpml-ls-item) > a {
  border-color: rgba(255, 255, 255, .55) !important;
  color: rgba(255, 255, 255, .88) !important;
}

header.scroll_header_top_area.scrolled
  nav.main_menu > ul > li.narrow:not(.has_sub):not(.wpml-ls-item):hover > a {
  background: rgba(255, 255, 255, .12) !important;
  border-color: var(--rsn-white) !important;
  color: var(--rsn-white) !important;
}


/* ═══════════════════════════════════════════════════════════════════
   8. DESKTOP-DROPDOWNS — Dark Premium
   ─────────────────────────────────────────────────────────────────── */

header.scroll_header_top_area nav.main_menu ul ul {
  background: var(--rsn-dark) !important;
  border-top: 2px solid var(--rsn-mid) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35) !important;
  border-radius: 0 0 8px 8px !important;
  min-width: 220px !important;
  padding: 4px 0 !important;
}

header.scroll_header_top_area nav.main_menu ul ul li a {
  color: rgba(255, 255, 255, .72) !important;
  font-size: 11px !important;
  letter-spacing: 1.2px !important;
  padding: 10px 22px !important;
  border-left: 2px solid transparent !important;
  line-height: 1.4 !important;
  transition:
    color         var(--rsn-dur) var(--rsn-ease),
    background    var(--rsn-dur) var(--rsn-ease),
    border-color  var(--rsn-dur) var(--rsn-ease),
    padding-left  var(--rsn-dur) var(--rsn-ease) !important;
}

header.scroll_header_top_area nav.main_menu ul ul li:hover > a {
  color: var(--rsn-white) !important;
  background: rgba(3, 105, 181, .16) !important;
  border-left-color: var(--rsn-mid) !important;
  padding-left: 28px !important;
}

header.scroll_header_top_area nav.main_menu ul ul ul {
  border-top: none !important;
  border-left: 2px solid var(--rsn-mid) !important;
  border-radius: 0 8px 8px 0 !important;
}


/* ═══════════════════════════════════════════════════════════════════
   9. MOBILE & TABLET  (≤ 1000 px)  —  PREMIUM UX
   ─────────────────────────────────────────────────────────────────── */

@media only screen and (max-width: 1000px) {

  /* ── Header bleibt auf Mobile immer weiß ── */
  header.scroll_header_top_area,
  header.scroll_header_top_area.scrolled {
    background: rgba(255, 255, 255, .97) !important;
    box-shadow:
      0 1px 0 rgba(1, 67, 128, .12),
      0 4px 24px rgba(0, 0, 0, .07) !important;
  }

  /* Logo nicht invertieren (weißer Header) */
  header.scroll_header_top_area.scrolled .logo_wrapper .q_logo img.normal {
    filter: none !important;
  }

  /* ── Hamburger — brand blue ── */
  .mobile_menu_button span i {
    color: var(--rsn-brand) !important;
    font-size: 24px !important;
  }


  /* ════════════════════════════════════════════════════════════════
     PREMIUM MOBILE OVERLAY  (Apple / BMW / Miele)
     ════════════════════════════════════════════════════════════════ */

  nav.mobile_menu {
    background: var(--rsn-dark) !important;
    border-top: 1px solid rgba(255, 255, 255, .14) !important;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5) !important;
    overflow: hidden !important;
  }

  /* Fill the full remaining viewport below the header */
  nav.mobile_menu ul {
    min-height: calc(100vh - 102px) !important;
  }


  /* ── ENTRANCE ANIMATION — staggered fade-up ── */

  @keyframes rsn-fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0);    }
  }

  nav.mobile_menu > ul > li {
    animation: rsn-fade-up .42s var(--rsn-ease) both;
    border-bottom: 1px solid rgba(255, 255, 255, .055) !important;
  }
  nav.mobile_menu > ul > li:nth-child(1) { animation-delay: .05s; }
  nav.mobile_menu > ul > li:nth-child(2) { animation-delay: .10s; }
  nav.mobile_menu > ul > li:nth-child(3) { animation-delay: .15s; }
  nav.mobile_menu > ul > li:nth-child(4) { animation-delay: .20s; }
  nav.mobile_menu > ul > li:nth-child(5) { animation-delay: .25s; }
  nav.mobile_menu > ul > li:nth-child(6) { animation-delay: .30s; }


  /* ── LEVEL 1 — Editorial large type ── */

  nav.mobile_menu > ul > li > a,
  nav.mobile_menu > ul > li > h3 {
    padding: 26px 64px 26px 32px !important;
    box-shadow: inset 3px 0 0 transparent !important;
    border-bottom: none !important;
    transition:
      background   var(--rsn-dur) var(--rsn-ease),
      box-shadow   var(--rsn-dur) var(--rsn-ease),
      padding-left var(--rsn-dur) var(--rsn-ease) !important;
  }

  nav.mobile_menu > ul > li > a span,
  nav.mobile_menu > ul > li > h3,
  nav.mobile_menu > ul > li > h3 span {
    color: rgba(255, 255, 255, .88) !important;
    font-family: Rubik, sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
  }

  /* Hover / active state */
  nav.mobile_menu > ul > li:hover > a,
  nav.mobile_menu > ul > li:hover > h3,
  nav.mobile_menu > ul > li.active > a,
  nav.mobile_menu > ul > li.current-menu-item > a {
    background:   rgba(255, 255, 255, .055) !important;
    box-shadow:   inset 3px 0 0 rgba(255, 255, 255, .5) !important;
    padding-left: 38px !important;
  }

  nav.mobile_menu > ul > li:hover > a span,
  nav.mobile_menu > ul > li:hover > h3,
  nav.mobile_menu > ul > li:hover > h3 span,
  nav.mobile_menu > ul > li.current-menu-item > a span {
    color: var(--rsn-white) !important;
  }


  /* ── LEVEL 2 — Sub-menu ── */

  nav.mobile_menu ul ul {
    background:  rgba(0, 0, 0, .22) !important;
    border-top:  1px solid rgba(255, 255, 255, .05) !important;
  }

  nav.mobile_menu ul ul li a,
  nav.mobile_menu ul ul li h3 {
    padding: 14px 50px 14px 40px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .05) !important;
    box-shadow: none !important;
    transition:
      background   var(--rsn-dur) var(--rsn-ease),
      padding-left var(--rsn-dur) var(--rsn-ease) !important;
  }

  nav.mobile_menu ul ul li a span,
  nav.mobile_menu ul ul li h3,
  nav.mobile_menu ul ul li h3 span {
    color: rgba(255, 255, 255, .52) !important;
    font-family: Rubik, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    line-height: 1.3 !important;
  }

  nav.mobile_menu ul ul li:hover > a {
    background:   rgba(255, 255, 255, .07) !important;
    padding-left: 50px !important;
  }

  nav.mobile_menu ul ul li:hover > a span {
    color: rgba(255, 255, 255, .88) !important;
  }


  /* ── LEVEL 3 ── */

  nav.mobile_menu ul ul ul li a {
    padding-left: 58px !important;
    background:   rgba(0, 0, 0, .15) !important;
  }


  /* ── EXPAND ARROW — subtle, reveals on hover ── */

  .mobile_arrow i {
    color: rgba(255, 255, 255, .20) !important;
    font-size: 16px !important;
    transition:
      color     var(--rsn-dur) var(--rsn-ease),
      transform var(--rsn-dur) var(--rsn-ease) !important;
  }

  nav.mobile_menu > ul > li:hover .mobile_arrow i,
  nav.mobile_menu > ul > li.open  .mobile_arrow i {
    color: rgba(255, 255, 255, .65) !important;
  }

  nav.mobile_menu ul li ul li .mobile_arrow i {
    font-size: 12px !important;
  }


  /* ── KONTAKT — premium CTA treatment ── */

  nav.mobile_menu ul li.narrow:not(.has_sub):not(.wpml-ls-item) {
    border-top:    1px solid rgba(255, 255, 255, .14) !important;
    border-bottom: none !important;
  }

  nav.mobile_menu ul li.narrow:not(.has_sub):not(.wpml-ls-item) > a {
    background: rgba(255, 255, 255, .04) !important;
    box-shadow: none !important;
    padding:    26px 64px 26px 32px !important;
    transition: background var(--rsn-dur) var(--rsn-ease),
                padding-left var(--rsn-dur) var(--rsn-ease) !important;
  }

  nav.mobile_menu ul li.narrow:not(.has_sub):not(.wpml-ls-item) > a span {
    color:     rgba(255, 255, 255, .88) !important;
    font-size: 22px !important;
  }

  nav.mobile_menu ul li.narrow:not(.has_sub):not(.wpml-ls-item):hover > a {
    background:   rgba(255, 255, 255, .09) !important;
    box-shadow:   inset 3px 0 0 rgba(255, 255, 255, .5) !important;
    padding-left: 38px !important;
  }

  nav.mobile_menu ul li.narrow:not(.has_sub):not(.wpml-ls-item):hover > a span {
    color: var(--rsn-white) !important;
  }


  /* ── SPRACH-SWITCHER — dezent abgedunkelt ── */

  nav.mobile_menu .wpml-ls-item > a,
  nav.mobile_menu .wpml-ls-item > h3,
  nav.mobile_menu .menu-item-language > a,
  nav.mobile_menu .menu-item-language > h3 {
    background:    rgba(0, 0, 0, .20) !important;
    padding:       16px 64px 16px 32px !important;
    border-top:    1px solid rgba(255, 255, 255, .04) !important;
    border-bottom: none !important;
    box-shadow:    none !important;
  }

  nav.mobile_menu .wpml-ls-item > a span,
  nav.mobile_menu .wpml-ls-item > h3,
  nav.mobile_menu .menu-item-language > h3 {
    font-size:      11px !important;
    color:          rgba(255, 255, 255, .38) !important;
    letter-spacing: 2px !important;
  }

}


/* ═══════════════════════════════════════════════════════════════════
   PAGE — Design Cover PC  (page-id-159)
   Editorial Design · rs-* Sprache · Rubik 800 · Navy + Weiß
   Version: 2.0 — 2026-03 (Komplettes Redesign)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
.page-id-159 {
  --dcp-navy:  #014380;
  --dcp-blue:  #0369b5;
  --dcp-black: #111111;
  --dcp-body:  #555555;
  --dcp-gray:  #f4f6f8;
  --dcp-white: #ffffff;
  --dcp-dur:   .24s;
  --dcp-ease:  cubic-bezier(.4, 0, .2, 1);
}


/* ── 1. HERO ROW ──────────────────────────────────────────────────── */

.page-id-159 .dcp-hero-row {
  background:     var(--dcp-white) !important;
  padding-top:    100px !important;
  padding-bottom: 80px !important;
}

.page-id-159 .dcp-hero-col > .wpb_wrapper {
  max-width: 860px;
}


/* ── 2. EYEBROW ───────────────────────────────────────────────────── */

.page-id-159 .dcp-eyebrow {
  display:        block !important;
  font-family:    Rubik, sans-serif !important;
  font-size:      12px !important;
  font-weight:    600 !important;
  color:          var(--dcp-blue) !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
  margin-bottom:  24px !important;
  line-height:    1 !important;
}

.page-id-159 .dcp-eyebrow--light {
  color: rgba(255, 255, 255, .55) !important;
}


/* ── 3. DISPLAY H1 ────────────────────────────────────────────────── */

.page-id-159 .dcp-h1 {
  font-family:    Rubik, sans-serif !important;
  font-size:      clamp(48px, 7vw, 96px) !important;
  font-weight:    800 !important;
  color:          var(--dcp-black) !important;
  letter-spacing: -0.045em !important;
  line-height:    1 !important;
  margin-bottom:  32px !important;
  text-transform: none !important;
}

.page-id-159 .dcp-h1 em {
  font-style: normal !important;
  color:      var(--dcp-navy) !important;
  display:    block !important;
}


/* ── 4. HERO SUBTEXT ─────────────────────────────────────────────── */

.page-id-159 .dcp-sub {
  font-family:   Rubik, sans-serif !important;
  font-size:     18px !important;
  color:         var(--dcp-body) !important;
  line-height:   1.75 !important;
  max-width:     620px !important;
  margin-bottom: 44px !important;
}


/* ── 5. BUTTONS ───────────────────────────────────────────────────── */

.page-id-159 .dcp-btns {
  display:         flex !important;
  flex-wrap:       wrap !important;
  gap:             16px !important;
  align-items:     center !important;
}

.page-id-159 .dcp-btns--centered {
  justify-content: center !important;
}

.page-id-159 .dcp-btn {
  display:         inline-block !important;
  font-family:     Rubik, sans-serif !important;
  font-size:       14px !important;
  font-weight:     600 !important;
  letter-spacing:  0.02em !important;
  text-decoration: none !important;
  padding:         14px 28px !important;
  border-radius:   999px !important;
  line-height:     1 !important;
  transition:
    background  var(--dcp-dur) var(--dcp-ease),
    color       var(--dcp-dur) var(--dcp-ease),
    box-shadow  var(--dcp-dur) var(--dcp-ease),
    transform   var(--dcp-dur) var(--dcp-ease) !important;
}

.page-id-159 .dcp-btn--primary {
  background: var(--dcp-navy) !important;
  color:      var(--dcp-white) !important;
  box-shadow: 0 4px 20px rgba(1, 67, 128, .22) !important;
}

.page-id-159 .dcp-btn--primary:hover {
  background: #012e5a !important;
  color:      var(--dcp-white) !important;
  box-shadow: 0 8px 32px rgba(1, 67, 128, .38) !important;
  transform:  translateY(-2px) !important;
}

.page-id-159 .dcp-btn--secondary {
  background: transparent !important;
  color:      var(--dcp-navy) !important;
  box-shadow: inset 0 0 0 1.5px var(--dcp-navy) !important;
}

.page-id-159 .dcp-btn--secondary:hover {
  background: rgba(1, 67, 128, .06) !important;
  color:      var(--dcp-navy) !important;
  transform:  translateY(-2px) !important;
}

.page-id-159 .dcp-btn--inverse {
  background: var(--dcp-white) !important;
  color:      var(--dcp-navy) !important;
}

.page-id-159 .dcp-btn--inverse:hover {
  background: rgba(255, 255, 255, .88) !important;
  color:      var(--dcp-navy) !important;
  transform:  translateY(-2px) !important;
}


/* ── 6. PRODUCT SHOWCASE ─────────────────────────────────────────── */

.page-id-159 .dcp-showcase-row {
  background: var(--dcp-gray) !important;
  padding:    64px 0 !important;
}

.page-id-159 .dcp-showcase-img .vc_single_image-img {
  max-height:  420px !important;
  width:       auto !important;
  object-fit:  contain !important;
  filter:      drop-shadow(0 24px 48px rgba(0, 0, 0, .15)) !important;
  margin:      0 auto !important;
  display:     block !important;
}


/* ── 7. SPECS ROW ─────────────────────────────────────────────────── */

.page-id-159 .dcp-specs-row {
  background:     var(--dcp-white) !important;
  padding-top:    96px !important;
  padding-bottom: 96px !important;
}

.page-id-159 .dcp-specs-text-col > .wpb_wrapper {
  padding-right: 48px !important;
}

.page-id-159 .dcp-section-h2 {
  font-family:    Rubik, sans-serif !important;
  font-size:      clamp(36px, 4.5vw, 56px) !important;
  font-weight:    800 !important;
  color:          var(--dcp-black) !important;
  letter-spacing: -0.03em !important;
  line-height:    1.05 !important;
  margin-bottom:  32px !important;
  text-transform: none !important;
}

.page-id-159 .dcp-section-h2 em {
  font-style: normal !important;
  color:      var(--dcp-navy) !important;
  display:    block !important;
}

.page-id-159 .dcp-body {
  font-family:   Rubik, sans-serif !important;
  font-size:     18px !important;
  color:         var(--dcp-body) !important;
  line-height:   1.75 !important;
  margin-bottom: 20px !important;
}

.page-id-159 .dcp-body:last-child {
  margin-bottom: 0 !important;
}

/* Spec List */
.page-id-159 .dcp-spec-list {
  list-style: none !important;
  padding:    0 !important;
  margin:     0 !important;
}

.page-id-159 .dcp-spec-item {
  display:         flex !important;
  justify-content: space-between !important;
  align-items:     center !important;
  padding:         16px 0 !important;
  border-bottom:   1px solid rgba(1, 67, 128, .08) !important;
}

.page-id-159 .dcp-spec-item:first-child {
  border-top: 1px solid rgba(1, 67, 128, .08) !important;
}

.page-id-159 .dcp-spec-label {
  font-family:    Rubik, sans-serif !important;
  font-size:      12px !important;
  font-weight:    600 !important;
  color:          var(--dcp-navy) !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.page-id-159 .dcp-spec-value {
  font-family: Rubik, sans-serif !important;
  font-size:   15px !important;
  font-weight: 400 !important;
  color:       var(--dcp-black) !important;
}


/* ── 8. DOWNLOAD ROW ─────────────────────────────────────────────── */

.page-id-159 .dcp-download-row {
  background:     var(--dcp-gray) !important;
  padding-top:    80px !important;
  padding-bottom: 80px !important;
}

.page-id-159 .dcp-download-col > .wpb_wrapper {
  max-width:  720px !important;
  margin:     0 auto !important;
  text-align: center !important;
}

.page-id-159 .dcp-download-row .wpdm-download-link.btn-primary {
  background:      var(--dcp-navy) !important;
  border-color:    var(--dcp-navy) !important;
  border-radius:   999px !important;
  padding:         14px 28px !important;
  font-family:     Rubik, sans-serif !important;
  font-size:       14px !important;
  font-weight:     600 !important;
  letter-spacing:  0.02em !important;
  text-transform:  none !important;
  transition:      background var(--dcp-dur) var(--dcp-ease) !important;
}

.page-id-159 .dcp-download-row .wpdm-download-link.btn-primary:hover {
  background:   #012e5a !important;
  border-color: #012e5a !important;
}


/* ── 9. FEATURES (CARDS) ROW ─────────────────────────────────────── */

.page-id-159 .dcp-features-row {
  background:     var(--dcp-gray) !important;
  padding-top:    96px !important;
  padding-bottom: 96px !important;
}

.page-id-159 .dcp-cards-inner {
  margin: 0 -10px !important;
}

.page-id-159 .dcp-card-col > .wpb_wrapper {
  background:    var(--dcp-white) !important;
  border-radius: 16px !important;
  padding:       28px 24px 24px !important;
  margin:        0 10px !important;
  height:        100% !important;
  transition:
    box-shadow  var(--dcp-dur) var(--dcp-ease),
    transform   var(--dcp-dur) var(--dcp-ease) !important;
}

.page-id-159 .dcp-card-col > .wpb_wrapper:hover {
  box-shadow: 0 16px 48px rgba(1, 67, 128, .12) !important;
  transform:  translateY(-6px) !important;
}

.page-id-159 .dcp-card-img {
  margin-bottom: 20px !important;
}

.page-id-159 .dcp-card-img .vc_single_image-img {
  border-radius: 8px !important;
  width:         100% !important;
  height:        180px !important;
  object-fit:    cover !important;
}

.page-id-159 .dcp-card-title {
  font-family:    Rubik, sans-serif !important;
  font-size:      15px !important;
  font-weight:    700 !important;
  color:          var(--dcp-navy) !important;
  line-height:    1.35 !important;
  margin-bottom:  10px !important;
  padding-bottom: 10px !important;
  border-bottom:  1.5px solid rgba(1, 67, 128, .1) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.page-id-159 .dcp-card-text {
  font-family: Rubik, sans-serif !important;
  font-size:   14px !important;
  color:       #666666 !important;
  line-height: 1.65 !important;
  margin:      0 !important;
}


/* ── 10. COLORS ROW ──────────────────────────────────────────────── */

.page-id-159 .dcp-colors-row {
  background:     var(--dcp-white) !important;
  padding-top:    96px !important;
  padding-bottom: 96px !important;
}

.page-id-159 .dcp-colors-row .wpb_single_image img {
  border-radius: 8px !important;
  transition:
    transform  var(--dcp-dur) var(--dcp-ease),
    box-shadow var(--dcp-dur) var(--dcp-ease) !important;
}

.page-id-159 .dcp-colors-row .wpb_single_image img:hover {
  transform:  scale(1.04) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .15) !important;
}


/* ── 11. NAVY CTA ROW ────────────────────────────────────────────── */

.page-id-159 .dcp-cta-navy-row {
  background:     var(--dcp-navy) !important;
  padding-top:    96px !important;
  padding-bottom: 96px !important;
}

.page-id-159 .dcp-cta-navy-col > .wpb_wrapper {
  max-width:  720px !important;
  margin:     0 auto !important;
  text-align: center !important;
}

.page-id-159 .dcp-cta-h2 {
  font-family:    Rubik, sans-serif !important;
  font-size:      clamp(36px, 4.5vw, 56px) !important;
  font-weight:    800 !important;
  color:          var(--dcp-white) !important;
  letter-spacing: -0.03em !important;
  line-height:    1.05 !important;
  margin-bottom:  20px !important;
  text-transform: none !important;
}

.page-id-159 .dcp-cta-h2 em {
  font-style: normal !important;
  color:      rgba(255, 255, 255, .65) !important;
  display:    block !important;
}

.page-id-159 .dcp-cta-sub {
  font-family:   Rubik, sans-serif !important;
  font-size:     17px !important;
  color:         rgba(255, 255, 255, .72) !important;
  line-height:   1.75 !important;
  margin-bottom: 44px !important;
}


/* ── 12. MOBILE (≤ 768px) ─────────────────────────────────────────── */

@media (max-width: 768px) {

  .page-id-159 .dcp-hero-row {
    padding-top:    64px !important;
    padding-bottom: 52px !important;
  }

  .page-id-159 .dcp-h1 {
    font-size:      clamp(40px, 11vw, 60px) !important;
    letter-spacing: -0.03em !important;
  }

  .page-id-159 .dcp-sub,
  .page-id-159 .dcp-body {
    font-size: 16px !important;
  }

  .page-id-159 .dcp-specs-text-col > .wpb_wrapper {
    padding-right: 0 !important;
    margin-bottom: 48px !important;
  }

  .page-id-159 .dcp-specs-row,
  .page-id-159 .dcp-download-row,
  .page-id-159 .dcp-features-row,
  .page-id-159 .dcp-colors-row,
  .page-id-159 .dcp-cta-navy-row {
    padding-top:    64px !important;
    padding-bottom: 64px !important;
  }

  .page-id-159 .dcp-card-col > .wpb_wrapper {
    margin: 0 0 20px !important;
  }

  .page-id-159 .dcp-showcase-row {
    padding: 40px 0 !important;
  }

  .page-id-159 .dcp-showcase-img .vc_single_image-img {
    max-height: 260px !important;
  }

}


/* === rollo-solar-vertikale-beckentrennung-customizer.css === */
/* === VERTIKALE BECKENTRENNUNG CSS (page-id-179) 2026-03 === */

/* ── Design Tokens ── */
.page-id-179 {
  --navy:   #014380;
  --blue:   #0369b5;
  --dark:   #06111e;
  --black:  #111111;
  --body:   #4a5568;
  --gray:   #f4f6f8;
  --silver: #e2e8f0;
  --white:  #ffffff;
  --teal:   #0d7377;
  --dur:    .22s;
  --ease:   cubic-bezier(.4, 0, .2, 1);
  --radius: 20px;
}

.page-id-179 *, .page-id-179 *::before, .page-id-179 *::after { box-sizing: border-box; }

/* ── Full-Width Fix ── */
.page-id-179 .container_inner,
.page-id-179 .wpb-content-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.page-id-179 .vc_column-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.page-id-179 .vc_row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── Scroll Reveal ── */
.rs2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.rs2-reveal.visible { opacity: 1; transform: none; }
.rs2-reveal-d1 { transition-delay: .08s; }
.rs2-reveal-d2 { transition-delay: .16s; }
.rs2-reveal-d3 { transition-delay: .24s; }

/* ── Container ── */
.rsvbt-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Eyebrow ── */
.rsvbt-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.rsvbt-eyebrow::before, .rsvbt-eyebrow::after { content: '—'; opacity: .4; margin: 0 8px; }
.rsvbt-eyebrow--light { color: rgba(255,255,255,.72); }
.rsvbt-eyebrow--light::before, .rsvbt-eyebrow--light::after { color: rgba(255,255,255,.72); }

/* ── Typography ── */
.rsvbt-h1 {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.04em;
  line-height: 1.02;
  margin: 0 0 20px;
}
.rsvbt-h1 em { font-style: normal; color: var(--navy); }
.rsvbt-h1--light { color: var(--white); }
.rsvbt-h1--light em { color: rgba(255,255,255,.72); }

.rsvbt-h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 0 0 14px;
}
.rsvbt-h2 em { font-style: normal; color: var(--navy); }

.rsvbt-sub {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 0 28px;
}
.rsvbt-sub--light { color: rgba(255,255,255,.82); }

.rsvbt-section-sub {
  font-size: 16px;
  color: var(--body);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ── */
.rsvbt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.rsvbt-btn--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.rsvbt-btn--white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  color: var(--navy);
}
.rsvbt-btn--ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5);
}
.rsvbt-btn--ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.8);
}
.rsvbt-btn--link-light {
  background: none;
  border: none;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 13px 16px;
  transition: color var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
}
.rsvbt-btn--link-light:hover { color: var(--white); }

/* ════════════════════════════════════════════
   1. HERO
   ════════════════════════════════════════════ */
.rsvbt-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rsvbt-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.rsvbt-hero:hover .rsvbt-hero-bg { transform: scale(1); }
.rsvbt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6,17,30,.86) 0%, rgba(3,105,181,.32) 100%);
}
.rsvbt-hero-content {
  position: relative;
  z-index: 1;
  padding: 110px 32px 90px;
  max-width: 680px;
}
.rsvbt-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ════════════════════════════════════════════
   2. USP-LEISTE
   ════════════════════════════════════════════ */
.rsvbt-usps {
  background: var(--white);
  border-bottom: 1px solid var(--silver);
}
.rsvbt-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--silver);
  max-width: 1100px;
  margin: 0 auto;
}
.rsvbt-usp {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--silver);
}
.rsvbt-usp:last-child { border-right: none; }
.rsvbt-usp-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.rsvbt-usp strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 2px;
}
.rsvbt-usp span {
  font-size: 12px;
  color: var(--body);
  line-height: 1.4;
}

/* ════════════════════════════════════════════
   3. INTRO + FEATURES
   ════════════════════════════════════════════ */
.rsvbt-intro {
  background: var(--white);
  padding: 80px 0 72px;
}
.rsvbt-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.rsvbt-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--gray);
  border-radius: 14px;
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--dur) var(--ease);
  margin-top: 4px;
}
.rsvbt-catalog-link:hover {
  background: var(--silver);
  color: var(--navy);
  transform: translateY(-1px);
}
.rsvbt-catalog-link span {
  font-weight: 400;
  font-size: 12px;
  color: var(--body);
}
.rsvbt-feature-wrap { padding-top: 8px; }
.rsvbt-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--silver);
  border-radius: var(--radius);
  overflow: hidden;
}
.rsvbt-feature-item {
  background: var(--white);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: background var(--dur) var(--ease);
}
.rsvbt-feature-item:hover { background: var(--gray); }
.rsvbt-feature-item svg { flex-shrink: 0; color: var(--blue); margin-top: 1px; }
.rsvbt-feature-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}
.rsvbt-feature-item span {
  font-size: 12px;
  color: var(--body);
  line-height: 1.45;
}
.rsvbt-feature-item--highlight {
  background: rgba(1,67,128,.04);
}
.rsvbt-feature-item--highlight svg { color: var(--navy); }
.rsvbt-feature-item--highlight:hover { background: rgba(1,67,128,.08); }

/* ════════════════════════════════════════════
   4. WINTERBETRIEB-TIPP
   ════════════════════════════════════════════ */
.rsvbt-tip-bar {
  background: linear-gradient(135deg, #e8f4fd 0%, #dbeafe 100%);
  border-top: 1px solid rgba(3,105,181,.15);
  border-bottom: 1px solid rgba(3,105,181,.15);
  padding: 28px 0;
}
.rsvbt-tip {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.rsvbt-tip-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.rsvbt-tip-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.rsvbt-tip-body p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
  margin: 0;
  max-width: 780px;
}

/* ════════════════════════════════════════════
   5. GALERIE
   ════════════════════════════════════════════ */
.rsvbt-gallery {
  background: var(--gray);
  padding: 80px 0;
}
.rsvbt-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.rsvbt-section-head .rsvbt-eyebrow {
  display: block;
  text-align: center;
}
.rsvbt-section-head .rsvbt-h2 { margin-bottom: 16px; }
.rsvbt-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.rsvbt-photo-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.rsvbt-photo-item--large {
  grid-column: span 1;
  grid-row: span 2;
}
.rsvbt-photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
}
.rsvbt-photo-item--large .rsvbt-photo-inner { min-height: 100%; }
.rsvbt-photo-inner img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.rsvbt-photo-item--large .rsvbt-photo-inner img { min-height: 460px; }
.rsvbt-photo-item:hover .rsvbt-photo-inner img { transform: scale(1.04); }
.rsvbt-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(6,17,30,.75) 0%, transparent 100%);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.rsvbt-photo-item:hover .rsvbt-photo-label { opacity: 1; }

/* ════════════════════════════════════════════
   6. CTA
   ════════════════════════════════════════════ */
.rsvbt-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rsvbt-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 120%, rgba(3,105,181,.3) 0%, transparent 70%);
  pointer-events: none;
}
.rsvbt-cta-content { position: relative; z-index: 1; }
.rsvbt-cta-h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 0 0 16px;
}
.rsvbt-cta-h2 em { font-style: normal; color: rgba(255,255,255,.58); }
.rsvbt-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 460px;
}
.rsvbt-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 900px) {
  .rsvbt-intro-grid { grid-template-columns: 1fr; gap: 44px; }
  .rsvbt-sub { max-width: 100%; }
  .rsvbt-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .rsvbt-photo-item--large { grid-row: span 1; }
  .rsvbt-photo-item--large .rsvbt-photo-inner img { min-height: 220px; }
}
@media (max-width: 768px) {
  .rsvbt-usp-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .rsvbt-usp { border-right: none; border-bottom: 1px solid var(--silver); }
  .rsvbt-usp:nth-child(odd) { border-right: 1px solid var(--silver); }
  .rsvbt-hero-content { padding: 80px 24px 64px; }
  .rsvbt-container { padding: 0 20px; }
  .rsvbt-tip { flex-direction: column; gap: 12px; }
}
@media (max-width: 560px) {
  .rsvbt-usp-grid { grid-template-columns: 1fr; }
  .rsvbt-usp { border-right: none; border-bottom: 1px solid var(--silver); }
  .rsvbt-usp:nth-child(odd) { border-right: none; }
  .rsvbt-feature-grid { grid-template-columns: 1fr; }
  .rsvbt-photo-grid { grid-template-columns: 1fr; }
  .rsvbt-hero { min-height: 520px; }
}




/* === FOOTER DARK THEME RESTORE + SOCIAL ICONS === */
/* Restore dark navy background */
.footer_top_holder,
footer #lang_sel > ul > li > a,
footer #lang_sel_click > ul > li > a {
  background-color: #0d1f3c !important;
}
.footer_bottom_holder,
#lang_sel_footer {
  background-color: #091628 !important;
}

/* Footer text: light on dark */
.footer_top .textwidget,
.footer_top .widget_text,
.footer_top p,
.footer_top li,
.footer_top address,
.footer_top a:not(:hover) {
  color: #b8cfe0 !important;
}
.footer_top h5,
.footer_top h4 {
  color: #ffffff !important;
}
.footer_top a:hover {
  color: #4da8ff !important;
}
.footer_top .mitglied_logo,
.footer_top .logo_img {
  filter: brightness(0) invert(1) opacity(0.6);
}
.footer_bottom_holder p,
.footer_bottom_holder a,
.footer_bottom_holder span {
  color: #7a9ab8 !important;
}

/* Hide s2Member badge */
a[href*="s2member"],
img[src*="s2member"],
.s2member-sc-bbp-badge,
.s2member-badge,
#s2member-badge,
[class*="s2member"],
[id*="s2member"] {
  display: none !important;
}

/* Social icons – einfach weiß, keine Animation */
/* Hide old plugin icons */
.sfsi_wDiv, .sfsi_holders, .sfsi_widget_set, .sfsi-icon,
.ultimate-social-icons, .usi_widget, .supsystic-social-sharing,
.widget_custom_html .sfsi_widget { display: none !important; }

.rs-social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
  align-items: center;
}
.rs-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none !important;
  opacity: 0.85;
}
.rs-social-icons a:hover {
  opacity: 1;
  color: #ffffff !important;
}
.rs-social-icons svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  display: block;
}


/* === FAQ PAGE FIXES: background + text colors === */
body.page-id-2001x,
body.page-id-2001x .content_inner,
body.page-id-2001x .content_top_margin,
body.page-id-2001x .content_inner .container,
body.page-id-2001x .content_inner .container_inner,
body.page-id-2001x .wpb_wrapper,
body.page-id-2001x .wpb_raw_code,
body.page-id-2001x .wpb_raw_html,
.faq-body {
  background-color: #07152a !important;
}
body.page-id-2001x .wpb_wrapper,
body.page-id-2001x .wpb_raw_code {
  color: #e8f0f8 !important;
}
.faq-hero, .faq-hero-kpis { color: #e8f0f8 !important; }
.faq-kpi { color: #ffffff !important; }
.faq-group, .faq-group-header { color: #e8f0f8 !important; }
.faq-q { color: #e8f0f8 !important; }
.faq-q-icon { color: #60a5fa !important; border-color: rgba(96,165,250,.3) !important; }
.faq-a { color: #b8cfe0 !important; }
.faq-item { color: #e8f0f8 !important; }
.faq-filter, .faq-filter-inner, .faq-tab { color: #ffffff !important; }


/* === KUNDENLOGIN FULL-WIDTH + LAYOUT FIX === */
body.page-id-1826 .content,
body.page-id-1826 .content_top_margin,
body.page-id-1826 .container,
body.page-id-1826 .container_inner,
body.page-id-1826 .wpb_wrapper,
body.page-id-1826 .wpb_raw_code,
body.page-id-1826 .wpb_raw_html {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  background-color: #07152a !important;
}
.kl-wrap {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  overflow-x: hidden;
}
.kl-hero h1 { word-break: break-word; overflow-wrap: break-word; }

/* FAQ: fix paragraph text colors inside answers */
.faq-a p, .faq-a li, .faq-a ul, .faq-a ol, .faq-a strong, .faq-a em { color: #b8cfe0 !important; }
.faq-a a { color: #60a5fa !important; }
/* FAQ: center the category tab bar */

/* === DARK HEADER: FAQ (2001) + Kundenlogin (1826) + Händlerportal (2439) === */
body.page-id-2001x header,
body.page-id-1826 header,
body.postid-2439 header {
  background: rgba(7, 21, 42, 0.97) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
body.page-id-2001x .header_bottom,
body.page-id-1826 .header_bottom,
body.postid-2439 .header_bottom {
  background: transparent !important;
}
body.page-id-2001x header img,
body.page-id-1826 header img,
body.postid-2439 header img { filter: brightness(0) invert(1) !important; }

body.page-id-2001x nav.main_menu > ul > li > a,
body.page-id-2001x nav.main_menu ul li a,
body.page-id-1826 nav.main_menu > ul > li > a,
body.page-id-1826 nav.main_menu ul li a,
body.postid-2439 nav.main_menu > ul > li > a,
body.postid-2439 nav.main_menu ul li a { color: rgba(255,255,255,0.88) !important; }

body.page-id-2001x nav.main_menu > ul > li.active > a,
body.page-id-1826 nav.main_menu > ul > li.active > a,
body.postid-2439 nav.main_menu > ul > li.active > a { color: #ffffff !important; }

/* === REFERENZEN: Pfeile ausblenden (nur Carousel-Buttons) === */
.rs-ref-scaffold > .rs-ref-arrow-prev,
.rs-ref-scaffold > .rs-ref-arrow-next,
.rs-ref-scaffold > .rs-ref-arrow { display: none !important; }

/* === REFERENZEN LIGHTBOX === */
.rsref-lb {
  display: none; position: fixed; inset: 0; z-index: 99999;
  flex-direction: column; background: rgba(0,0,0,0.93);
}
.rsref-lb.rsref-lb--open { display: flex; }
body.rsref-lb-active { overflow: hidden; }
.rsref-lb-backdrop {
  position: absolute; inset: 0; cursor: pointer; z-index: 0;
}
.rsref-lb-header {
  position: relative; z-index: 1; display: flex; align-items: center;
  justify-content: space-between; padding: 14px 20px; flex-shrink: 0;
}
.rsref-lb-info { display: flex; align-items: center; gap: 12px; }
.rsref-lb-title { font-size: .9rem; font-weight: 600; color: #fff; }
.rsref-lb-counter { font-size: .78rem; color: rgba(255,255,255,.45); }
.rsref-lb-close {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background .2s; line-height: 1;
}
.rsref-lb-close:hover { background: rgba(255,255,255,.22); }
.rsref-lb-stage {
  position: relative; z-index: 1; flex: 1; display: flex;
  align-items: center; justify-content: center; padding: 0 72px; overflow: hidden;
}
.rsref-lb-img-wrap {
  display: flex; align-items: center; justify-content: center;
  max-width: 100%; max-height: 100%;
}
.rsref-lb-img {
  max-width: 100%; max-height: calc(100vh - 190px);
  object-fit: contain; border-radius: 6px; display: block;
}
.rsref-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 2;
}
.rsref-lb-nav:hover { background: rgba(255,255,255,.22); }
.rsref-lb-prev { left: 14px; }
.rsref-lb-next { right: 14px; }
.rsref-lb-thumbs {
  position: relative; z-index: 1; display: flex; gap: 6px;
  justify-content: center; padding: 10px 20px 14px; overflow-x: auto; flex-shrink: 0;
}
.rsref-lb-thumb {
  width: 56px; height: 42px; object-fit: cover; border-radius: 4px;
  cursor: pointer; opacity: .45; transition: opacity .2s; flex-shrink: 0;
  border: 2px solid transparent;
}
.rsref-lb-thumb:hover { opacity: .75; }
.rsref-lb-thumb.rsref-lb-thumb--active { opacity: 1; border-color: #60a5fa; }

/* === FAQ: Tab-Leiste zentrieren (einfach) === */
body.page-id-2001x .faq-filter {
  width: auto !important;
  left: auto !important;
  transform: none !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
}
body.page-id-2001x .faq-filter-inner {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  flex: 0 1 1100px !important;
  gap: 8px !important;
  padding: 12px 0 !important;
  max-width: 1100px !important;
  overflow: visible !important;
}

/* === DARK HEADER: Händlerportal (postid-2439) === */
body.postid-2439 header {
  background: rgba(7, 21, 42, 0.97) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
body.postid-2439 nav.main_menu > ul > li > a,
body.postid-2439 nav.main_menu ul li a,
body.postid-2439 nav.main_menu ul li:hover a,
body.postid-2439 nav.main_menu > ul > li.active > a { color: rgba(255,255,255,0.88) !important; }
body.postid-2439 header img { filter: brightness(0) invert(1) !important; }

/* ════════════════════════════════════════════════════
   KARRIERE SEITE (page-id-191) — rska- prefix
   ════════════════════════════════════════════════════ */
body.page-id-191 .wpb_raw_html { font-family: Inter, system-ui, -apple-system, sans-serif; }
body.page-id-191 .rska-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }

/* ── Scroll Reveal ── */
body.page-id-191 .rs14-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
body.page-id-191 .rs14-reveal.visible { opacity: 1; transform: none; }
body.page-id-191 .rs14-reveal-d1 { transition-delay: .1s; }
body.page-id-191 .rs14-reveal-d2 { transition-delay: .2s; }
body.page-id-191 .rs14-reveal-d3 { transition-delay: .3s; }
body.page-id-191 .rs14-reveal-d4 { transition-delay: .4s; }

/* ── Typography ── */
body.page-id-191 .rska-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #60a5fa; margin: 0 0 14px; }
body.page-id-191 .rska-eyebrow--light { color: #93c5fd; }
body.page-id-191 .rska-h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.03em; margin: 0 0 20px; }
body.page-id-191 .rska-h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #07152a; line-height: 1.15; letter-spacing: -.025em; margin: 0 0 16px; }
body.page-id-191 .rska-h2 em, body.page-id-191 .rska-h2--light em { font-style: normal; color: #60a5fa; }
body.page-id-191 .rska-h2--light { color: #fff; }
body.page-id-191 .rska-section-sub { font-size: 17px; color: #4a6079; line-height: 1.7; max-width: 560px; margin: 0 auto; }
body.page-id-191 .rska-section-sub--light { color: rgba(255,255,255,.6); }
body.page-id-191 .rska-section-head { text-align: center; margin-bottom: 56px; }

/* ── Buttons ── */
body.page-id-191 .rska-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 12px; text-decoration: none; transition: all .2s; cursor: pointer; border: none; }
body.page-id-191 .rska-btn--primary { background: #60a5fa; color: #07152a; box-shadow: 0 8px 24px rgba(96,165,250,.35); }
body.page-id-191 .rska-btn--primary:hover { background: #93c5fd; transform: translateY(-2px); }
body.page-id-191 .rska-btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.2); }
body.page-id-191 .rska-btn--ghost:hover { background: rgba(255,255,255,.14); }
body.page-id-191 .rska-btn--white { background: #fff; color: #07152a; }
body.page-id-191 .rska-btn--ghost-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
body.page-id-191 .rska-btn--ghost-white:hover { background: rgba(255,255,255,.08); }

/* ── HERO ── */
body.page-id-191 .rska-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: #07152a; padding: 140px 0 80px; box-sizing: border-box; }
body.page-id-191 .rska-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 60% 40%, #0d3060 0%, #07152a 70%); }
body.page-id-191 .rska-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, #07152a 100%); }
body.page-id-191 .rska-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .25; pointer-events: none; }
body.page-id-191 .rska-orb--1 { width: 500px; height: 500px; background: #60a5fa; top: -100px; right: 10%; }
body.page-id-191 .rska-orb--2 { width: 300px; height: 300px; background: #34d399; bottom: 10%; left: 5%; }
body.page-id-191 .rska-orb--3 { width: 200px; height: 200px; background: #818cf8; top: 30%; right: 30%; }
body.page-id-191 .rska-hero-badge { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: rgba(96,165,250,.15); border: 1px solid rgba(96,165,250,.3); color: #93c5fd; font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 100px; margin-bottom: 28px; }
body.page-id-191 .rska-badge-dot { width: 8px; height: 8px; background: #34d399; border-radius: 50%; display: inline-block; }
body.page-id-191 .rska-badge-dot--pulse { animation: rska-pulse 1.5s infinite; }
@keyframes rska-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
body.page-id-191 .rska-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
body.page-id-191 .rska-hero-sub { font-size: 18px; color: rgba(255,255,255,.65); line-height: 1.7; margin: 0 0 32px; max-width: 480px; }
body.page-id-191 .rska-hero-stats { display: flex; align-items: center; gap: 0; margin: 32px 0 40px; flex-wrap: wrap; }
body.page-id-191 .rska-hstat { padding: 0 20px; }
body.page-id-191 .rska-hstat:first-child { padding-left: 0; }
body.page-id-191 .rska-hstat-val { display: block; font-size: 22px; font-weight: 800; color: #fff; }
body.page-id-191 .rska-hstat-label { display: block; font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }
body.page-id-191 .rska-hstat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.15); }
body.page-id-191 .rska-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
body.page-id-191 .rska-video-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,.5); }
body.page-id-191 .rska-video-badge { position: absolute; top: 16px; left: 16px; background: rgba(0,0,0,.5); backdrop-filter: blur(8px); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; z-index: 2; }
body.page-id-191 .rska-video-shimmer { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, transparent 50%); pointer-events: none; }
body.page-id-191 .rska-scroll-arrow { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.4); z-index: 2; animation: rska-bounce .8s ease-in-out infinite alternate; }
@keyframes rska-bounce { from{transform:translateX(-50%) translateY(0)} to{transform:translateX(-50%) translateY(8px)} }

/* ── WHY ── */
body.page-id-191 .rska-why { padding: 96px 0; background: #f8fafc; }
body.page-id-191 .rska-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
body.page-id-191 .rska-why-card { background: #fff; border: 1px solid #e2eaf3; border-radius: 20px; padding: 32px 28px; transition: all .25s; box-shadow: 0 2px 12px rgba(7,21,42,.06); }
body.page-id-191 .rska-why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(7,21,42,.12); }
body.page-id-191 .rska-why-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
body.page-id-191 .rska-why-icon--teal { background: rgba(52,211,153,.12); color: #10b981; }
body.page-id-191 .rska-why-icon--blue { background: rgba(96,165,250,.12); color: #3b82f6; }
body.page-id-191 .rska-why-icon--amber { background: rgba(251,191,36,.12); color: #f59e0b; }
body.page-id-191 .rska-why-icon--green { background: rgba(34,197,94,.12); color: #16a34a; }
body.page-id-191 .rska-why-card h3 { font-size: 18px; font-weight: 700; color: #07152a; margin: 0 0 10px; }
body.page-id-191 .rska-why-card p { font-size: 15px; color: #5a7080; line-height: 1.65; margin: 0; }

/* ── AWARDS ── */
body.page-id-191 .rska-awards { padding: 56px 0; background: #fff; border-top: 1px solid #e9f0f8; border-bottom: 1px solid #e9f0f8; }
body.page-id-191 .rska-awards-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
body.page-id-191 .rska-awards-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #8fa5bc; }
body.page-id-191 .rska-awards-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
body.page-id-191 .rska-award-badge { background: #f1f6fb; border: 1px solid #dce8f5; border-radius: 16px; padding: 16px 22px; text-align: center; min-width: 120px; }
body.page-id-191 .rska-award-badge--featured { background: linear-gradient(135deg, #07152a 0%, #0d2247 100%); border-color: transparent; }
body.page-id-191 .rska-award-title { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #6b8299; margin-bottom: 4px; }
body.page-id-191 .rska-award-badge--featured .rska-award-title { color: rgba(255,255,255,.55); }
body.page-id-191 .rska-award-year { display: block; font-size: 22px; font-weight: 800; color: #07152a; }
body.page-id-191 .rska-award-year--gold { color: #f59e0b; }
body.page-id-191 .rska-award-year--silver { color: #8fa5bc; }
body.page-id-191 .rska-award-year--teal { color: #34d399; }
body.page-id-191 .rska-award-stars { color: #fbbf24; font-size: 14px; margin-top: 4px; }
body.page-id-191 .rska-kununu-logo { display: block; font-size: 12px; font-weight: 800; color: #60a5fa; letter-spacing: .05em; margin-bottom: 6px; }
body.page-id-191 .rska-award-sub { display: block; font-size: 10px; color: #8fa5bc; margin-top: 4px; }
body.page-id-191 .rska-awards-score { font-size: 28px; font-weight: 800; color: #07152a; text-align: center; }
body.page-id-191 .rska-awards-score span { display: block; font-size: 11px; font-weight: 500; color: #8fa5bc; margin-top: 4px; }

/* ── BENEFITS ── */
body.page-id-191 .rska-benefits { position: relative; padding: 96px 0; overflow: hidden; }
body.page-id-191 .rska-benefits-bg { position: absolute; inset: 0; background: linear-gradient(150deg, #0b1e3a 0%, #07152a 100%); }
body.page-id-191 .rska-benefits .rska-container { position: relative; z-index: 1; }
body.page-id-191 .rska-benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
body.page-id-191 .rska-benefit { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 28px 24px; transition: all .25s; }
body.page-id-191 .rska-benefit:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
body.page-id-191 .rska-benefit-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
body.page-id-191 .rska-benefit-icon--teal { background: rgba(52,211,153,.15); color: #34d399; }
body.page-id-191 .rska-benefit-icon--blue { background: rgba(96,165,250,.15); color: #60a5fa; }
body.page-id-191 .rska-benefit-icon--amber { background: rgba(251,191,36,.15); color: #fbbf24; }
body.page-id-191 .rska-benefit-icon--purple { background: rgba(167,139,250,.15); color: #a78bfa; }
body.page-id-191 .rska-benefit-icon--green { background: rgba(34,197,94,.15); color: #4ade80; }
body.page-id-191 .rska-benefit-text h3 { font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 6px; }
body.page-id-191 .rska-benefit-text p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; margin: 0; }

/* ── PROCESS ── */
body.page-id-191 .rska-process { padding: 96px 0; background: #f8fafc; }
body.page-id-191 .rska-process-steps { display: flex; gap: 0; align-items: flex-start; flex-wrap: wrap; }
body.page-id-191 .rska-process-step { flex: 1; min-width: 150px; text-align: center; padding: 0 16px; position: relative; }
body.page-id-191 .rska-ps-num { width: 48px; height: 48px; border-radius: 50%; background: #07152a; color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
body.page-id-191 .rska-ps-line { position: absolute; top: 24px; left: calc(50% + 24px); right: calc(-50% + 24px); height: 2px; background: #d1dce8; }
body.page-id-191 .rska-process-step:last-child .rska-ps-line { display: none; }
body.page-id-191 .rska-ps-icon { color: #60a5fa; margin-bottom: 12px; }
body.page-id-191 .rska-process-step h3 { font-size: 15px; font-weight: 700; color: #07152a; margin: 0 0 8px; }
body.page-id-191 .rska-process-step p { font-size: 13px; color: #5a7080; line-height: 1.6; margin: 0; }
body.page-id-191 .rska-process-connector { flex: 0 0 40px; align-self: center; text-align: center; color: #d1dce8; margin-top: -48px; }

/* ── JOBS CTA ── */
body.page-id-191 .rska-jobs { position: relative; padding: 96px 0; overflow: hidden; }
body.page-id-191 .rska-jobs-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #07152a 0%, #0f2a50 100%); }
body.page-id-191 .rska-jobs-inner { position: relative; z-index: 1; text-align: center; }
body.page-id-191 .rska-jobs-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.25); color: #34d399; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 100px; margin-bottom: 24px; }
body.page-id-191 .rska-cta-h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.025em; margin: 0 0 16px; }
body.page-id-191 .rska-cta-sub { font-size: 17px; color: rgba(255,255,255,.6); max-width: 480px; margin: 0 auto 40px; line-height: 1.65; }
body.page-id-191 .rska-jobs-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT STRIP ── */
body.page-id-191 .rska-contact-strip { padding: 36px 0; background: #07152a; border-top: 1px solid rgba(255,255,255,.08); }
body.page-id-191 .rska-contact-strip .rska-container { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
body.page-id-191 .rska-contact-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.65); font-size: 14px; text-decoration: none; }
body.page-id-191 .rska-contact-item:hover { color: #fff; }
body.page-id-191 .rska-contact-sep { color: rgba(255,255,255,.2); font-size: 18px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  body.page-id-191 .rska-hero-inner { grid-template-columns: 1fr; }
  body.page-id-191 .rska-hero-visual { display: none; }
  body.page-id-191 .rska-hero { min-height: auto; padding: 120px 0 60px; }
  body.page-id-191 .rska-process-steps { flex-direction: column; align-items: center; }
  body.page-id-191 .rska-ps-line { display: none; }
}

/* ════ LEITBILD / UNTERNEHMENSKULTUR (page-id-8500) — rslb- prefix ════ */
body.page-id-8500 .wpb_raw_html { font-family: Inter, system-ui, -apple-system, sans-serif; }

/* Scroll reveal */
body.page-id-8500 .rs15-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
body.page-id-8500 .rs15-reveal.visible { opacity: 1; transform: none; }
body.page-id-8500 .rs15-reveal-d1 { transition-delay: .1s; }
body.page-id-8500 .rs15-reveal-d2 { transition-delay: .2s; }
body.page-id-8500 .rs15-reveal-d3 { transition-delay: .3s; }
body.page-id-8500 .rs15-reveal-d4 { transition-delay: .4s; }

/* Container */
body.page-id-8500 .rslb-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }

/* ── HERO ─────────────────────────────────────────────── */
body.page-id-8500 .rslb-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: #07152a; padding: 140px 0 80px; box-sizing: border-box; }
body.page-id-8500 .rslb-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 55% 40%, #0d3d1a 0%, #07152a 65%); }
body.page-id-8500 .rslb-hero-overlay { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }

/* Floating leaf decorations */
body.page-id-8500 .rslb-leaf { position: absolute; border-radius: 50% 0 50% 0; opacity: .06; pointer-events: none; }
body.page-id-8500 .rslb-leaf--1 { width: 500px; height: 500px; background: linear-gradient(135deg, #16a34a, transparent); top: -100px; right: -100px; transform: rotate(-20deg); }
body.page-id-8500 .rslb-leaf--2 { width: 300px; height: 300px; background: linear-gradient(135deg, #0891b2, transparent); bottom: 100px; left: -50px; transform: rotate(30deg); }
body.page-id-8500 .rslb-leaf--3 { width: 200px; height: 200px; background: linear-gradient(135deg, #d97706, transparent); top: 40%; right: 10%; transform: rotate(15deg); }

/* Hero inner layout */
body.page-id-8500 .rslb-hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
body.page-id-8500 .rslb-hero-text { max-width: 760px; }

/* Badge */
body.page-id-8500 .rslb-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.35); color: #4ade80; border-radius: 100px; padding: 6px 14px; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 24px; }

/* Headings */
body.page-id-8500 .rslb-h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; color: #fff; margin: 0 0 20px; letter-spacing: -.02em; }
body.page-id-8500 .rslb-hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.7); line-height: 1.6; margin: 0 0 28px; max-width: 620px; }

/* Pills */
body.page-id-8500 .rslb-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
body.page-id-8500 .rslb-pill { padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
body.page-id-8500 .rslb-pill--green { background: rgba(22,163,74,.2); color: #4ade80; border: 1px solid rgba(22,163,74,.35); }
body.page-id-8500 .rslb-pill--blue { background: rgba(59,130,246,.2); color: #93c5fd; border: 1px solid rgba(59,130,246,.35); }
body.page-id-8500 .rslb-pill--teal { background: rgba(8,145,178,.2); color: #67e8f9; border: 1px solid rgba(8,145,178,.35); }
body.page-id-8500 .rslb-pill--gold { background: rgba(217,119,6,.2); color: #fcd34d; border: 1px solid rgba(217,119,6,.35); }

/* Stats */
body.page-id-8500 .rslb-hero-stats { display: flex; flex-wrap: wrap; gap: 32px; }
body.page-id-8500 .rslb-stat { display: flex; flex-direction: column; gap: 2px; }
body.page-id-8500 .rslb-stat-val { font-size: 1.9rem; font-weight: 800; color: #4ade80; letter-spacing: -.02em; }
body.page-id-8500 .rslb-stat-label { font-size: 11px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }

/* Scroll arrow */
body.page-id-8500 .rslb-scroll-arrow { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.4); animation: rslb-bounce 2s infinite; z-index: 3; }
@keyframes rslb-bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── QUOTE ─────────────────────────────────────────────── */
body.page-id-8500 .rslb-quote { background: #f0fdf4; padding: 80px 0; }
body.page-id-8500 .rslb-quote-inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 840px; margin: 0 auto; gap: 16px; }
body.page-id-8500 .rslb-quote-mark { font-size: 5rem; line-height: 1; color: #16a34a; font-family: Georgia, serif; opacity: .5; }
body.page-id-8500 .rslb-blockquote { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 500; color: #0f172a; line-height: 1.6; margin: 0; font-style: italic; }
body.page-id-8500 .rslb-cite { font-size: 14px; color: #64748b; font-style: normal; font-weight: 600; }

/* ── VALUES ─────────────────────────────────────────────── */
body.page-id-8500 .rslb-values { background: #fff; padding: 96px 0; }
body.page-id-8500 .rslb-section-head { text-align: center; margin-bottom: 56px; }
body.page-id-8500 .rslb-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #16a34a; margin-bottom: 12px; }
body.page-id-8500 .rslb-h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; color: #0f172a; margin: 0 0 12px; letter-spacing: -.02em; }
body.page-id-8500 .rslb-section-sub { font-size: 1.05rem; color: #64748b; line-height: 1.6; max-width: 560px; margin: 0 auto; }
body.page-id-8500 .rslb-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
body.page-id-8500 .rslb-value-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 32px; position: relative; transition: transform .3s ease, box-shadow .3s ease; }
body.page-id-8500 .rslb-value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
body.page-id-8500 .rslb-value-num { font-size: 3rem; font-weight: 900; color: #e2e8f0; line-height: 1; margin-bottom: 16px; font-variant-numeric: tabular-nums; }
body.page-id-8500 .rslb-value-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
body.page-id-8500 .rslb-value-icon--blue { background: rgba(59,130,246,.12); color: #3b82f6; }
body.page-id-8500 .rslb-value-icon--teal { background: rgba(8,145,178,.12); color: #0891b2; }
body.page-id-8500 .rslb-value-icon--gold { background: rgba(217,119,6,.12); color: #d97706; }
body.page-id-8500 .rslb-value-card h3 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 0 0 8px; }
body.page-id-8500 .rslb-value-card p { font-size: .92rem; color: #64748b; line-height: 1.6; margin: 0 0 16px; }
body.page-id-8500 .rslb-value-tag { display: inline-block; font-size: 11px; font-weight: 600; background: #e0f2fe; color: #0369a1; border-radius: 100px; padding: 3px 10px; letter-spacing: .04em; }

/* ── SUSTAIN (dark) ─────────────────────────────────────── */
body.page-id-8500 .rslb-sustain { position: relative; background: #07152a; padding: 96px 0; overflow: hidden; }
body.page-id-8500 .rslb-sustain-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 80% 50%, #0d3d1a 0%, #07152a 70%); }
body.page-id-8500 .rslb-sustain-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
body.page-id-8500 .rslb-sustain-text { color: #fff; }
body.page-id-8500 .rslb-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #4ade80; margin-bottom: 12px; }
body.page-id-8500 .rslb-h2--light { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin: 0 0 16px; letter-spacing: -.02em; }
body.page-id-8500 .rslb-sustain-body { font-size: 1rem; color: rgba(255,255,255,.7); line-height: 1.7; margin: 0 0 32px; }
body.page-id-8500 .rslb-sustain-items { display: flex; flex-direction: column; gap: 20px; }
body.page-id-8500 .rslb-sustain-item { display: flex; align-items: flex-start; gap: 14px; }
body.page-id-8500 .rslb-si-icon { width: 38px; height: 38px; background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #4ade80; }
body.page-id-8500 .rslb-sustain-item strong { display: block; font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
body.page-id-8500 .rslb-sustain-item span { font-size: .85rem; color: rgba(255,255,255,.55); }

/* PV card (visual panel) */
body.page-id-8500 .rslb-sustain-visual { display: flex; flex-direction: column; gap: 16px; }
body.page-id-8500 .rslb-pv-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 24px; }
body.page-id-8500 .rslb-pv-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
body.page-id-8500 .rslb-pv-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); }
body.page-id-8500 .rslb-pv-big { font-size: 2.4rem; font-weight: 900; color: #4ade80; letter-spacing: -.03em; }
body.page-id-8500 .rslb-pv-sub { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }
body.page-id-8500 .rslb-pv-bar-wrap { margin-bottom: 8px; }
body.page-id-8500 .rslb-pv-bar-label { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
body.page-id-8500 .rslb-pv-bar { height: 8px; background: rgba(255,255,255,.08); border-radius: 100px; overflow: hidden; }
body.page-id-8500 .rslb-pv-bar-fill { height: 100%; background: linear-gradient(90deg, #16a34a, #4ade80); border-radius: 100px; }
body.page-id-8500 .rslb-pv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
body.page-id-8500 .rslb-pv-metric { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 12px; }
body.page-id-8500 .rslb-pvm-val { font-size: 1.3rem; font-weight: 800; color: #4ade80; }
body.page-id-8500 .rslb-pvm-label { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; }

/* ── PILLARS ─────────────────────────────────────────────── */
body.page-id-8500 .rslb-pillars { background: #f8fafc; padding: 96px 0; }
body.page-id-8500 .rslb-pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 0; }
body.page-id-8500 .rslb-pillar { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 32px; transition: transform .3s ease, box-shadow .3s ease; }
body.page-id-8500 .rslb-pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
body.page-id-8500 .rslb-pillar-num { font-size: 2.5rem; font-weight: 900; color: #e2e8f0; line-height: 1; margin-bottom: 12px; }
body.page-id-8500 .rslb-pillar-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
body.page-id-8500 .rslb-pillar-icon--green { background: rgba(22,163,74,.12); color: #16a34a; }
body.page-id-8500 .rslb-pillar-icon--blue { background: rgba(59,130,246,.12); color: #3b82f6; }
body.page-id-8500 .rslb-pillar-icon--amber { background: rgba(217,119,6,.12); color: #d97706; }
body.page-id-8500 .rslb-pillar h3 { font-size: 1.2rem; font-weight: 700; color: #0f172a; margin: 0 0 12px; }
body.page-id-8500 .rslb-pillar-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
body.page-id-8500 .rslb-pillar-list li { font-size: .9rem; color: #475569; line-height: 1.5; padding-left: 16px; position: relative; }
body.page-id-8500 .rslb-pillar-list li::before { content: '→'; position: absolute; left: 0; color: #16a34a; font-size: 12px; }

/* ── TIMELINE (dark) ─────────────────────────────────────── */
body.page-id-8500 .rslb-timeline { position: relative; background: #07152a; padding: 96px 0; overflow: hidden; }
body.page-id-8500 .rslb-timeline-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 20% 50%, #0d2e5e 0%, #07152a 70%); }
body.page-id-8500 .rslb-eyebrow--light { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #93c5fd; margin-bottom: 12px; }
body.page-id-8500 .rslb-timeline .rslb-section-head { position: relative; z-index: 2; }
body.page-id-8500 .rslb-timeline .rslb-h2 { color: #fff; }
body.page-id-8500 .rslb-timeline .rslb-section-sub { color: rgba(255,255,255,.6); }

/* Timeline track */
body.page-id-8500 .rslb-tl-track { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
body.page-id-8500 .rslb-tl-line { position: absolute; left: 20px; top: 20px; bottom: 20px; width: 2px; background: rgba(255,255,255,.1); }
body.page-id-8500 .rslb-tl-item { display: flex; gap: 24px; align-items: flex-start; padding: 12px 0; position: relative; }
body.page-id-8500 .rslb-tl-dot { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.15); flex-shrink: 0; display: flex; align-items: center; justify-content: center; z-index: 1; transition: all .3s ease; }
body.page-id-8500 .rslb-tl-dot--active { background: rgba(59,130,246,.25); border-color: #3b82f6; box-shadow: 0 0 0 4px rgba(59,130,246,.15); }
body.page-id-8500 .rslb-tl-dot--future { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
body.page-id-8500 .rslb-tl-card { flex: 1; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 18px 20px; margin-bottom: 8px; transition: all .3s ease; }
body.page-id-8500 .rslb-tl-card--active { background: rgba(59,130,246,.08); border-color: rgba(59,130,246,.25); }
body.page-id-8500 .rslb-tl-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 4px; }
body.page-id-8500 .rslb-tl-card p { font-size: .88rem; color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }
body.page-id-8500 .rslb-tl-year { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em; display: flex; align-items: center; justify-content: center; }
body.page-id-8500 .rslb-tl-year--active { color: #93c5fd; }

/* ── CTA ─────────────────────────────────────────────── */
body.page-id-8500 .rslb-cta { background: linear-gradient(135deg, #07152a 0%, #0d3d1a 100%); padding: 96px 0; position: relative; overflow: hidden; }
body.page-id-8500 .rslb-cta-inner { text-align: center; position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
body.page-id-8500 .rslb-cta-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.35); color: #4ade80; border-radius: 100px; padding: 6px 16px; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 24px; }
body.page-id-8500 .rslb-cta-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; margin: 0 0 16px; letter-spacing: -.02em; }
body.page-id-8500 .rslb-cta-sub { font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0 0 36px; }
body.page-id-8500 .rslb-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
body.page-id-8500 .rslb-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all .2s ease; border: none; }
body.page-id-8500 .rslb-btn--primary { background: linear-gradient(135deg, #16a34a, #4ade80); color: #fff; box-shadow: 0 4px 16px rgba(22,163,74,.35); }
body.page-id-8500 .rslb-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,.45); }
body.page-id-8500 .rslb-btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
body.page-id-8500 .rslb-btn--outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.05); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  body.page-id-8500 .rslb-sustain-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  body.page-id-8500 .rslb-values-grid,
  body.page-id-8500 .rslb-pillars-grid { grid-template-columns: 1fr; }
  body.page-id-8500 .rslb-hero-stats { gap: 20px; }
  body.page-id-8500 .rslb-h1 { font-size: 2rem; }
  body.page-id-8500 .rslb-tl-track { padding-left: 0; }
}
/* ════ END LEITBILD (page-id-8500) ════ */


/* ════ FULLSCREEN FIX — Karriere / Leitbild / Presse (container_inner breakout) ════ */
body.page-id-191 .container_inner.default_template_holder,
body.page-id-191 .wpb-content-wrapper,
body.page-id-191 .vc_row.wpb_row,
body.page-id-191 .full_section_inner.clearfix,
body.page-id-191 .vc_column_container,
body.page-id-191 .vc_column-inner,
body.page-id-191 .wpb_wrapper,
body.page-id-8500 .container_inner.default_template_holder,
body.page-id-8500 .wpb-content-wrapper,
body.page-id-8500 .vc_row.wpb_row,
body.page-id-8500 .full_section_inner.clearfix,
body.page-id-8500 .vc_column_container,
body.page-id-8500 .vc_column-inner,
body.page-id-8500 .wpb_wrapper,
body.page-id-1521 .container_inner.default_template_holder,
body.page-id-1521 .wpb-content-wrapper,
body.page-id-1521 .vc_row.wpb_row,
body.page-id-1521 .full_section_inner.clearfix,
body.page-id-1521 .vc_column_container,
body.page-id-1521 .vc_column-inner,
body.page-id-1521 .wpb_wrapper {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}
/* ════ END FULLSCREEN FIX ════ */


/* ════ FULLSCREEN FIX — Karriere / Leitbild / Presse (container_inner breakout) ════ */
body.page-id-191 .container_inner.default_template_holder,
body.page-id-191 .wpb-content-wrapper,
body.page-id-191 .vc_row.wpb_row,
body.page-id-191 .full_section_inner.clearfix,
body.page-id-191 .vc_column_container,
body.page-id-191 .vc_column-inner,
body.page-id-191 .wpb_wrapper,
body.page-id-8500 .container_inner.default_template_holder,
body.page-id-8500 .wpb-content-wrapper,
body.page-id-8500 .vc_row.wpb_row,
body.page-id-8500 .full_section_inner.clearfix,
body.page-id-8500 .vc_column_container,
body.page-id-8500 .vc_column-inner,
body.page-id-8500 .wpb_wrapper,
body.page-id-1521 .container_inner.default_template_holder,
body.page-id-1521 .wpb-content-wrapper,
body.page-id-1521 .vc_row.wpb_row,
body.page-id-1521 .full_section_inner.clearfix,
body.page-id-1521 .vc_column_container,
body.page-id-1521 .vc_column-inner,
body.page-id-1521 .wpb_wrapper {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}
/* ════ END FULLSCREEN FIX ════ */

/* ════ KARRIERE FIXES — badge hide, hstat fix, contact strip hide ════ */
/* Remove top badge "Wir stellen ein — jetzt bewerben" */
body.page-id-191 .rska-hero-badge { display: none !important; }

/* Remove contact strip at bottom of jobs section */
body.page-id-191 .rska-contact-strip { display: none !important; }

/* Fix factbox / hero stats (actual class is rska-hstat-*, not rska-stat-*) */
body.page-id-191 .rska-hero-stats { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 8px; }
body.page-id-191 .rska-hstat { display: flex; flex-direction: column; gap: 2px; }
body.page-id-191 .rska-hstat-val { font-size: 1.9rem; font-weight: 800; color: #4fc3f7; letter-spacing: -.02em; font-family: Inter, system-ui, sans-serif; }
body.page-id-191 .rska-hstat-label { font-size: 11px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; font-family: Inter, system-ui, sans-serif; }
body.page-id-191 .rska-hstat-sep { display: none; }

/* ── Karriere: benefit-text Farbe fix ── */
body.page-id-191 .rska-benefit-text strong { color: #fff !important; font-weight: 600; }
body.page-id-191 .rska-benefit-text span { color: rgba(255,255,255,.75) !important; font-size: 13px; line-height: 1.5; }
/* ── Karriere: scroll-arrow, global-stat, video-frame ── */
body.page-id-191 .rska-scroll-arrow { display: none !important; }
body.page-id-191 .rska-hstat:last-child { display: none !important; }
body.page-id-191 .rska-video-wrap { width: 520px !important; max-width: 520px !important; }
body.page-id-191 .rska-video-frame { width: 520px !important; height: 320px !important; border-radius: 16px; overflow: hidden; }
/* ── Presse: scroll-arrow ── */
body.page-id-1521 .rspr-scroll-arrow { display: none !important; }


/* ── Unternehmen: tiles 4-col row ── */
body.page-id-187 .rs-tiles { grid-template-columns: repeat(4, 1fr) !important; }

/* ── Unternehmen: stats 3-col row ── */
body.page-id-187 .rs-stats__grid { grid-template-columns: repeat(3, 1fr) !important; }
/* ════ END KARRIERE FIXES ════ */

/* ══════════════════════════════════════════════════════
   NAV-FIX — Dropdown sichtbar bei Hover (CSS-only)
   Kubi-JS bindet keine hover-Events mehr → reines CSS
   ══════════════════════════════════════════════════════ */
nav.main_menu ul li.has_sub:hover > ul,
header.scroll_header_top_area nav.main_menu ul li.has_sub:hover > ul {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}
/*RSD25S*/ body .footer_top_holder{background-color:#00264e!important} body .footer_bottom_holder{background-color:#00264e!important} body .footer_top_holder .widget_nav_menu li a,body .footer_top_holder .widget ul li a,body .footer_top_holder .textwidget a,body .footer_top_holder .mail-link a{color:#ffffff!important} body .footer_top_holder .widget_nav_menu li a:hover,body .footer_top_holder .widget ul li a:hover,body .footer_top_holder .textwidget a:hover{color:#dce168!important} body .footer_bottom_holder,body .footer_bottom_holder p,body .footer_bottom_holder span{color:#e6ecf5!important} body .footer_bottom_holder a{color:#ffffff!important} body .footer_bottom_holder a:hover{color:#dce168!important} body .scroll_header_top_area.scrolled_not_transparent:not(.scrolled) .main_menu>ul>li>a{color:#003264!important} body .scroll_header_top_area.scrolled_not_transparent:not(.scrolled) .main_menu>ul>li:hover>a{color:#3a6ea5!important} body .scroll_header_top_area.scrolled,body .scroll_header_top_area.scrolled .header_bottom,body .scroll_header_top_area.scrolled .header_top_bottom_holder{background-color:#003264!important} body .scroll_header_top_area.scrolled .main_menu>ul>li>a,body .scroll_header_top_area.scrolled .main_menu a,body .scroll_header_top_area.scrolled .main_menu li>a{color:#ffffff!important} body .scroll_header_top_area.scrolled .main_menu>ul>li:hover>a{color:#dce168!important} body .footer_top_holder .widget_text .textwidget,body .footer_top_holder .widget_text .textwidget *,body .footer_top_holder .textwidget,body .footer_top_holder .textwidget *{color:#ffffff!important} body #nav-menu-item-7743>a{border:2px solid #003264!important;border-radius:22px!important;height:42px!important;line-height:38px!important;padding-top:0!important;padding-bottom:0!important;display:inline-block!important;margin-top:29px!important;transition:background .2s,color .2s,border-color .2s!important} body #nav-menu-item-7743>a:hover{background:#003264!important;color:#fff!important} body .scroll_header_top_area.scrolled #nav-menu-item-7743>a{border-color:#fff!important;margin-top:24px!important} body .scroll_header_top_area.scrolled #nav-menu-item-7743>a:hover{background:#fff!important;color:#003264!important} body .main_menu>ul>li>a{padding-left:13px!important;padding-right:13px!important} body .footer_top_holder .widget_text .textwidget a:hover,body .footer_top_holder .mail-link:hover{color:#dce168!important} body .rsm-cta{box-sizing:border-box!important;background:linear-gradient(135deg,#003264,#00264e)!important} body .rsft-badges .rsft-badge:nth-child(2){display:none!important} body .footer_top_holder h3,body .footer_top_holder .widget>h3,body .footer_top_holder .widget-title{color:#dce168!important} body .footer_top_holder .widget h3,body .footer_top_holder .column_inner h3{color:#dce168!important} /*RSD25E*/