/* ============================================================
   DeinMindset.com – Haupt-Stylesheet
   style.css
   ============================================================ */

/* ---------- RESET & VARIABLEN ---------- */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-dark:    #9A7B30;
  --dark:         #08080E;
  --dark2:        #10101A;
  --dark3:        #181825;
  --dark4:        #1E1E2E;
  --light:        #F4F1EC;
  --light2:       #EDE8DF;
  --text-dark:    #E2E2F0;
  --text-muted:   #6B6B8A;
  --text-light:   #1A1A2E;
  --border:       rgba(201,168,76,0.18);
  --border-light: rgba(26,26,46,0.1);
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 8px 40px rgba(0,0,0,0.45);
  --shadow-gold:  0 8px 32px rgba(201,168,76,0.25);
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --container:    1160px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
address { font-style: normal; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(38px,5.5vw,72px); }
h2 { font-size: clamp(28px,3.5vw,48px); }
h3 { font-size: clamp(18px,2vw,24px); font-family: var(--font-body); font-weight: 600; }
em { color: var(--gold); font-style: normal; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(26,26,46,0.3);
}
.btn-outline-dark:hover {
  background: var(--text-light);
  color: #fff;
}
.btn-lg  { padding: 16px 36px; font-size: 16px; }
.btn-sm  { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; }
.link-btn {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: inherit;
  text-decoration: underline;
  padding: 0;
}
.link-btn:hover { color: var(--gold-light); }

/* ---------- SECTION ---------- */
.section { padding: 96px 0; }
.section--dark  { background: var(--dark2); }
.section--light { background: var(--light); color: var(--text-light); }
.section--light h2, .section--light h3 { color: var(--text-light); }
.section--light p, .section--light li  { color: #3a3a5c; }
.section--light .eyebrow { color: var(--gold-dark); }
.section--sbotio {
  background: var(--dark3);
  position: relative;
  overflow: hidden;
}
.section--sbotio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-sub { color: var(--text-muted); font-size: 17px; margin-top: 12px; max-width: 540px; margin-left: auto; margin-right: auto; }
.section--light .section-sub { color: #6B6B8A; }

/* ---------- ANIMATIONS ---------- */
.fade-in { animation: fadeInUp 0.9s ease both; }
.fade-in-delay { animation: fadeInUp 0.9s 0.25s ease both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark4);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 24px;
  max-width: 640px;
  width: calc(100% - 32px);
  z-index: 9999;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transition: opacity 0.4s, transform 0.4s;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
.cookie-text { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 220px; }
.cookie-icon { font-size: 24px; flex-shrink: 0; }
.cookie-text p { font-size: 13px; color: var(--text-muted); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(8,8,14,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-link {
  color: rgba(226,226,240,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: 92vh;
  padding: 80px 5% 60px;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-orb--1 {
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.09) 0%, transparent 65%);
}
.hero-orb--2 {
  width: 400px; height: 400px;
  bottom: -80px; left: 5%;
  background: radial-gradient(circle, rgba(74,60,200,0.07) 0%, transparent 65%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 20px; color: #fff; }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 480px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 0; }
.stat { text-align: center; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-num { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 36px; background: rgba(201,168,76,0.2); flex-shrink: 0; }

.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.hero-img-wrap { position: relative; display: inline-block; }
.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 80px rgba(201,168,76,0.12);
  animation: heroFloat 7s ease-in-out infinite;
}
.hero-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 44px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.15) 0%, transparent 70%);
  z-index: -1;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0px) rotate(0.5deg); }
  50%      { transform: translateY(-16px) rotate(-0.5deg); }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 5%;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); white-space: nowrap; }
.trust-item span { font-size: 16px; }
.trust-sep { color: rgba(201,168,76,0.3); font-size: 20px; }

/* ---------- DISCLAIMER BAR ---------- */
.disclaimer-bar {
  background: rgba(201,168,76,0.07);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- BOOKS GRID ---------- */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.book-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.book-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.book-card-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 1;
}
.book-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--dark4);
}
.book-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.book-title  { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.35; }
.book-desc   { font-size: 13px; color: var(--text-muted); flex: 1; line-height: 1.55; }
.book-price  {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.book-card .btn { margin-top: 4px; }

/* ---------- COURSES GRID ---------- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.course-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(26,26,46,0.15);
}
.course-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  width: fit-content;
}
.course-title   { font-size: 20px; font-weight: 700; color: var(--text-light); line-height: 1.3; }
.course-desc    { font-size: 14px; color: #5a5a7a; flex: 1; }
.course-features { display: flex; flex-direction: column; gap: 6px; }
.course-features li { font-size: 13px; color: #4a4a6a; }
.course-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-dark);
}
.course-card .btn { margin-top: 4px; }

/* ---------- SBOTIO ---------- */
.sbotio-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sbotio-text h2 { color: #fff; margin-bottom: 16px; }
.sbotio-text p  { color: var(--text-muted); font-size: 17px; margin-bottom: 24px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feature-list li { color: var(--text-muted); font-size: 15px; }
.sbotio-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: heroFloat 8s 1s ease-in-out infinite;
}

/* ---------- CONTACT ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.contact-form-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-light); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #f8f7f4;
  border: 1.5px solid rgba(26,26,46,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.recaptcha-notice { font-size: 11px; color: #9a9ab0; margin-bottom: 16px; }
.recaptcha-notice a { color: #7a7a9a; }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert-success { background: #e8f9ee; border: 1px solid #5abf7f; color: #276940; }
.alert-error   { background: #fde8e8; border: 1px solid #e06060; color: #7a1a1a; }

.contact-info-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-card h3 { color: #fff; font-family: var(--font-display); font-size: 22px; }
.contact-info-card p  { color: var(--text-muted); font-size: 14px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}
.contact-link:hover { color: var(--gold); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 14px; color: var(--text-muted); max-width: 240px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.footer-links a, .footer-links button {
  font-size: 14px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  padding: 0;
  transition: var(--transition);
}
.footer-links a:hover, .footer-links button:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.affiliate-note  { font-size: 12px; color: rgba(107,107,138,0.7); }

/* ---------- MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.modal.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid var(--border);
  min-height: 60px;
  flex-shrink: 0;
}
.modal-tabs {
  display: flex;
  gap: 4px;
}
.modal-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}
.modal-tab:hover  { color: #fff; background: rgba(255,255,255,0.06); }
.modal-tab.active { color: var(--gold); background: rgba(201,168,76,0.1); }
.modal-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { border-color: var(--gold); color: #fff; }
.modal-body {
  overflow-y: auto;
  padding: 32px 36px;
  flex: 1;
  scroll-behavior: smooth;
}
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.modal-tab-content { display: none; }
.modal-tab-content.active { display: block; }
.modal-tab-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  margin-bottom: 6px;
}
.modal-tab-content h3 {
  font-size: 16px;
  color: var(--gold-light);
  margin-top: 24px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.modal-tab-content p,
.modal-tab-content li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.modal-tab-content ul { list-style: disc; padding-left: 20px; margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.modal-tab-content a { color: var(--gold); }
.modal-tab-content address { margin-top: 8px; }
.modal-tab-content code {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
}
.legal-intro { font-size: 13px; color: rgba(107,107,138,0.8); margin-bottom: 20px; font-style: italic; }
.modal-footer {
  padding: 20px 36px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* ---------- LOADING SKELETON ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--dark3) 25%, var(--dark4) 50%, var(--dark3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; padding-top: 60px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-img { max-width: 320px; margin: 0 auto; }
  .sbotio-wrap { grid-template-columns: 1fr; text-align: center; }
  .sbotio-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .feature-list { align-items: center; }
  /* eBooks Grid für Tablet */
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    visibility: hidden;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 99;
  }
  .nav-links.open { 
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }
  .nav-link { padding: 12px 16px; border-radius: 8px; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .modal-body { padding: 24px 20px; }
  .modal-header { padding: 0 16px; }
  .modal-footer { padding: 16px 20px; }
  .desktop-only { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-sep { display: none; }
  .trust-inner { gap: 16px 24px; }
  .books-grid { 
    grid-template-columns: 1fr; 
    gap: 20px;
  }
  /* Verbesserte eBook-Karten für mobile */
  .book-card {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
  .book-card-img {
    height: 200px;
  }
  .book-card-body {
    padding: 16px;
  }
  .book-title {
    font-size: 16px;
  }
  .book-desc {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ── eBOOK KARTEN (Hochformat) ──────────────────────────── */
.book-card-img-wrap { position: relative; overflow: hidden; background: var(--dark4); }
.book-card-img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s ease; }
.book-card:hover .book-card-img { transform: scale(1.04); }
.book-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.book-meta   { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }
.book-price  { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); }
.book-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }

/* ── LOGO PNG ────────────────────────────────────────────── */

/* Navbar Logo – logo_white.png (transparenter Hintergrund) */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 4px 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
  transform: scale(1.03);
}

/* Footer Logo – logo_white.png (transparenter Hintergrund, dunkler Footer) */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo-img {
  height: 72px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer-logo-link:hover .footer-logo-img {
  opacity: 0.8;
  transform: scale(1.04);
}

/* Alten Text-Logo-Fallback ausblenden */
.nav-logo span { display: none; }

/* Responsive: etwas kleiner auf Mobilgeräten */
@media (max-width: 480px) {
  .nav-logo-img  { height: 36px; }
  .footer-logo-img { height: 56px; }
}

/* ══════════════════════════════════════════════════════════
   LOGO – überarbeitete Einbindung
   ══════════════════════════════════════════════════════════ */

/* ── NAVBAR LOGO ──────────────────────────────────────────
   logo_white.png = transparenter Hintergrund, goldene Blüte + Text
   Passt perfekt auf dunkle Navbar                           */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 2px 0;
}
.nav-logo-img {
  height: 52px;          /* deutlich sichtbar */
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
  /* Kein border-radius – transparentes Logo braucht keinen */
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.82;
  transform: scale(1.04);
}

/* ── HERO LOGO ────────────────────────────────────────────
   Großes Logo mittig über der Überschrift, leichter Glow    */
.hero-logo-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.hero-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Sanfter Gold-Glow passend zum Logo */
  filter: drop-shadow(0 0 22px rgba(212, 168, 40, 0.55))
          drop-shadow(0 0 6px  rgba(255, 240, 120, 0.30));
  animation: heroLogoFloat 4s ease-in-out infinite;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-6px); }
}

/* ── FOOTER LOGO ──────────────────────────────────────────
   logo_white.png im dunklen Footer                         */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  opacity: 0.90;
  filter: drop-shadow(0 0 10px rgba(212, 168, 40, 0.25));
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}
.footer-logo-link:hover .footer-logo-img {
  opacity: 1;
  transform: scale(1.04);
  filter: drop-shadow(0 0 18px rgba(212, 168, 40, 0.50));
}

/* ── Alten Text-Logo-Fallback deaktivieren ────────────── */
.nav-logo span { display: none !important; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-logo-img    { height: 42px; }
  .hero-logo-img   { height: 80px; }
  .footer-logo-img { height: 64px; }
}
@media (max-width: 480px) {
  .nav-logo-img    { height: 36px; }
  .hero-logo-img   { height: 64px; }
  .footer-logo-img { height: 52px; }
}