#faq .section-title span{
	color: #FFD600;
}

/* ─── NAVBAR ─── */
.navbar {
  background: rgba(11,15,26,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 3px;
  color: var(--white) !important;
  text-decoration: none;
}

.burger-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  padding: 4px 8px;
  cursor: pointer;
  transition: color .2s;
  line-height: 1;
}
.burger-btn:hover { color: var(--yellow); }


.nav-cta {
  font-size: .85rem !important;
  padding: 10px 22px !important;
  white-space: nowrap;
}

/* ─── ДЕСКТОП (≥768px) ─── */
/* бургер | NOMOCON | [Jetzt starten] [DE|EN] */
@media (min-width: 768px) {
  .navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .nav-burger-wrap   { justify-self: start; }
  .nav-logo-wrap     { justify-self: center; }
  .nav-right         { justify-self: end; display: flex; align-items: center; gap: 12px; }
  .nav-mobile-right  { display: none; }
}

/* ─── МОБИЛЬНЫЙ (<768px) ─── */
@media (max-width: 767.98px) {
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-mobile-right {
    display: flex;
    align-items: center;
    order: 1;
    flex: 1;
    justify-content: flex-start;
  }
  .nav-mobile-right .lang-switcher {
    display: none;
  }


  .nav-logo-wrap {
    order: 2;
    flex: 0 0 auto;
  }


  .nav-right {
    display: flex !important;
    align-items: center;
    order: 3;
    flex: 1;
    justify-content: flex-end;
  }
  .nav-right .nav-cta {
    display: none;
  }
  .nav-right .lang-switcher {
    display: flex;
    height: auto;
    padding: 2px;
  }
  .nav-right .lang-btn {
    height: 26px;
    min-width: 30px;
    font-size: .68rem;
  }


  .nav-burger-wrap { display: none; }
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 6px;
  border-radius: 5px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.lang-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.lang-btn.active {
  background: var(--yellow);
  color: #000;
}


@media (max-width: 767.98px) {
  .lang-switcher { padding: 2px; }
  .lang-btn { min-width: 30px; height: 26px; font-size: .68rem; }
}

/* ─── OFFCANVAS ─── */
.offcanvas {
  background: #080c15 !important;
  border-left: 1px solid var(--border) !important;
  width: 300px !important;
  max-width: 85vw !important;
}
.offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.offcanvas-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--white);
}
.offcanvas-title span { color: var(--yellow); }

.btn-close-custom {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color .2s;
}
.btn-close-custom:hover { color: var(--yellow); }

.offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

/* ─── NAV MENU (offcanvas) ─── */
.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu li { border-bottom: 1px solid var(--border); }
.nav-menu li:last-child { border-bottom: none; }

.nav-menu a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color .2s, padding-left .2s;
  line-height: 1.3;
}
.nav-menu a:hover { color: var(--yellow); padding-left: 0px; }

.nav-menu .dropdown-toggle-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.nav-menu .dropdown-toggle-custom i {
  font-size: .8rem;
  transition: transform .3s;
  color: var(--gray);
}
.nav-menu .dropdown-toggle-custom.open i { transform: rotate(180deg); }

.nav-submenu {
  list-style: none;
  padding: 0 0 8px 16px;
  display: none;
}
.nav-submenu.open { display: block; }
.nav-submenu li { border: none; }
.nav-submenu a {
  padding: 8px 0;
  font-size: .9rem;
  color: var(--gray);
}
.nav-submenu a:hover { color: var(--yellow); padding-left: 6px; }

/* ─── SOCIAL ICONS (offcanvas) ─── */
.social-icons {
  display: flex;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.social-icons a {
  color: var(--gray);
  font-size: 1.3rem;
  transition: color .2s, transform .2s;
}
.social-icons a:hover { color: var(--yellow); transform: translateY(-2px); }


@media screen and (min-width: 768px){

/* Переключатель языка  */
.nav-right .lang-switcher {
  height: 45px; 
  align-items: center;
  box-sizing: border-box;
}

.nav-right .lang-btn {
  height: 32px; 
  min-width: 40px;
  font-size: .75rem;
}
}


.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
	border-radius: 15px;
	background-color: #46b450;
}

.wpcf7 form.invalid .wpcf7-response-output{
	border-radius: 15px;
}

.wpcf7 form .wpcf7-response-output{
	margin-top: 0;
}

.section-label{
  display:inline-block;
  font-size:.8rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--yellow);
  margin-bottom:12px;
}
.section-title{
  font-size:clamp(2rem,4vw,2.75rem);
  color:var(--white);
  margin-bottom:16px;
}
.section-desc{
  color:var(--gray);
  font-size:1.05rem;
  max-width:760px;
}
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* Prozess-Schritte (wie im "Wie funktioniert der Prozess"-Block) */
.steps-row{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
}
.step-item{
  flex:0 0 calc(33.333% - 16px);
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
}
.step-num{
  width:42px;height:42px;
  border-radius:50%;
  background:var(--yellow);
  color:var(--bg);
  display:flex;align-items:center;justify-content:center;
  font-family:'Bebas Neue',sans-serif;
  font-size:1.25rem;
  margin-bottom:16px;
}
.step-text h5{font-size:1.1rem;margin-bottom:8px;}
.step-text p{color:var(--gray);font-size:.9rem;margin-bottom:0;}
@media(max-width:991px){.step-item{flex:0 0 100%;}}

/* ───────────────────────────────────────────
   NEU: gemeinsame Komponenten für die
   Wissens-/Info-Seiten
──────────────────────────────────────────── */
.info-section{padding:100px 0;}

.subsection-header{text-align:center;margin:90px 0 44px;}
.subsection-header h3{font-size:clamp(1.6rem,3vw,2.1rem);color:var(--white);margin-bottom:10px;}
.subsection-header p{color:var(--gray);max-width:700px;margin:0 auto;}

/* Themen-Karten */
.topic-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:32px;
  transition:border-color .3s, transform .3s;
}
.topic-card:hover{border-color:var(--yellow);transform:translateY(-4px);}
.topic-icon{
  width:52px;height:52px;
  border-radius:12px;
  background:rgba(255,214,0,.08);
  display:flex;align-items:center;justify-content:center;
  font-size:1.35rem;
  color:var(--yellow);
  margin-bottom:20px;
}
.topic-card h5{font-size:1.25rem;margin-bottom:16px;}
.topic-card h6{
  font-family:'DM Sans',sans-serif;
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--yellow);
  margin:22px 0 12px;
}
.topic-card h6:first-of-type{margin-top:0;}

/* Check-Liste */
.check-list{list-style:none;padding:0;margin:0;}
.check-list li{
  display:flex;align-items:flex-start;gap:10px;
  margin-bottom:10px;color:var(--gray);
  font-size:.95rem;line-height:1.55;
}
.check-list li:last-child{margin-bottom:0;}
.check-list li i{color:var(--yellow);margin-top:3px;flex-shrink:0;}

/* kleine Notiz innerhalb einer Karte */
.card-note{
  margin-top:16px;padding-top:14px;
  border-top:1px solid var(--border);
  color:var(--gray);font-size:.85rem;
}
.card-note i{color:var(--yellow);margin-right:6px;}

/* verschachtelte Unterliste innerhalb eines Prozess-Schritts */
.step-sublist{list-style:none;padding:0;margin:12px 0 0;display:grid;gap:6px;}
.step-sublist li{font-size:.85rem;color:var(--gray);display:flex;align-items:flex-start;gap:8px;}
.step-sublist li::before{content:'–';color:var(--yellow);flex-shrink:0;}

/* Kurzfassung / Fazit Box */
.summary-box{
  background:rgba(255,214,0,.04);
  border:1px solid rgba(255,214,0,.22);
  border-left:4px solid var(--yellow);
  border-radius:16px;
  padding:40px 44px;
}
.summary-box h5{font-size:1.35rem;margin-bottom:8px;display:flex;align-items:center;gap:10px;}
.summary-box h5 i{color:var(--yellow);}
.summary-box>p{color:var(--gray);line-height:1.7;margin-bottom:20px;}
.summary-box>p:last-child{margin-top:20px;margin-bottom:0;}
.summary-list{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(2,1fr);gap:10px 28px;}
.summary-list li{display:flex;align-items:flex-start;gap:10px;color:var(--white);font-size:.95rem;line-height:1.5;}
.summary-list li i{color:var(--yellow);margin-top:3px;flex-shrink:0;}
@media(max-width:767px){
  .summary-list{grid-template-columns:1fr;}
  .summary-box{padding:32px;}
}

/* Alternative-Karten */
.alt-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:32px;
  height:100%;
  position:relative;
  overflow:hidden;
}
.alt-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--yellow);}
.alt-card .alt-label{display:inline-block;font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;color:var(--yellow);margin-bottom:8px;}
.alt-card h5{font-size:1.3rem;margin-bottom:14px;}

/* ───────────────────────────────────────────
   Icon-Zeilen-Liste (Punkt mit Kreis-Icon links,
   Text rechts, Trennlinie darunter)
──────────────────────────────────────────── */
.icon-list{display:flex;flex-direction:column;}
.icon-row{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:18px 0;
  border-bottom:1px solid var(--border);
}
.icon-row:last-child{border-bottom:none;padding-bottom:6px;}
.icon-row:first-child{padding-top:6px;}
.icon-row .row-icon{
  width:48px;height:48px;
  min-width:48px;
  border-radius:50%;
  background:var(--bg-card);
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:1.15rem;
  color:var(--yellow);
}
.icon-row p{
  margin:0;
  padding-top:9px;
  color:var(--white);
  font-size:1rem;
  line-height:1.45;
}
.icon-list-col{position:relative;}
@media(min-width:768px){
  .icon-list-divider{
    border-left:1px solid var(--border);
  }
}

/* Vorteile-Kacheln (Abschluss-Reihe mit großem Icon, Zahl/Label) */
.adv-tiles-header{
  display:flex;align-items:center;gap:18px;
  margin:56px 0 32px;
}
.adv-tiles-header::before,
.adv-tiles-header::after{
  content:'';flex:1;height:1px;background:var(--border);
}
.adv-tiles-header h4{
  font-size:1.6rem;
  color:var(--yellow);
  margin:0;
  white-space:nowrap;
}
.adv-tile{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:28px 20px;
  text-align:center;
  height:100%;
}
.adv-tile .adv-icon-big{
  font-size:2rem;
  color:var(--yellow);
  margin-bottom:14px;
  display:block;
}
.adv-tile .adv-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:2.1rem;
  color:var(--yellow);
  display:block;
  margin-bottom:10px;
  line-height:1;
}
.adv-tile p{
  margin:0;
  color:var(--gray);
  font-size:.92rem;
  line-height:1.45;
}

.lang-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    margin: 0 1px;
    user-select: none;
}