/* =========================================================
   HypnoX Akademie – gemeinsame Stildatei (hypnox.css)
   Bündelt das Design aller Seiten an einer zentralen Stelle.
   Zusammengeführt am 21.07.2026 aus den bisher einzeln in die
   Seiten eingebauten Stilen. Das Aussehen bleibt unverändert.
   ========================================================= */

/* --- Grundlagen --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #121C25; }
::selection { background: #40B4AB; color: #fff; }

/* --- Kopfzeile / mobiles Menü (Burger) --- */
.hx-burger { display: none; }
.hx-mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 90; max-height: calc(100vh - 68px); max-height: calc(100dvh - 68px); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; transform: translateZ(0); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .28s ease, visibility .28s; }
/* Menuepunkte nie umbrechen; enge Desktop-Breiten: alles kompakter, damit Login passt */
.hx-nav a { white-space: nowrap; }
@media (max-width: 1240px) {
  .hx-nav { gap: 14px !important; font-size: 13.5px !important; }
  /* Kurzform, damit Menue + Aktions-Button + Login nebeneinander passen */
  .hx-cta-header { font-size: 0 !important; padding: 0 16px !important; }
  .hx-cta-header::before { content: "Erstgespräch"; font-size: 13.5px; }
}
@media (max-width: 1024px) {
  .hx-nav { display: none !important; }
  .hx-cta-header { display: none !important; }
  .hx-login-header { display: none !important; }
  .hx-burger { display: inline-flex !important; }
  .hx-mobile-menu { display: flex !important; }
  #hx-menu-toggle:checked ~ .hx-mobile-menu, .hx-mobile-menu.hx-open { opacity: 1 !important; visibility: visible !important; transform: translateZ(0) !important; pointer-events: auto !important; }
}
@media (max-width: 620px) { .hx-cta-header { font-size: 0 !important; padding: 0 16px !important; } .hx-cta-header::before { content: "Erstgespräch"; font-size: 14px; } }

/* --- Untermenue "Ausbildung" (reines CSS, kein JS) --- */
.hx-drop { position: relative; display: inline-flex; align-items: center; }
.hx-drop > a { display: inline-flex; align-items: center; gap: 5px; }
/* unsichtbare Bruecke, damit der Zeiger den Weg ins Untermenue schafft */
.hx-drop::after { content: ""; position: absolute; top: 100%; left: -16px; right: -16px; height: 18px; }
.hx-drop-menu { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 260px; padding: 8px; background: #192633; border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; box-shadow: 0 26px 64px rgba(0,0,0,0.6); display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.hx-drop:hover .hx-drop-menu, .hx-drop:focus-within .hx-drop-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.hx-drop-menu a { display: block; padding: 11px 14px; border-radius: 11px; font-size: 14px; font-weight: 500; line-height: 1.3; color: #C9C7D1; text-decoration: none; transition: background .2s ease, color .2s ease; }
.hx-drop-menu a:hover, .hx-drop-menu a:focus-visible { background: rgba(64,180,171,0.14); color: #FDFDFD; }
.hx-drop > a svg { transition: transform .22s ease; flex-shrink: 0; }
.hx-drop:hover > a svg, .hx-drop:focus-within > a svg { transform: rotate(180deg); }

/* --- Sonderbutton Aktion (Orange, damit das Tuerkis dem Erstgespraech-CTA bleibt) --- */
.hx-special { display: inline-flex; align-items: center; gap: 7px; height: 32px; padding: 0 14px; border-radius: 999px; background: linear-gradient(180deg, #F0A85C 0%, #E08A38 100%); color: #16110A !important; font-size: 13px; font-weight: 700; text-decoration: none; box-shadow: 0 6px 18px rgba(224,138,56,0.34); transition: filter .2s ease, transform .2s ease; }
.hx-special:hover { filter: brightness(1.08); transform: translateY(-1px); }
.hx-special-dot { width: 6px; height: 6px; border-radius: 999px; background: #16110A; opacity: .5; flex-shrink: 0; }
@media (max-width: 1240px) { .hx-special { height: 30px; padding: 0 12px; font-size: 12.5px; } }

/* --- Mobiles Menue: Unterpunkte --- */
.hx-mob-sub { padding: 12px 6px 12px 22px !important; font-size: 15px !important; font-weight: 500 !important; color: #A9A7B4 !important; }

/* --- Haekchen-Listen --- */
.hx-list { list-style: none; margin: 0; padding: 0; }
.hx-list li { position: relative; padding: 0 0 0 26px; margin-bottom: 10px; font-size: 15.5px; line-height: 1.5; color: #B5B3BF; }
.hx-list li:last-child { margin-bottom: 0; }
.hx-list li::before { content: ""; position: absolute; left: 0; top: 5px; width: 15px; height: 15px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312C8B8' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }

/* --- Aufklappbare Fragen (details/summary) --- */
.hx-faq { border-bottom: 1px solid rgba(255,255,255,0.09); }
.hx-faq summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-weight: 600; font-size: clamp(16px, 2.1vw, 18px); color: #FDFDFD; }
.hx-faq summary::-webkit-details-marker { display: none; }
.hx-faq summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 13px; height: 13px; margin-top: -8px; border-right: 2px solid #40B4AB; border-bottom: 2px solid #40B4AB; transform: rotate(45deg); transition: transform .3s ease; }
.hx-faq[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.hx-faq p, .hx-faq ul { margin: 0 0 24px; padding-right: 44px; font-size: 16px; line-height: 1.65; color: #ABA9B4; }
.hx-faq ul { padding-left: 0; }

/* --- Zwei Abo-Karten nebeneinander --- */
.hx-abos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
@media (max-width: 880px) { .hx-abos { grid-template-columns: 1fr; } }

/* --- Animationen --- */
@keyframes hx-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes hx-spin-rev { to { transform: translate(-50%,-50%) rotate(-360deg); } }
@keyframes hx-reveal { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hx-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* --- Karten --- */
.hx-card { transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease; }
.hx-card:hover { transform: translateY(-6px); border-color: rgba(64,180,171,0.4) !important; box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(55,154,146,0.05), inset 0 1px 0 rgba(255,255,255,0.06) !important; }

/* --- Produkt-Karten (Shop / Behandlungsseminar) --- */
.hx-prod { transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease; }
.hx-prod:hover { transform: translateY(-6px); border-color: rgba(64,180,171,0.4) !important; box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(55,154,146,0.05) !important; }

/* --- Video-Player --- */
.hx-vidwrap { position: relative; }
.hx-playbtn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 68px; height: 68px; border: none; border-radius: 999px; background: rgba(64,180,171,0.92); box-shadow: 0 10px 30px rgba(0,0,0,0.5); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 3; transition: transform .2s ease, background .2s ease; }
.hx-playbtn:hover { transform: translate(-50%,-50%) scale(1.08); background: #40B4AB; }
.hx-playbtn svg { margin-left: 3px; }
.hx-vidwrap.is-playing .hx-playbtn { opacity: 0; pointer-events: none; }
.hx-vidwrap.is-playing:hover .hx-playbtn, .hx-vidwrap.is-playing:focus-within .hx-playbtn { opacity: 1; pointer-events: auto; }

/* --- FAQ-Aufklapper --- */
.hx-faq > summary { list-style: none; }
.hx-faq > summary::-webkit-details-marker { display: none; }
.hx-faq-sign { position: relative; flex-shrink: 0; width: 20px; height: 20px; }
.hx-faq-sign::before, .hx-faq-sign::after { content: ""; position: absolute; background: #40B4AB; border-radius: 2px; }
.hx-faq-sign::before { top: 50%; left: 1px; right: 1px; height: 2px; transform: translateY(-50%); }
.hx-faq-sign::after { left: 50%; top: 1px; bottom: 1px; width: 2px; transform: translateX(-50%); transition: opacity .2s ease; }
.hx-faq[open] .hx-faq-sign::after { opacity: 0; }

/* --- FAQ auf schmalen Bildschirmen: Frage oben ausrichten, sauber positionieren --- */
@media (max-width: 620px) {
  .hx-faq > summary { align-items: flex-start !important; gap: 12px !important; padding: 18px 18px !important; font-size: 16px !important; line-height: 1.35; }
  .hx-faq-sign { margin-top: 2px; }
  .hx-faq p { padding-left: 18px !important; padding-right: 18px !important; }
}

/* --- Formularfelder (Kontakt / Partner) --- */
.hx-field { transition: border-color .25s ease, background .25s ease; }
.hx-field:focus { outline: none; border-color: rgba(64,180,171,0.6) !important; background: rgba(64,180,171,0.05) !important; }
.hx-field::placeholder { color: #6A6874; }

/* --- Tour-Termine (Show) --- */
.hx-tour { transition: border-color .3s ease, background .3s ease; }
.hx-tour:hover { border-color: rgba(64,180,171,0.4) !important; background: rgba(64,180,171,0.05) !important; }

/* --- Weitere responsive Umbrüche --- */
@media (max-width: 860px) { .hx-hero-grid { grid-template-columns: 1fr !important; text-align: center; } .hx-hero-portrait { order: -1; margin: 0 auto 8px !important; } .hx-hero-cta { justify-content: center !important; } .hx-hero-meta { justify-content: center !important; } }
@media (max-width: 820px) { .hx-contact-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 780px) { .hx-angebote { grid-template-columns: 1fr !important; } }

/* --- Direktvergleich Seminar / Einzelsitzung --- */
.hx-vgl-lbl { display: none; }
@media (max-width: 760px) {
  .hx-vgl { grid-template-columns: 1fr !important; }
  .hx-vgl-eck, .hx-vgl-head { display: none !important; }
  .hx-vgl-key { padding-top: 20px !important; padding-bottom: 8px !important; font-size: 16px !important; }
  .hx-vgl-lbl { display: inline; color: #EDECF2; font-weight: 600; }
}

/* --- Ablauf: vier Karten zweispaltig, auf Mobil einspaltig --- */
@media (max-width: 720px) { .hx-ablauf-2 { grid-template-columns: 1fr !important; } }
