/* ============================================================
   PERSOENLICHKEITSMATRIX – style.css  (v3)
   ============================================================ */

/* === VARIABLES ================================================ */
:root {
  --bg:            #FAFAF5;
  --text:          #1C1C1C;
  --accent:        #8B7355;
  --gold:          #C9A84C;
  --gold-hover:    #A8893A;
  --accent-light:  #E5DDD0;
  --divider:       #E8E0D0;
  --white:         #FFFFFF;
  --warm:          #F5F0E8;
  --muted:         #4a4a4a;
  --card-rose:     #e8d8d8;
  --font-h:        'Cormorant Garamond', serif;
  --font-b:        'Raleway', sans-serif;
  --shadow:        0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover:  0 12px 40px rgba(0,0,0,0.12);
  --radius:        12px;
  --max:           1100px;
  --t:             0.25s ease;
}

/* === RESET ==================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.9; font-size: 16px; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: var(--font-b); cursor: pointer; border: none; background: none; }
img   { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; }
p { margin-bottom: 1em; color: var(--muted); }
p:last-child { margin-bottom: 0; }

/* === TYPOGRAPHY =============================================== */
h1, h2, h3 { font-family: var(--font-h); font-weight: 400; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(36px, 5vw, 72px); letter-spacing: 4px; text-transform: uppercase; }
h2 { font-size: clamp(24px, 3vw, 40px); letter-spacing: 1px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }

.divider-line { width: 48px; height: 2px; background: var(--accent); margin: 16px 0 32px; }

.content-list li {
  padding-left: 1.5em; position: relative; margin-bottom: 0.6em;
  font-size: 0.9rem; color: var(--muted); line-height: 1.78;
}
.content-list li::before { content: '–'; position: absolute; left: 0; color: var(--accent); }

/* === LAYOUT =================================================== */
.wrap        { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section     { padding: 80px 0; }
.section-sm  { padding: 48px 0; }
.two-col     { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col-65  { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.bg-warm     { background: var(--warm); }

/* === NAVIGATION =============================================== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.site-header.scrolled {
  border-bottom-color: var(--divider);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.nav-wrap {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  overflow: visible;
}

/* Logo: image + text */
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-img {
  width: 52px; height: auto;
  object-fit: contain; flex-shrink: 0;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-h); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; color: var(--text); white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-links li a {
  font-family: var(--font-b); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted);
  padding: 4px 0; display: block; transition: color var(--t); white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-links li a:hover      { color: var(--gold); transition: color 0.2s ease; }
.nav-links li a.nav-active { color: var(--gold); border-bottom-color: var(--gold); }

/* Cart */
.nav-cart-link {
  color: #1C1C1C;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 6px;
  border-radius: 6px;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.nav-cart-link:hover { color: var(--gold); }
.nav-cart-link svg { display: block; width: 22px; height: 22px; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 6px;
  border-radius: 4px; transition: background var(--t);
}
.nav-toggle:hover { background: rgba(139,115,85,0.09); }
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === BUTTONS ================================================== */
.btn {
  display: inline-block; background: var(--gold); color: var(--white);
  border-radius: 6px; padding: 13px 32px; font-family: var(--font-b);
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
}
.btn-white {
  background: white; color: var(--accent);
  box-shadow: none;
}
.btn-white:hover { background: var(--accent-light); color: var(--text); transform: translateY(-1px); }

/* === HERO – FULL BLEED ======================================= */
.hero {
  position: relative; width: 100%;
  height: 70vh; min-height: 480px; overflow: hidden;
}
.hero-tall   { height: 100vh; min-height: 600px; }
.hero-medium { height: 80vh; min-height: 500px; }

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  max-width: none; /* override global img max-width */
}
.hero-overlay {
  position: absolute; inset: 0;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; text-align: center; color: white;
  padding: 40px;
}
.hero-content h1 {
  color: white; font-size: clamp(36px, 6vw, 80px);
  letter-spacing: 4px; margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content p {
  color: rgba(255,255,255,0.9); font-family: var(--font-h);
  font-style: italic; font-size: clamp(1rem, 2vw, 1.35rem);
  margin-bottom: 0; text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
.hero-content .btn { margin-top: 28px; }
.hero-icon {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; margin-bottom: 24px;
  border: 3px solid rgba(255,255,255,0.6);
  flex-shrink: 0; max-width: none;
  display: block;
}

/* Blurred hero bg */
.hero-bg-blur { filter: blur(2px); transform: scale(1.05); }

/* Arch hero (feedback) */
.hero-arch {
  border-radius: 0 0 50% 50% / 0 0 80px 80px;
}

/* Scroll-down arrow */
.hero-arrow {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); color: rgba(255,255,255,0.75);
  animation: bounceDown 2s ease infinite; z-index: 3;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Feedback hero: CSS gradient fallback */
.hero-gradient {
  background: linear-gradient(135deg, #d4a5a5 0%, #c9b8c8 50%, #b8c4d4 100%);
}

/* === HOME PAGE – INTRO STRIP ================================= */
.home-intro-strip {
  max-width: var(--max); margin: 0 auto; padding: 72px 40px;
}
.home-intro-heading {
  font-family: var(--font-h); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400; letter-spacing: 1px; margin-bottom: 20px;
}
.home-intro-text { font-size: 0.95rem; color: var(--muted); line-height: 1.9; margin-bottom: 1em; }

/* === HOME CARDS (rose, floating icon) ======================== */
.home-cards-section { background: var(--warm); padding: 80px 0 100px; }
.home-cards-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 72px 40px 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 80px 40px;
}
/* Center orphan last card when it's alone in a row */
.home-cards-grid .home-card:last-child:nth-child(odd) {
  grid-column: 1 / 3; max-width: 50%; justify-self: center;
}
.home-card {
  background: var(--card-rose); border-radius: 12px;
  padding: 76px 40px 40px; text-align: center;
  position: relative; border: none; box-shadow: none;
  transition: transform var(--t);
}
.home-card:hover { transform: translateY(-4px); }
.home-card-icon {
  position: absolute; top: -48px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 96px; border-radius: 50%;
  overflow: hidden; background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
}
.home-card-icon img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.65;
  display: block; max-width: none;
}
.home-card h3 {
  font-family: var(--font-h); font-size: 22px; font-weight: 400;
  margin-bottom: 14px; color: var(--text);
}
.home-card p {
  font-size: 15px; line-height: 1.8; color: #4a4a4a; margin: 0;
}
.home-card-link {
  color: var(--accent); font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-decoration: none;
  display: block; margin-top: 20px; text-transform: uppercase;
  transition: color var(--t);
}
.home-card-link:hover { color: #6d5b42; }

/* === FREEBIE / WORKBOOK TWO-COL =========================== */
.home-twocol-section { padding: 80px 0; }
.home-twocol-section.bg-warm { background: var(--warm); }
.home-twocol-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.home-twocol-inner img { border-radius: var(--radius); }
.home-twocol-inner h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); letter-spacing: 2px; margin-bottom: 16px; }
.home-twocol-inner p  { font-size: 0.95rem; color: var(--muted); line-height: 1.9; margin-bottom: 1em; }

/* === STANDARD CARDS (angebote, matrixkurs, etc.) ============ */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border-left: 4px solid var(--accent);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-inner { padding: 36px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.card-badge {
  display: inline-block; font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.05em; color: var(--accent);
  background: rgba(139,115,85,0.1); padding: 4px 10px;
  border-radius: 20px; align-self: flex-start;
}
.card-title { font-family: var(--font-h); font-size: 1.45rem; font-weight: 600; line-height: 1.25; color: var(--text); }
.card-text  { font-size: 0.9rem; color: var(--muted); line-height: 1.82; flex: 1; }
.card-footer-bar {
  padding: 20px 36px; border-top: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.card-price { font-family: var(--font-h); font-size: 22px; font-weight: 600; color: var(--gold); line-height: 1; }
.card-price span { display: block; font-family: var(--font-b); font-size: 0.7rem; font-weight: 400; color: var(--muted); margin-top: 3px; }

/* === KURS CARDS (fortbildungen.html) ======================== */
.kurs-cards-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.kurs-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.kurs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.kurs-card-header {
  height: 160px;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.kurs-card-header-titel {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
  letter-spacing: 1px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.kurs-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  max-width: none;
  display: block;
}
.kurs-card-header-title {
  font-family: var(--font-h); font-size: 19px; font-weight: 600;
  color: white; text-align: center; line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3); padding: 0 8px;
}
.kurs-card-body {
  padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.kurs-sessions {
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--accent); background: rgba(139,115,85,0.1);
  padding: 4px 10px; border-radius: 20px;
  display: inline-block; align-self: flex-start;
}
.kurs-text { font-size: 0.875rem; color: var(--muted); line-height: 1.78; flex: 1; }
.kurs-card-footer {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.kurs-preis { font-family: var(--font-h); font-size: 22px; font-weight: 600; color: var(--gold); }
.btn-kurs {
  display: inline-block; background: var(--gold); color: white;
  border-radius: 6px; padding: 9px 20px; font-family: var(--font-b);
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; transition: all 0.25s ease; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-kurs:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.45); }
.no-results { text-align: center; padding: 48px 24px; color: var(--muted); font-size: 0.95rem; }

/* === FILTER BAR ============================================= */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 36px; }
.search-wrap { position: relative; flex: 1 1 220px; }
.search-wrap svg { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--muted); width: 15px; height: 15px; display: block; }
.search-wrap input {
  width: 100%; padding: 10px 12px 10px 36px;
  border: 1px solid var(--divider); border-radius: 6px;
  font-family: var(--font-b); font-size: 0.88rem;
  background: var(--white); color: var(--text); outline: none;
  transition: border-color var(--t);
}
.search-wrap input:focus { border-color: var(--accent); }
.search-wrap input::placeholder { color: var(--muted); opacity: 0.6; }
.filter-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 16px; border: 1px solid var(--divider); border-radius: 20px;
  font-family: var(--font-b); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; background: var(--white);
  color: var(--muted); transition: all var(--t); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* === ACCORDION ============================================== */
.accordion-list { border-top: 1px solid var(--divider); }
.accordion-item { border-bottom: 1px solid var(--divider); }
.accordion-btn {
  width: 100%; padding: 18px 0; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  text-align: left; font-family: var(--font-b); font-size: 0.9rem;
  font-weight: 600; color: var(--text); transition: color var(--t);
}
.accordion-btn:hover { color: var(--accent); }
.accordion-icon {
  width: 24px; height: 24px; border: 1.5px solid var(--accent);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--accent); font-size: 1rem;
  flex-shrink: 0; line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-content.open { max-height: 800px; }
.accordion-inner { padding-bottom: 20px; font-size: 0.875rem; color: var(--muted); line-height: 1.82; }

/* === DETAIL PAGE (Booking Box) ============================== */
.booking-box {
  position: sticky; top: 84px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--divider); border-top: 4px solid var(--accent);
  box-shadow: var(--shadow); padding: 28px;
}
.booking-price { font-family: var(--font-h); font-size: 2.4rem; font-weight: 600; color: var(--gold); margin-bottom: 3px; }
.booking-vat   { font-size: 0.78rem; color: var(--muted); margin-bottom: 16px; }
.booking-meta  { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 24px; border-top: 1px solid var(--divider); padding-top: 16px; }
.booking-meta span { display: block; font-weight: 400; font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.booking-box .btn { width: 100%; text-align: center; display: block; }
.booking-trust { font-size: 0.76rem; color: var(--muted); text-align: center; margin-top: 12px; }

.breadcrumb { font-size: 0.78rem; color: var(--muted); margin-bottom: 32px; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color var(--t); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--divider); }
.detail-body p { font-size: 0.95rem; color: var(--muted); line-height: 1.9; }

/* === ANGEBOTE =============================================== */
.angebote-intro { max-width: 680px; margin-bottom: 48px; }
.angebote-intro p { font-size: 0.95rem; color: var(--muted); line-height: 1.9; }
.angebot-price-line { font-family: var(--font-h); font-size: 1.5rem; color: var(--gold); margin: 8px 0 16px; font-weight: 600; }
.angebot-meta-line  { font-size: 0.85rem; color: var(--muted); font-style: italic; margin-bottom: 4px; }

/* === MATRIXKURS ============================================= */
.kurs-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.kurs-feature-box { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border-left: 4px solid var(--accent); padding: 28px; }
.kurs-feature-box h3 { font-family: var(--font-h); font-size: 1.3rem; margin-bottom: 12px; font-weight: 600; }
.kurs-feature-box p  { font-size: 0.9rem; color: var(--muted); line-height: 1.82; }
.kurs-hinweis { background: rgba(139,115,85,0.06); border: 1px solid var(--accent-light); border-radius: var(--radius); padding: 24px 28px; margin: 32px 0; }
.kurs-hinweis h4 { font-family: var(--font-b); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 10px; }
.kurs-hinweis p  { font-size: 0.85rem; color: var(--muted); line-height: 1.82; }

/* === MATRIXKURS ABSCHLUSS ================================== */
.matrixkurs-abschluss {
  background: var(--warm);
  padding: 80px;
  margin-top: 60px;
}
.matrixkurs-abschluss-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.matrixkurs-abschluss-bild img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.matrixkurs-abschluss-text p {
  font-size: 17px;
  line-height: 2;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 30px;
}

/* === SHOP ================================================== */
.shop-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
}
.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.shop-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px;
}
.shop-hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 400;
  color: white;
  letter-spacing: 4px;
  margin: 0 0 16px;
}
.shop-hero-content p {
  font-family: var(--font-b);
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0;
}
.shop-section {
  background: #f5f5f5;
  padding: 60px 40px 80px;
}
.shop-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.produkt-karte {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.produkt-karte:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.produkt-bild-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f0f0f0;
}
.produkt-bild-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
  max-width: none;
}
.produkt-karte:hover .produkt-bild-wrapper img {
  transform: scale(1.03);
}
.produkt-info {
  padding: 16px 20px 20px;
}
.produkt-info h3 {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.4;
}
.produkt-preis {
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}
@media (max-width: 960px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .shop-section { padding: 40px 32px 60px; }
}
.kurs-quote { border-left: 4px solid var(--accent); padding: 24px 28px; background: var(--white); border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow); font-family: var(--font-h); font-size: 1.2rem; line-height: 1.75; color: var(--muted); font-style: italic; margin: 40px 0; }
.kurs-price-line { font-family: var(--font-h); font-size: 1.55rem; color: var(--gold); font-weight: 600; margin: 8px 0 24px; }

/* === ÜBER MICH ============================================= */
.ueber-images { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.ueber-img    { border-radius: var(--radius); object-fit: cover; max-height: 560px; }

/* === PROGRAMME ============================================= */
.programme-stack { display: flex; flex-direction: column; gap: 32px; }
.prog-card-body  { padding: 36px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.prog-price-line { font-family: var(--font-h); font-size: 1.35rem; color: var(--gold); font-weight: 600; margin: 4px 0; }
.prog-duration   { font-size: 0.83rem; color: var(--muted); font-style: italic; }

/* === FORTBILDUNGEN HERO ==================================== */
.fortbildungen-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: visible;
  border-radius: 0;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fortbildungen-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 0.85;
}
.fortbildungen-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 40px;
}
.fortbildungen-hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--text);
  margin: 0;
}
.fortbildungen-hero-content p {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.6);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
}

/* === FEEDBACK HERO ========================================= */
.feedback-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 60px 60px;
  margin-bottom: 60px;
}
.feedback-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
}
.feedback-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}
.feedback-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: white;
  gap: 12px;
}
.feedback-hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 400;
  color: white;
  margin: 0;
  letter-spacing: 4px;
}
.feedback-hero-content p {
  font-family: var(--font-b);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.feedback-hero-arrow {
  margin-top: 20px;
  opacity: 0.8;
}

/* === TESTIMONIALS (feedback.html) ========================== */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
}
.testimonial-card {
  background: var(--bg); border-radius: 16px; padding: 40px;
  border-left: 3px solid var(--accent); font-style: italic; line-height: 1.9;
  box-shadow: var(--shadow);
}
.testimonial-text { font-size: 0.9rem; color: var(--muted); line-height: 1.9; margin-bottom: 0; }
.testimonial-name {
  font-style: normal; font-weight: 600; color: var(--accent);
  margin-top: 20px; font-size: 14px; letter-spacing: 1px;
  display: block;
}

/* === FOOTER ================================================= */
.site-footer {
  background: #1C1C1C; color: var(--accent-light);
  padding: 40px 0; margin-top: 80px;
  font-size: 13px; letter-spacing: 1px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  padding-bottom: 24px; margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-family: var(--font-h); font-size: 1.1rem; letter-spacing: 2px; color: var(--accent-light); }
.footer-nav  { display: flex; gap: 24px; }
.footer-nav a { font-size: 13px; font-weight: 500; letter-spacing: 1px; color: var(--accent); transition: color var(--t); }
.footer-nav a:hover { color: var(--accent-light); }
.footer-copy { max-width: var(--max); margin: 0 auto; padding: 0 40px; font-size: 12px; text-align: center; color: rgba(255,255,255,0.3); letter-spacing: 1px; }

/* === UTILS ================================================== */
.mt-8  { margin-top: 8px; }  .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; } .mt-56 { margin-top: 56px; }
.mb-8  { margin-bottom: 8px; }  .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

/* === TELEGRAM SEKTION ======================================= */
.telegram-sektion {
  background: #FAFAF5;
  padding: 100px 80px;
  overflow: hidden;
}
.telegram-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.telegram-bild-bereich {
  position: relative;
  display: flex;
  justify-content: center;
}
.telegram-portrait {
  width: 100%;
  max-width: 380px;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.telegram-deko-kreis {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #F5F0E8;
  bottom: -40px;
  left: -40px;
  z-index: 1;
}
.telegram-tag {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #C9A84C;
  text-transform: uppercase;
  margin: 0 0 16px;
  display: inline-block;
  background: rgba(201,168,76,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
}
.telegram-text-bereich h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: #1C1C1C;
  margin: 0 0 20px;
  line-height: 1.25;
}
.telegram-linie {
  width: 50px;
  height: 2px;
  background: #C9A84C;
  margin-bottom: 24px;
}
.telegram-text-bereich p {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #4a4a4a;
  margin-bottom: 16px;
}
.telegram-highlights {
  display: flex;
  gap: 32px;
  margin: 32px 0 36px;
  padding: 28px;
  background: #F5F0E8;
  border-radius: 16px;
  border-left: 4px solid #C9A84C;
}
.telegram-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.telegram-highlight-zahl {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  color: #C9A84C;
  line-height: 1;
  margin-bottom: 6px;
}
.telegram-highlight-text {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  color: #8B7355;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.telegram-btn {
  display: inline-block;
  background: #1C1C1C;
  color: white;
  padding: 18px 48px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.telegram-btn:hover {
  background: #8B7355;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.telegram-hinweis {
  font-size: 12px !important;
  color: #aaa !important;
  margin-top: 14px !important;
  letter-spacing: 1px;
}

/* === TESTIMONIAL KARTEN (shared) ============================ */
.testimonial-karte {
  background: white;
  border-radius: 20px;
  padding: 44px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border-top: 3px solid #C9A84C;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-karte:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.testimonial-gross { grid-column: 1 / -1; }
.testimonial-dunkel {
  background: #1C1C1C;
  border-top: 3px solid #C9A84C;
}
.testimonial-dunkel .testimonial-text { color: rgba(255,255,255,0.8); }
.testimonial-dunkel .testimonial-name { color: #C9A84C; }
.testimonial-dunkel .testimonial-anführung { color: rgba(201,168,76,0.2); }
.testimonial-dunkel .testimonial-footer { border-top: 1px solid rgba(255,255,255,0.1); }
.testimonial-anführung {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  color: rgba(201,168,76,0.15);
  line-height: 0.8;
  margin-bottom: -10px;
}
.testimonial-text {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #4a4a4a;
  font-style: italic;
  flex: 1;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #E5DDD0;
}
.testimonial-sterne {
  color: #C9A84C;
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial-name {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #8B7355;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* === FREEBIE SEKTION ======================================== */
.freebie-sektion {
  background: linear-gradient(135deg, #1C1C1C 0%, #2C2416 100%);
  padding: 100px 80px;
  border-top: 3px solid #C9A84C;
}
.freebie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: center;
}
.freebie-tag {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #C9A84C;
  text-transform: uppercase;
  margin: 0 0 16px;
  display: inline-block;
  background: rgba(201,168,76,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
}
.freebie-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: white;
  margin: 0 0 12px;
  line-height: 1.25;
}
.freebie-unterzeile {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #C9A84C;
  font-style: italic;
  margin: 0 0 24px;
}
.freebie-linie {
  width: 50px;
  height: 2px;
  background: #C9A84C;
  margin-bottom: 28px;
}
.freebie-text p {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.freebie-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin: 28px 0 16px;
}
.freebie-liste {
  padding-left: 0;
  list-style: none;
  margin-bottom: 36px;
}
.freebie-liste li {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.freebie-liste li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C9A84C;
}
.freebie-btn {
  display: inline-block;
  background: #C9A84C;
  color: white;
  padding: 18px 48px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.freebie-btn:hover {
  background: #A8893A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}
.freebie-hinweis {
  font-size: 12px !important;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 14px !important;
  letter-spacing: 1px;
}
.freebie-visual {
  display: flex;
  justify-content: center;
}
.freebie-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.freebie-box-tag {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: #C9A84C;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.freebie-box-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.freebie-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  color: white;
  margin: 0 0 24px;
}
.freebie-box-items {
  margin-bottom: 28px;
}
.freebie-box-items p {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.freebie-box-items p::before {
  content: "✓  ";
  color: #C9A84C;
  font-weight: 600;
}
.freebie-box-btn {
  display: block;
  background: #C9A84C;
  color: white;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.freebie-box-btn:hover {
  background: #A8893A;
  transform: translateY(-2px);
}
.freebie-box-hinweis {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 16px !important;
  padding: 0 !important;
  border: none !important;
}
.freebie-box-hinweis::before {
  content: none !important;
}

/* === MEDIA QUERIES ========================================== */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-cart   { display: none; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    align-items: stretch; gap: 0; padding: 8px 0 16px;
    border-bottom: 1px solid var(--divider);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); display: none;
  }
  .nav-links.open { display: flex; animation: slideDown 0.25s ease; }
  .nav-links li a { padding: 13px 24px; font-size: 13px; border-radius: 0; border-bottom: none !important; }
  .nav-links li a.nav-active { border-left: 3px solid var(--gold); padding-left: 21px; color: var(--gold); }
  .nav-logo-text { font-size: 12px; }
  .nav-logo-img  { width: 44px; }
  .two-col, .home-twocol-inner { grid-template-columns: 1fr; gap: 32px; }
  .ueber-images   { grid-template-columns: 1fr; }
  .kurs-features  { grid-template-columns: 1fr; }
  .two-col-65 { grid-template-columns: 1fr; }
  .booking-box { position: static; }
}

@media (max-width: 640px) {
  .wrap, .home-cards-grid, .home-twocol-inner,
  .home-intro-strip, .footer-inner, .footer-copy { padding-left: 20px; padding-right: 20px; }
  .kurs-cards-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .home-cards-grid { grid-template-columns: 1fr; gap: 64px 0; }
  .home-cards-grid .home-card:last-child:nth-child(odd) { grid-column: 1; max-width: 100%; justify-self: stretch; }
  .section { padding: 48px 0; }
  .card-inner, .prog-card-body { padding: 24px; }
  .card-footer-bar { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .hero-content { padding: 20px; }
}

/* === CONVERSION OPTIMIERUNG ================================ */
.fade-in-element {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-element.sichtbar {
  opacity: 1;
  transform: translateY(0);
}

.social-proof-streifen {
  background: #1C1C1C;
  color: #C9A84C;
  text-align: center;
  padding: 20px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.social-proof-sterne {
  color: #C9A84C;
  font-size: 20px;
  margin-top: 6px;
  letter-spacing: 4px;
}

.problem-sektion {
  background: #F5F0E8;
  padding: 80px;
  text-align: center;
}
.problem-sektion h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: #1C1C1C;
  margin-bottom: 48px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: left;
}
.problem-item {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border-left: 3px solid #C9A84C;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
}
.problem-loesung {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: italic;
  color: #8B7355;
  margin-top: 20px;
}

.abschluss-cta {
  background: linear-gradient(135deg, #1C1C1C 0%, #2C2416 100%);
  border-top: 3px solid #C9A84C;
  color: white;
  text-align: center;
  padding: 100px 80px;
}
.abschluss-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
}
.abschluss-cta p {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-btn-gross {
  display: inline-block;
  background: #C9A84C;
  color: white;
  padding: 18px 48px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.cta-btn-gross:hover {
  background: #A8893A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
}
.cta-sub {
  font-size: 14px !important;
  margin-top: 24px !important;
}
.cta-sub a {
  color: #E5DDD0;
  text-decoration: none;
}

.testimonials-home {
  background: #FAFAF5;
  padding: 80px;
  text-align: center;
}
.testimonials-home h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 48px;
  color: #1C1C1C;
}
.testimonials-home .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 40px;
  text-align: left;
}
.testimonials-home .testimonial-card {
  background: white;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 3px solid #C9A84C;
  border-left: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonials-home .testimonial-card p {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #4a4a4a;
  font-style: italic;
  flex: 1;
  margin-bottom: 0;
}
.t-name {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #8B7355;
  letter-spacing: 1px;
}
.t-sterne {
  color: #8B7355;
  font-size: 16px;
  letter-spacing: 3px;
}
.alle-testimonials-link {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #8B7355;
  text-decoration: none;
  letter-spacing: 1px;
}

.vertrauen-zeile {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  font-size: 12px;
  color: #8B7355;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
  flex-wrap: wrap;
}
.vertrauen-zeile span::before {
  content: "✓ ";
}

.sticky-mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .testimonials-home .testimonials-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .abschluss-cta { padding: 60px 32px; }
  .problem-sektion { padding: 60px 32px; }
  .testimonials-home { padding: 60px 32px; }
}
@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #C9A84C;
    text-align: center;
    padding: 16px;
  }
  .sticky-mobile-cta a {
    color: white;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* === MOBILE FIXES 768px === */
  body { overflow-x: hidden; }

  .angebote-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .angebote-hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .angebote-hero-visual { display: none; }

  .hero-content h1 { font-size: 36px; }

  .testimonials-home .testimonials-grid {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .abschluss-cta { padding: 60px 20px; }
  .problem-sektion { padding: 60px 20px; }
  .testimonials-home { padding: 60px 20px; }

  .legal-content { padding: 40px 20px; }

  .matrixkurs-abschluss { padding: 40px 20px; }
  .matrixkurs-abschluss-inner { grid-template-columns: 1fr; }

  .uebermich-zweispaltig {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }

  .shop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
  }

  .home-cards-grid {
    grid-template-columns: 1fr;
    padding: 80px 20px 40px;
  }
  .home-card { margin-top: 60px; }

  section { padding-left: 20px; padding-right: 20px; }
  .hero { padding-left: 0; padding-right: 0; }

  .telegram-sektion { padding: 60px 20px; }
  .telegram-inner { grid-template-columns: 1fr; gap: 40px; }
  .telegram-portrait { height: 350px; max-width: 100%; }
  .telegram-deko-kreis { width: 200px; height: 200px; }
  .telegram-highlights { gap: 16px; padding: 20px; }
  .freebie-sektion { padding: 60px 20px; }
  .freebie-inner { grid-template-columns: 1fr; gap: 40px; }
  .freebie-box { padding: 32px 24px; }
  .matrixkurs-cta-bereich { padding: 60px 20px; }
  .kurs-quote { margin-left: 20px; margin-right: 20px; }
  .kurs-hinweis { margin-left: 20px; margin-right: 20px; }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }

  .hero-content h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .btn { width: 100%; text-align: center; box-sizing: border-box; }
  .angebot-btn { width: 100%; text-align: center; box-sizing: border-box; }

  .footer-nav { flex-direction: column; gap: 12px; align-items: center; }
}
