/*
Theme Name:  JupiterX Child
Theme URI:
Description: Child Theme fuer JupiterX - Kattner Tuertechnik
Author:      Kattner Tuertechnik
Template:    jupiterx
Version:     1.0.4
Text Domain: jupiterx-child
License:     GNU General Public License v2 or later
*/

/* ???????????????????????????????????????????????????
   TOKENS
??????????????????????????????????????????????????? */
:root {
  --kt-red:        #CC2B2B;
  --kt-navy:       #1B3054;
  --kt-black:      #1C1C1C;
  --kt-off-white:  #F8F7F5;
  --kt-light-gray: #EEEDE9;
  --kt-mid-gray:   #8A8A8A;
  --kt-white:      #FFFFFF;
  --kt-dark:       #141414;
  --kt-radius:     4px;
  --kt-transition: 0.25s ease;
  --kt-max-width:  1140px;
}

/* ???????????????????????????????????????????????????
   BASE
??????????????????????????????????????????????????? */
html { scroll-behavior: smooth; }
body { background: var(--kt-off-white); color: var(--kt-black); -webkit-font-smoothing: antialiased; }
*, *::before, *::after { box-sizing: border-box; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ???????????????????????????????????????????????????
   ELEMENTOR CANVAS - kein Theme-Padding
??????????????????????????????????????????????????? */
.elementor-section-wrap { padding: 0 !important; }
.elementor > .elementor-inner { padding: 0; }
.elementor-section { margin: 0; }

/* Container-Breite auf max-width setzen */
.elementor-container { max-width: var(--kt-max-width) !important; padding: 0 32px !important; }

/* ???????????????????????????????????????????????????
   NAVIGATION
??????????????????????????????????????????????????? */
.kt-nav-section .elementor-container { max-width: 100% !important; padding: 0 !important; }

.kt-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(248,247,245,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow var(--kt-transition);
}
.kt-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.kt-nav-inner {
  max-width: var(--kt-max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.kt-nav-logo svg { height: 42px; width: auto; }
.kt-nav-logo img { height: 42px; width: auto; display: block; }
.kt-nav-links {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 36px;
}
.kt-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--kt-black);
  letter-spacing: 0.02em;
  transition: color var(--kt-transition);
}
.kt-nav-links a:hover { color: var(--kt-red); }
.kt-nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--kt-navy);
  white-space: nowrap;
  transition: color var(--kt-transition);
}
.kt-nav-phone:hover { color: var(--kt-red); }

/* ???????????????????????????????????????????????????
   HERO
??????????????????????????????????????????????????? */
.kt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.kt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,rgba(28,28,28,0.92) 0%,rgba(27,48,84,0.78) 55%,rgba(28,28,28,0.65) 100%);
  z-index: 1;
}
.kt-hero .elementor-container,
.kt-hero .elementor-column-wrap,
.kt-hero .elementor-widget-wrap { position: relative; z-index: 2; }

.kt-hero .elementor-container { padding-top: 120px !important; padding-bottom: 80px !important; }

.kt-hero-title { font-size: clamp(52px, 7vw, 96px) !important; font-weight: 800 !important; color: var(--kt-white) !important; line-height: 1.05 !important; letter-spacing: -0.03em !important; margin-bottom: 24px !important; }
.kt-hero-title h1 { font-size: inherit !important; font-weight: inherit !important; color: inherit !important; line-height: inherit !important; letter-spacing: inherit !important; margin: 0 !important; }

/* Hero eyebrow label */
.kt-hero-eyebrow {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  color: var(--kt-red) !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  line-height: 1 !important;
}
.kt-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--kt-red);
  flex-shrink: 0;
}

/* Red accent line - left edge of hero */
.kt-hero .kt-hero-accent-line {
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 3px;
  background: var(--kt-red);
  z-index: 3;
}

.kt-hero-sub { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 520px; margin-bottom: 0; }
.kt-hero-text .elementor-widget-container { margin-bottom: 40px; }

/* Hero actions */
.kt-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 64px; }
.kt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--kt-radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--kt-transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.kt-btn-red { background: var(--kt-red); color: var(--kt-white); }
.kt-btn-red:hover { background: #B02424; color: var(--kt-white); }
.kt-btn-outline-white { background: transparent; color: var(--kt-white); border-color: rgba(255,255,255,0.45); }
.kt-btn-outline-white:hover { border-color: var(--kt-white); background: rgba(255,255,255,0.08); color: var(--kt-white); }

/* Hero badges */
.kt-hero-badges {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.kt-hero-badge {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.kt-hero-badge:last-child { border-right: none; padding-right: 0; }
.kt-badge-num { display: block; font-size: 32px; font-weight: 800; color: var(--kt-white); line-height: 1; letter-spacing: -0.03em; }
.kt-badge-num em { font-style: normal; color: var(--kt-red); font-size: 20px; }
.kt-badge-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; }

/* ???????????????????????????????????????????????????
   USP BAND
??????????????????????????????????????????????????? */
.kt-band .elementor-container { max-width: 100% !important; }
.kt-band-item.elementor-widget-icon-box { padding: 0 !important; }
.kt-band-item .elementor-icon-box-wrapper { display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: center !important; gap: 10px !important; }
.kt-band-item .elementor-icon { margin: 0 !important; color: var(--kt-red) !important; }
.kt-band-item .elementor-icon-box-title { margin: 0 !important; }
.kt-band-item .elementor-icon-box-title * { font-size: 14px !important; font-weight: 500 !important; color: rgba(255,255,255,0.85) !important; }
.kt-band-item .elementor-icon-box-description { display: none; }

/* ???????????????????????????????????????????????????
   SECTIONS - shared label/title
??????????????????????????????????????????????????? */
.kt-section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kt-red);
  font-weight: 600;
  margin-bottom: 12px;
}
.kt-section-title h2,
.kt-section-title .elementor-heading-title {
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 700 !important;
  color: var(--kt-black) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
}
.kt-title-white h2,
.kt-title-white .elementor-heading-title { color: var(--kt-white) !important; }
.kt-section-sub { margin-top: 16px; font-size: 17px; color: var(--kt-mid-gray); max-width: 560px; line-height: 1.7; }

/* ???????????????????????????????????????????????????
   LEISTUNGEN
??????????????????????????????????????????????????? */
.kt-leistungen .elementor-container { padding-top: 0 !important; padding-bottom: 0 !important; }
.kt-services-grid .elementor-column { padding: 1px !important; }
.kt-service-col .elementor-column-wrap,
.kt-service-col .elementor-widget-wrap { height: 100%; }
.kt-service-card { height: 100%; }
.kt-service-card .elementor-icon-box-wrapper {
  flex-direction: column !important;
  align-items: flex-start !important;
  background: var(--kt-white);
  padding: 40px 36px !important;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--kt-transition);
}
.kt-service-card .elementor-icon-box-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--kt-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--kt-transition);
}
.kt-service-card:hover .elementor-icon-box-wrapper { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.kt-service-card:hover .elementor-icon-box-wrapper::after { transform: scaleX(1); }
.kt-service-card .elementor-icon {
  width: 48px; height: 48px;
  background: rgba(204,43,43,0.08);
  border-radius: 10px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px !important;
  color: var(--kt-red) !important;
}
.kt-service-card .elementor-icon i { font-size: 22px !important; }
.kt-service-card .elementor-icon-box-title { margin-bottom: 10px !important; }
.kt-service-card .elementor-icon-box-title * { font-size: 17px !important; font-weight: 700 !important; color: var(--kt-black) !important; letter-spacing: -0.01em !important; }
.kt-service-card .elementor-icon-box-description p { font-size: 14px !important; color: var(--kt-mid-gray) !important; line-height: 1.65 !important; }

/* ???????????????????????????????????????????????????
   ?BER MICH
??????????????????????????????????????????????????? */
.kt-ueber-img-col .elementor-image { position: relative; }
.kt-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; border-radius: 2px; }
.kt-quote {
  font-size: 19px;
  font-weight: 600;
  color: var(--kt-black);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 24px 0;
  padding-left: 20px;
  border-left: 3px solid var(--kt-red);
  font-style: normal;
}
.kt-facts { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kt-facts li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--kt-black); }
.kt-facts svg { flex-shrink: 0; }

/* ???????????????????????????????????????????????????
   WARUM KATTNER
??????????????????????????????????????????????????? */
.kt-warum-grid { background: rgba(255,255,255,0.05); }
.kt-warum-item { background: var(--kt-black) !important; transition: background var(--kt-transition); }
.kt-warum-item:hover { background: #232323 !important; }
.kt-warum-item .elementor-column-wrap,
.kt-warum-item .elementor-widget-wrap { padding: 48px 40px !important; }
.kt-warum-num { font-size: 11px; color: var(--kt-red); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; }
.kt-warum-title .elementor-heading-title { font-size: 20px !important; font-weight: 700 !important; color: var(--kt-white) !important; margin-bottom: 14px !important; letter-spacing: -0.01em !important; line-height: 1.25 !important; }
.kt-warum-text { font-size: 14px !important; color: rgba(255,255,255,0.5) !important; line-height: 1.7 !important; }
.kt-warum-text p { font-size: inherit !important; color: inherit !important; }

/* ???????????????????????????????????????????????????
   REFERENZEN
??????????????????????????????????????????????????? */
.kt-ref-box {
  max-width: 600px;
  margin: 40px auto 0;
  background: var(--kt-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 2px;
  padding: 48px;
  text-align: center;
}
.kt-ref-icon {
  width: 56px; height: 56px;
  background: rgba(27,48,84,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.kt-ref-title { font-size: 20px; font-weight: 700; color: var(--kt-black); margin-bottom: 12px; }
.kt-ref-text { font-size: 15px; color: var(--kt-mid-gray); line-height: 1.65; }
.kt-ref-text em { font-style: normal; font-size: 13px; }

/* ???????????????????????????????????????????????????
   KONTAKT
??????????????????????????????????????????????????? */
.kt-phone-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  background: var(--kt-navy);
  border-radius: 2px;
  margin-bottom: 16px;
  color: var(--kt-white);
  transition: background var(--kt-transition);
  cursor: pointer;
}
.kt-phone-cta:hover { background: #152643; color: var(--kt-white); }
.kt-phone-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kt-phone-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.6; margin-bottom: 2px; }
.kt-phone-num { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.kt-email-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--kt-light-gray);
  border-radius: 2px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 28px;
}
.kt-kontakt-note { font-size: 13px; color: var(--kt-mid-gray); line-height: 1.6; border-left: 2px solid var(--kt-light-gray); padding-left: 16px; }
.kt-form-header { margin-bottom: 8px; }
.kt-form-title { font-size: 20px; font-weight: 700; color: var(--kt-black); margin-bottom: 6px; }
.kt-form-sub { font-size: 14px; color: var(--kt-mid-gray); margin-bottom: 24px; }
.kt-kontakt-form-col .elementor-widget-shortcode > .elementor-widget-container {
  background: var(--kt-white);
  padding: 40px 44px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 2px;
}

/* CF7 Formular-Styling */
.wpcf7-form { display: flex; flex-direction: column; gap: 14px; }
.wpcf7-form p { margin: 0; }
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #DEDBD5;
  border-radius: var(--kt-radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--kt-black);
  background: var(--kt-off-white);
  transition: border-color var(--kt-transition);
  outline: none;
  -webkit-appearance: none;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--kt-navy); }
.wpcf7-form textarea { min-height: 110px; resize: vertical; }
.wpcf7-form .wpcf7-acceptance { font-size: 12px; color: var(--kt-mid-gray); }
.wpcf7-form .wpcf7-acceptance a { color: var(--kt-navy); text-decoration: underline; }
.wpcf7-form input[type=submit] {
  width: 100%;
  padding: 14px 28px;
  background: var(--kt-navy);
  color: var(--kt-white);
  border: none;
  border-radius: var(--kt-radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--kt-transition);
  font-family: inherit;
}
.wpcf7-form input[type=submit]:hover { background: #152643; }
.wpcf7-response-output { border: none !important; padding: 12px 16px !important; border-radius: var(--kt-radius) !important; font-size: 14px !important; }
.wpcf7-mail-sent-ok { background: rgba(27,48,84,0.08) !important; color: var(--kt-navy) !important; }
.wpcf7-not-valid-tip { color: var(--kt-red) !important; font-size: 12px !important; }

/* ???????????????????????????????????????????????????
   FOOTER
??????????????????????????????????????????????????? */
.kt-footer-section .elementor-container { max-width: 100% !important; padding: 0 !important; }
.kt-footer { background: var(--kt-dark); color: rgba(255,255,255,0.55); padding: 60px 0 28px; }
.kt-footer-top {
  max-width: var(--kt-max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.kt-footer-brand svg { height: 34px; width: auto; filter: brightness(0) invert(1) opacity(0.85); }
.kt-footer-tagline { font-size: 14px; color: rgba(255,255,255,0.35); margin-top: 12px; line-height: 1.6; }
.kt-footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.kt-footer-col ul { list-style: none; margin: 0; padding: 0; }
.kt-footer-col ul li { margin-bottom: 9px; }
.kt-footer-col ul li a,
.kt-footer-col p a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--kt-transition); }
.kt-footer-col ul li a:hover,
.kt-footer-col p a:hover { color: var(--kt-white); }
.kt-footer-col p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.kt-footer-bottom {
  max-width: var(--kt-max-width);
  margin: 28px auto 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 12px;
}
.kt-footer-legal { display: flex; gap: 24px; }
.kt-footer-legal a { color: rgba(255,255,255,0.35); font-size: 13px; transition: color var(--kt-transition); }
.kt-footer-legal a:hover { color: var(--kt-white); }

/* ???????????????????????????????????????????????????
   IMPRESSUM / DATENSCHUTZ
??????????????????????????????????????????????????? */
.kt-legal-page { max-width: 820px; margin: 0 auto; padding: 80px 32px; }
.kt-legal-page h1 { font-size: 36px; font-weight: 700; margin-bottom: 40px; letter-spacing: -0.02em; }
.kt-legal-page h2 { font-size: 18px; font-weight: 700; margin: 36px 0 12px; color: var(--kt-black); }
.kt-legal-page p { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 14px; }
.kt-legal-page ul { padding-left: 20px; margin-bottom: 14px; }
.kt-legal-page ul li { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 6px; }
.kt-legal-page a { color: var(--kt-navy); text-decoration: underline; }
.kt-legal-page em { color: var(--kt-mid-gray); }

/* ???????????????????????????????????????????????????
   SCROLL-TOP BUTTON
??????????????????????????????????????????????????? */
.kt-scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--kt-navy);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--kt-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background var(--kt-transition);
  z-index: 999;
}
.kt-scroll-top:hover { background: var(--kt-red); }

/* ???????????????????????????????????????????????????
   JS: NAV SCROLLED (via inline script)
??????????????????????????????????????????????????? */

/* ???????????????????????????????????????????????????
   RESPONSIVE
??????????????????????????????????????????????????? */
@media (max-width: 1024px) {
  .kt-services-grid .elementor-column { flex: 0 0 50% !important; max-width: 50% !important; }
  .kt-footer-top { grid-template-columns: 1fr 1fr; }
  .kt-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .kt-nav-links { display: none; }
  .kt-hero-badges { flex-direction: column; gap: 20px; }
  .kt-hero-badge { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }
  .kt-hero-badge:last-child { border-bottom: none; }
  .kt-services-grid .elementor-column { flex: 0 0 100% !important; max-width: 100% !important; }
  .kt-kontakt .elementor-column { flex: 0 0 100% !important; max-width: 100% !important; }
  .kt-ueber .elementor-column { flex: 0 0 100% !important; max-width: 100% !important; }
  .kt-warum-grid .elementor-column { flex: 0 0 100% !important; max-width: 100% !important; }
  .kt-footer-top { grid-template-columns: 1fr; }
  .kt-footer-bottom { flex-direction: column; align-items: flex-start; }
  .kt-facts { grid-template-columns: 1fr; }
}

/* ============================================================
   CUSTOM HEADER (Elementor Template 328) + FOOTER MENU
   ============================================================ */
.jupiterx-header { background: var(--kt-off-white) !important; border-bottom: 1px solid rgba(0,0,0,0.07); box-shadow: none; }
.kt-header > .elementor-container { max-width: var(--kt-max-width); min-height: 72px; align-items: center; flex-wrap: nowrap; padding: 0 32px; }
.kt-header .elementor-widget-wrap { align-content: center; }
.kt-header-logo img { height: 42px !important; width: auto !important; display: block; }
.kt-header-nav .elementor-widget-container { display: flex; justify-content: center; }
.kt-header-phone-wrap .elementor-widget-container { display: flex; justify-content: flex-end; }

/* Header-Menue: horizontal, dunkle Schrift, rot bei Hover (wie Entwurf .nav-links) */
ul.kt-menu, ul.kt-menu li { list-style: none !important; margin: 0 !important; padding: 0 !important; }
ul.kt-menu { display: flex !important; align-items: center; gap: 36px; }
ul.kt-menu li::before, ul.kt-menu li::marker { content: none !important; display: none !important; }
ul.kt-menu a { font-size: 14px; font-weight: 500; color: var(--kt-black) !important; letter-spacing: 0.02em; text-decoration: none; transition: color .25s ease; }
ul.kt-menu a:hover, ul.kt-menu .current-menu-item > a, ul.kt-menu .current-menu-ancestor > a { color: var(--kt-red) !important; }

.kt-site-header__phone { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--kt-navy); white-space: nowrap; text-decoration: none; }
.kt-site-header__phone svg { color: var(--kt-red); }

/* Footer-Menue (subfooter): weisse Schrift, rot bei Hover */
ul.kt-footer-menu, ul.kt-footer-menu li { list-style: none !important; margin: 0 !important; padding: 0 !important; }
ul.kt-footer-menu li { margin-bottom: 10px !important; }
ul.kt-footer-menu li::before, ul.kt-footer-menu li::marker { content: none !important; display: none !important; }
ul.kt-footer-menu a { font-size: 14px; color: #FFFFFF !important; text-decoration: none; transition: color .25s ease; }
ul.kt-footer-menu a:hover { color: var(--kt-red) !important; }

@media (max-width: 900px) {
  .kt-header > .elementor-container { padding: 0 20px; flex-wrap: wrap; }
  .kt-header-nav { display: none; }
}

/* ============================================================
   FOOTER LAYOUT (Template 264) - wie Entwurf
   ============================================================ */
.jupiterx-footer { background: var(--kt-dark) !important; }
.kt-footer-top { background: var(--kt-dark); padding: 60px 0 8px; }
.kt-footer-top > .elementor-container { max-width: var(--kt-max-width); padding: 0 32px; align-items: flex-start; }
.kt-footer-bottom { background: var(--kt-dark); padding: 0 0 30px; }
.kt-footer-bottom > .elementor-container { max-width: var(--kt-max-width); padding: 0 32px; }
.kt-footer-logo-wrap svg { height: 36px; width: auto; display: block; }
.kt-footer-top .elementor-widget-text-editor, .kt-footer-top .elementor-widget-text-editor p { font-size: 14px !important; color: rgba(255,255,255,0.4) !important; line-height: 1.6; margin: 12px 0 0; }
.kt-footer-top .elementor-widget-heading .elementor-heading-title { font-size: 11px !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; color: rgba(255,255,255,0.7) !important; margin-bottom: 16px !important; }
.kt-footer-contact a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 10px; text-decoration: none; transition: color .25s ease; }
.kt-footer-contact a:hover { color: #fff; }
.kt-footer-contact svg { color: var(--kt-red); flex-shrink: 0; }
.kt-footer-bottominner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; width: 100%; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 26px; margin-top: 18px; }
.kt-footer-copyright { font-size: 13px; color: rgba(255,255,255,0.28); }
.kt-footer-legal { display: flex; gap: 22px; }
.kt-footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .25s ease; }
.kt-footer-legal a:hover { color: #fff; }
@media (max-width: 900px) {
  .kt-footer-top > .elementor-container, .kt-footer-bottom > .elementor-container { padding: 0 20px; }
  .kt-footer-bottominner { flex-direction: column; align-items: flex-start; }
}

/* kt-footer-logo-white: Header-Logo (id30) auf dunklem Footer sichtbar machen */
.kt-footer-top .elementor-widget-image { text-align: left; }
.kt-footer-top .elementor-widget-image img { height: 36px !important; width: auto !important; filter: brightness(0) invert(1); }
