/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #5a9020;
  --green-bright: #78b51c;
  --green-footer: #3a7510;
  --dark:         #111111;
  --text:         #2a2a2a;
  --muted:        #555555;
  --light:        #f5f7f2;
  --white:        #ffffff;
  --red:          #d03020;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { word-break: break-word; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* NO backdrop-filter here – keeps nav from creating a containing block
     for position:fixed children (.nav-links overlay) */
  transition: transform .38s ease;
}
/* Visual background lives on ::before so nav itself stays filter-free */
nav::before {
  content: '';
  position: absolute; inset: 0;
  background: transparent;
  backdrop-filter: none;
  transition: background .35s, backdrop-filter .35s;
  z-index: -1;
  pointer-events: none;
}
/* Non-homepage: always solid */
nav.nav-solid::before {
  background: rgba(8,14,4,.95);
  backdrop-filter: blur(10px);
}
/* Homepage: solid after scrolling */
nav.scrolled::before {
  background: rgba(8,14,4,.92);
  backdrop-filter: blur(10px);
}
nav.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 50px; height: 50px; flex-shrink: 0; object-fit: contain; }
.nav-logo-text { color: #fff; font-size: 11.5px; font-weight: 700; line-height: 1.35; letter-spacing: .3px; }

.nav-links { display: flex; align-items: center; gap: 0; list-style-type: none; }
.nav-links li, .dropdown-menu, .dropdown-menu li { list-style-type: none; }
.nav-links > li { position: relative; display: flex; align-items: center; }
.nav-links > li + li::before { content: '·'; color: rgba(255,255,255,.38); padding: 0 2px; line-height: 1; }
.nav-links > li > a {
  color: #fff; text-decoration: none; font-size: 15.5px; font-weight: 500;
  transition: color .2s; white-space: nowrap;
  display: flex; align-items: center; gap: 5px; padding: 6px 14px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--green-bright); }

.nav-dropdown > a { cursor: pointer; }
.nav-dropdown > a::after {
  content: ''; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,.65);
  transition: transform .25s; flex-shrink: 0;
}
.nav-dropdown:hover > a::after,
.nav-dropdown.open > a::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff; border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  min-width: 230px; padding: 8px 0;
  opacity: 0; visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 200;
}
.dropdown-menu::before {
  content: ''; position: absolute;
  top: -7px; left: 50%; transform: translateX(-50%);
  border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 10px 22px;
  color: var(--text) !important; font-size: 13.5px; font-weight: 500;
  text-decoration: none; transition: background .15s, color .15s;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--light); color: var(--green) !important; }
.dropdown-menu a.active { background: var(--light); color: var(--green) !important; font-weight: 600; }

.nav-phone { display: flex; align-items: center; gap: 10px; color: #fff !important; text-decoration: none; }
.nav-phone-icon { width: 20px; height: 20px; flex-shrink: 0; }
.nav-phone-text { line-height: 1.35; }
.nav-phone-text .label { display: block; font-size: 11.5px; font-weight: 600; }
.nav-phone-text .num   { display: block; font-size: 13px; opacity: .82; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px; z-index: 1002;
}
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.nav-open { overflow: hidden; }

/* ===== TEL-LINKS ===== */
a.tel-link { color: inherit; text-decoration: none; pointer-events: none; cursor: default; }
@media (max-width: 600px) { a.tel-link { pointer-events: auto; cursor: pointer; } }

/* ===== FOOTER ===== */
footer { background: var(--green-footer); color: #fff; padding: 60px 48px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
  gap: 40px; align-items: start;
}
.footer-brand-name { font-size: 12.5px; font-weight: 700; line-height: 1.4; margin-top: 8px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 14px; margin-top: 4px; }
.footer-social a { color: #fff; opacity: .8; transition: opacity .2s; text-decoration: none; }
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; }
.footer-col h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 13.5px; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a.active { text-decoration: underline; }
.fc-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.fc-row svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.fc-row span, .fc-row a { font-size: 13.5px; color: rgba(255,255,255,.88); line-height: 1.5; }
.fc-row a { text-decoration: none; }

/* ===== SHARED COMPONENTS ===== */
.wrap { max-width: 1100px; margin: 0 auto; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text); line-height: 1.5; }
.chk {
  width: 24px; height: 24px; min-width: 24px;
  background: var(--green); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.chk svg { width: 13px; height: 13px; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; fill: none; }

.btn {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 14px 40px; background: var(--green); color: #fff;
  border: none; border-radius: 50px; font-size: 14.5px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: background .2s, transform .2s; line-height: 1.4;
}
.btn .sub-text { font-size: 11px; font-weight: 400; opacity: .85; }
.btn:hover { background: #4c7a1a; transform: translateY(-2px); }

/* ===== HOME PAGE ===== */

/* Hero */
#hero {
  position: relative; height: 100vh; min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden; background: #0e1c07;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video-wrap .wistia_embed,
.hero-video-wrap .wistia_embed > div,
.hero-video-wrap [class*="wistia_"] {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  padding: 0 !important; margin: 0 !important; transform: none !important;
}
.hero-video-wrap video {
  position: absolute !important;
  top: 50% !important; left: 50% !important;
  width:  max(100%, 177.78vh) !important;
  height: max(100%, 56.25vw)  !important;
  transform: translate(-50%, -50%) !important;
  object-fit: cover !important; pointer-events: none !important;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.3); z-index: 1; }
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1200px; padding: 0 80px;
  margin: 0 auto; text-align: center;
}
.hero-btn-wrap { display: flex; justify-content: center; margin-top: 36px; }
.sec-label {
  color: var(--green-bright); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px;
}
.hero-title { font-size: 40px; font-weight: 800; color: #fff; line-height: 1.22; margin-bottom: 22px; }
.hero-sub { font-size: 14.5px; color: rgba(255,255,255,.82); line-height: 1.75; margin: 0 auto 36px; max-width: 600px; }

/* Quote Banner */
.quote-banner {
  background: var(--green); color: #fff; text-align: center;
  padding: 17px 48px; font-size: 15.5px; font-weight: 500;
  font-style: italic; letter-spacing: .2px;
}

/* About */
#about { background: #fff; padding: 90px 48px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-label { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.about-title { font-size: 36px; font-weight: 800; color: var(--dark); line-height: 1.18; margin-bottom: 18px; }
.about-text { color: var(--muted); font-size: 14.5px; line-height: 1.75; margin-bottom: 26px; }

/* About Video */
.about-video { display: flex; align-items: center; justify-content: center; }
.about-video-player {
  width: 100%; aspect-ratio: 16 / 9;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,.15);
}

/* Video Placeholder (legacy, unused) */
.video-wrap {
  border-radius: 14px; overflow: hidden; border: 1px solid #e0e0e0;
  box-shadow: 0 6px 30px rgba(0,0,0,.1); background: #1a2d08;
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative;
}
.video-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a3208 0%, #2d4a14 100%);
}
.play-btn {
  position: relative; width: 62px; height: 62px;
  background: rgba(90,144,32,.92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; transition: transform .2s;
}
.video-wrap:hover .play-btn { transform: scale(1.08); }
.play-btn::after {
  content: ''; width: 0; height: 0;
  border: 12px solid transparent; border-left: 20px solid #fff; margin-left: 5px;
}
.video-dur { position: absolute; bottom: 10px; left: 12px; color: rgba(255,255,255,.8); font-size: 12px; z-index: 1; }

/* Challenges */
#challenges { position: relative; padding: 80px 48px; overflow: hidden; }
.bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.chal-bg { position: absolute; inset: 0; background: rgba(0,0,0,.62); z-index: 1; }
.chal-content { position: relative; z-index: 2; }
.chal-title { font-size: 42px; font-weight: 800; color: #fff; line-height: 1.18; margin-bottom: 16px; max-width: 680px; }
.chal-title .accent { color: var(--green-bright); }
.chal-sub { color: rgba(255,255,255,.75); font-size: 14.5px; max-width: 640px; margin-bottom: 48px; line-height: 1.75; }
.chal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.chal-card { background: rgba(255,255,255,.96); border-radius: 14px; padding: 32px 28px; }
.x-icon { width: 34px; height: 34px; margin-bottom: 16px; }
.chal-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.chal-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.72; }

/* Training */
#training { background: #fff; padding: 90px 48px; text-align: center; }
.training-label { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.training-title { font-size: 40px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.training-text { color: var(--muted); font-size: 14.5px; max-width: 720px; margin: 0 auto 36px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; text-align: left; }
.feat-card { background: var(--light); border-radius: 14px; padding: 34px 30px; }
.feat-card h3 { font-size: 20px; font-weight: 800; color: var(--green); margin-bottom: 16px; line-height: 1.28; }
.feat-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.72; }

/* Kursübersicht (Homepage-Sektion) */
#kurse { position: relative; padding: 80px 48px; overflow: hidden; }
.kurse-bg { position: absolute; inset: 0; background: rgba(0,0,0,.55); z-index: 1; }
.kurse-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.55fr; gap: 60px; align-items: start; }
.kurse-left h2 { font-size: 40px; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.kurse-left p  { color: rgba(255,255,255,.8); font-size: 14.5px; line-height: 1.75; margin-bottom: 30px; }
.kurse-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.kurs-card { background: #fff; border-radius: 13px; padding: 24px 22px; display: block; text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease; }
.kurs-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.kurs-card.full { grid-column: span 2; }
.kurs-icon-box { width: 40px; height: 40px; background: #edf5db; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.kurs-icon-box svg { width: 22px; height: 22px; }
.kurs-card h3 { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 9px; }
.kurs-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Über mich + Galerie nebeneinander */
.um-galerie-wrap { display: grid; grid-template-columns: 1fr 1fr; }

/* Über mich */
#ueber-mich { background: #fff; padding: 90px 48px; }
.um-galerie-wrap #ueber-mich { padding: 60px 32px; }
.um-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.um-galerie-wrap .um-grid { grid-template-columns: 1fr; gap: 28px; }
.um-galerie-wrap .um-photo { aspect-ratio: 3/2; }
.um-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; position: relative; }
.um-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.um-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.25) 0%, transparent 60%); }
.um-right h2 { font-size: 33px; font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
.um-right p  { font-size: 14.5px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.cred-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 22px 0; }
.cred-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text); line-height: 1.5; }
.cred-list li .chk { margin-top: 1px; }
.signature { margin-top: 22px; }
.signature strong { display: block; font-size: 15px; font-weight: 700; }
.signature span   { font-size: 13px; color: var(--muted); }

/* Galerie */
#galerie { padding: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.gal-item { aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.gal-item:hover img { transform: scale(1.06); }

/* Testimonials */
#testimonials { position: relative; padding: 90px 48px; overflow: hidden; margin-top: 36px; }
.test-bg { position: absolute; inset: 0; background: rgba(0,0,0,.62); z-index: 1; }
.test-content { position: relative; z-index: 2; text-align: center; }
.test-title { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 22px; }
.g-rating { display: flex; flex-direction: column; align-items: center; margin-bottom: 52px; }
.g-logo { width: 36px; height: 36px; margin-bottom: 8px; }
.stars { color: #f4c030; font-size: 22px; letter-spacing: 3px; margin-bottom: 6px; }
.rating-info { color: rgba(255,255,255,.78); font-size: 13.5px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; text-align: left; }
.rev-card { background: #fff; border-radius: 14px; padding: 32px 28px; }
.rev-stars { color: #f4c030; font-size: 16px; margin-bottom: 12px; }
.rev-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.rev-text { font-size: 13.5px; color: var(--muted); line-height: 1.72; margin-bottom: 18px; }
.rev-author { font-size: 13.5px; font-weight: 600; color: var(--text); font-style: italic; }

/* FAQ */
#faq { position: relative; padding: 90px 48px; overflow: hidden; }
.faq-bg-layer { position: absolute; inset: 0; background: linear-gradient(115deg,#b8d080,#7fa830); opacity: .12; z-index: 0; }
.faq-bg-white { position: absolute; inset: 0; background: linear-gradient(to right, rgba(255,255,255,.98) 55%, rgba(255,255,255,.78) 100%); z-index: 1; }
.faq-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.55fr; gap: 80px; align-items: start; }
.faq-left h2 { font-size: 36px; font-weight: 800; color: var(--green); line-height: 1.18; margin-bottom: 18px; }
.faq-intro { font-size: 14.5px; font-weight: 600; color: var(--text); line-height: 1.65; margin-bottom: 32px; }
.contact-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.c-icon-box { width: 42px; height: 42px; border-radius: 9px; background: var(--dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon-box svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.c-text .c-label { display: block; font-size: 12px; color: var(--muted); }
.c-text .c-val   { display: block; font-size: 14.5px; font-weight: 600; color: var(--dark); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid #e0e0e0; border-radius: 12px; overflow: hidden; background: #fff; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px; cursor: pointer; font-size: 14.5px; font-weight: 600;
  color: var(--dark); user-select: none; transition: background .15s;
}
.faq-q:hover { background: #fafafa; }
.faq-toggle {
  width: 28px; height: 28px; border: 2px solid #aaa; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300; flex-shrink: 0; color: var(--text);
  line-height: 1; transition: transform .3s, border-color .3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); border-color: var(--green); color: var(--green); }
.faq-a { display: none; padding: 0 22px 20px; font-size: 13.5px; color: var(--muted); line-height: 1.72; }
.faq-item.open .faq-a { display: block; }

.mt-auto { display: flex; justify-content: center; }

/* ===== KURS-SEITEN (seminare + kurse/*) ===== */
.kurs-hero {
  position: relative; min-height: 52vh; display: flex;
  align-items: center; padding: 120px 48px 64px;
  overflow: hidden; background: #0e1c07;
}
.kurs-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.58)),
              linear-gradient(145deg, #0c1a06 0%, #1d3010 55%, #0c1806 100%);
}
.kurs-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.kurs-badge {
  display: inline-block; background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 18px;
}
.kurs-hero h1 { font-size: 52px; font-weight: 800; color: #fff; line-height: 1.12; margin-bottom: 18px; }
.kurs-hero p  { font-size: 16px; color: rgba(255,255,255,.82); line-height: 1.75; max-width: 640px; }
.kurs-body { flex: 1; background: #fff; padding: 72px 48px 80px; }
.kurs-wrap { max-width: 1000px; margin: 0 auto; }
.kurs-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.kurs-main h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.25; }
.kurs-main p  { font-size: 14.5px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.kurs-main h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
.kurs-info-card { background: var(--light); border-radius: 16px; padding: 32px 28px; position: sticky; top: 100px; }
.kurs-info-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #e0e0e0; }
.info-row:last-of-type { border-bottom: none; margin-bottom: 24px; }
.info-icon { width: 36px; height: 36px; background: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.info-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); }
.info-text span   { font-size: 12.5px; color: var(--muted); }
.btn-kurs {
  display: block; width: 100%; padding: 15px; background: var(--green); color: #fff;
  border: none; border-radius: 10px; font-family: 'Poppins', sans-serif;
  font-size: 14.5px; font-weight: 700; text-align: center; text-decoration: none;
  cursor: pointer; transition: background .2s, transform .18s;
}
.btn-kurs:hover { background: #4c7a1a; transform: translateY(-2px); }

/* Preistabelle (hundebetreuung) */
.price-table { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: 13px; }
.price-table tr { border-bottom: 1px solid #e0e0e0; }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 10px 0; color: var(--text); line-height: 1.4; }
.price-table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; padding-left: 12px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.62);
  margin-bottom: 20px; flex-wrap: wrap; justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,.62); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb .bc-sep { color: rgba(255,255,255,.35); font-size: 11px; }
.breadcrumb .bc-current { color: rgba(255,255,255,.85); }
.kontakt-bc { position: absolute; top: 86px; left: 0; right: 0; padding: 0 48px; z-index: 2; justify-content: center; }

/* ===== LEGAL-SEITEN (datenschutz, impressum, agb) ===== */
.legal-hero {
  background: linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.60)),
              linear-gradient(145deg, #0c1a06 0%, #1d3010 55%, #0c1806 100%);
  padding: 140px 48px 64px; text-align: center;
}
.legal-hero h1 { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.legal-hero p  { color: rgba(255,255,255,.72); font-size: 14.5px; }
.legal-body { flex: 1; background: #fff; padding: 72px 48px 80px; }
.legal-wrap { max-width: 780px; margin: 0 auto; }
.legal-wrap h2 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 40px 0 12px; border-left: 4px solid var(--green); padding-left: 14px; }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin: 20px 0 8px; }
.legal-wrap p  { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-wrap a  { color: var(--green); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-wrap ul { padding-left: 20px; margin-bottom: 12px; }
.legal-wrap ul li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 4px; }
.notice-box { background: var(--light); border-radius: 10px; padding: 18px 22px; margin: 20px 0; font-size: 13.5px; color: var(--muted); border-left: 3px solid var(--green); }

/* ===== KONTAKT-SEITE ===== */
#kontakt-section { flex: 1; position: relative; padding: 120px 48px 80px; display: flex; align-items: center; }
.kontakt-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.60)),
              linear-gradient(145deg, #0c1a06 0%, #1d3010 55%, #0c1806 100%);
}
.kontakt-wrap {
  position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.kontakt-wrap--full {
  display: block;
}
.form-card { background: #fff; border-radius: 20px; padding: 44px 40px; box-shadow: 0 24px 64px rgba(0,0,0,.30); }
.form-card h1,
.form-card h2 { font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 28px; line-height: 1.2; }
.form-msg { display: none; padding: 13px 16px; border-radius: 10px; font-size: 13.5px; font-weight: 500; margin-bottom: 20px; }
.form-msg.success { background: #edf5db; color: #3a7510; border: 1px solid #b8d880; }
.form-msg.error   { background: #fdf0ee; color: #d03020; border: 1px solid #f0b0a0; }
.radio-row { display: flex; gap: 22px; margin-bottom: 22px; align-items: center; flex-wrap: wrap; }
.radio-opt { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; }
.radio-opt input[type="radio"] { width: 17px; height: 17px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 7px; letter-spacing: .2px; }
.form-control {
  width: 100%; padding: 13px 16px; border: 1.5px solid #e0e0e0; border-radius: 10px;
  font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--text);
  background: #fff; outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-control::placeholder { color: #bbb; }
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(90,144,32,.12); }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
  padding-right: 40px; cursor: pointer;
}
select.form-control:invalid { color: #bbb; }
select.form-control option { color: var(--text); }
.btn-submit {
  width: 100%; padding: 16px; background: var(--green); color: #fff;
  border: none; border-radius: 10px; font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background .2s, transform .18s;
  margin-top: 6px; margin-bottom: 0; letter-spacing: .2px;
}
.btn-submit:hover:not(:disabled) { background: #4c7a1a; transform: translateY(-2px); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { background: #b0b0b0; cursor: not-allowed; }
.check-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-bottom: 18px; }
.check-consent input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--green); cursor: pointer; }
.check-consent a { color: var(--green); text-decoration: underline; }
.info-panel { color: #fff; padding-top: 12px; }
.info-panel h2 { font-size: 36px; font-weight: 800; color: #fff; line-height: 1.18; margin-bottom: 18px; }
.info-panel > p { font-size: 14.5px; color: rgba(255,255,255,.82); line-height: 1.75; margin-bottom: 30px; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.benefit-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; color: #fff; }
.chk-green { width: 26px; height: 26px; background: var(--green); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chk-green svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.contact-photo { width: 100%; border-radius: 16px; overflow: hidden; aspect-ratio: 16/10; background: linear-gradient(155deg, #2d4a14 0%, #1a3008 100%); }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* ===== AGB-MODAL ===== */
.agb-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 9999;
  align-items: center; justify-content: center;
  padding: 20px;
}
.agb-modal-box {
  background: #fff; border-radius: 16px;
  width: 100%; max-width: 680px; max-height: 82vh;
  overflow-y: auto; padding: 44px 40px 36px;
  position: relative; box-shadow: 0 24px 72px rgba(0,0,0,.30);
}
.agb-modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 22px;
  cursor: pointer; color: var(--muted); line-height: 1;
  padding: 4px 8px; border-radius: 6px; transition: background .15s;
}
.agb-modal-close:hover { background: #f0f0f0; }
.agb-modal-box h2 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; padding-right: 32px; }
.agb-modal-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.agb-modal-box h3 { font-size: 14.5px; font-weight: 700; color: var(--dark); margin: 22px 0 8px; border-left: 3px solid var(--green); padding-left: 10px; }
.agb-modal-box p { font-size: 13.5px; color: var(--muted); line-height: 1.75; margin-bottom: 6px; }

/* ===== RESPONSIVE ===== */

/* Medium nav */
@media (max-width: 1100px) {
  .nav-inner { padding: 16px 24px; }
  .nav-links > li > a { padding: 6px 10px; }
  .nav-phone-text .label { display: none; }
}

/* Tablet */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-title { font-size: 34px; }
}

/* Mobile */
@media (max-width: 860px) {
  /* Nav */
  .hamburger { display: flex; }
  .nav-phone  { display: none; }
  .nav-inner  { padding: 14px 24px; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    background: rgba(5,10,3,.97);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    display: none;
    z-index: 999;
    padding: 140px 24px 40px;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li + li::before { display: none; }
  .nav-links > li { flex-direction: column; align-items: center; width: 100%; }
  .nav-links > li > a { font-size: 22px; font-weight: 600; padding: 8px 0; justify-content: center; width: 100%; text-align: center; }
  .dropdown-menu {
    position: static; transform: none !important; box-shadow: none;
    background: rgba(255,255,255,.07); border-radius: 10px;
    opacity: 1 !important; visibility: visible !important;
    min-width: 240px; margin-top: 6px; display: none;
  }
  .dropdown-menu::before { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a {
    color: rgba(255,255,255,.75) !important;
    font-size: 15px; text-align: center; padding: 10px 18px;
    white-space: normal;
  }
  .dropdown-menu a:hover { color: var(--green-bright) !important; background: transparent; }

  /* Hero */
  .hero-content { padding: 0 15px; }
  .kontakt-bc   { left: 15px; }
  .hero-title   { font-size: 26px; }
  .hero-sub     { font-size: 14px; }

  /* Quote Banner */
  .quote-banner { font-size: 13.5px; padding: 14px 15px; }

  /* About */
  #about        { padding: 60px 15px; }
  .about-grid   { grid-template-columns: 1fr; gap: 36px; }
  .about-title  { font-size: 28px; }

  /* Challenges */
  #challenges   { padding: 60px 15px; }
  .chal-grid    { grid-template-columns: 1fr; }
  .chal-title   { font-size: 28px; }

  /* Training */
  #training       { padding: 60px 15px; }
  .training-title { font-size: 26px; }
  .feature-grid   { grid-template-columns: 1fr; }

  /* Kurse (Homepage-Sektion) – Regeln in eigenen Breakpoints */

  /* Über mich + Galerie */
  .um-galerie-wrap { grid-template-columns: 1fr; }
  #ueber-mich   { padding: 60px 15px; }
  .um-galerie-wrap #ueber-mich { padding: 60px 15px; }
  .um-grid      { grid-template-columns: 1fr; }
  .um-photo     { aspect-ratio: 4/3; max-height: 320px; }
  .um-photo img { object-position: top; }
  .um-right h2  { font-size: 26px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  #testimonials  { padding: 60px 15px; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .test-title    { font-size: 26px; }

  /* FAQ */
  #faq       { padding: 60px 15px; }
  .faq-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-left h2 { font-size: 28px; }

  /* Footer */
  footer        { padding: 40px 15px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* Kurs-Seiten */
  .kurs-hero      { padding: 110px 15px 48px; }
  .kurs-hero h1   { font-size: 34px; }
  .kurs-body      { padding: 48px 15px 60px; }
  .kurs-grid      { grid-template-columns: 1fr; gap: 40px; }
  .kurs-info-card { position: static; }

  /* Legal-Seiten */
  .legal-hero    { padding: 120px 15px 48px; }
  .legal-hero h1 { font-size: 30px; }
  .legal-body    { padding: 48px 15px 60px; }

  /* Kontakt */
  .kontakt-wrap      { grid-template-columns: 1fr; }
  .info-panel        { padding-top: 0; order: -1; }
  .info-panel h2     { font-size: 28px; }
  .info-panel > p    { font-size: 14px; }
  #kontakt-section   { padding: 110px 15px 60px; }
}

/* Kurse: gestapeltes Layout (Text über Grid) – 2 Kacheln */
@media (max-width: 1023px) {
  #kurse         { padding: 60px 15px; }
  .kurse-inner   { grid-template-columns: 1fr; gap: 40px; }
  .kurse-left h2 { font-size: 30px; }
  .kurse-grid    { grid-template-columns: repeat(2, 1fr); }
}

/* Kurse: schmales Mobile – 1 Kachel */
@media (max-width: 767px) {
  .kurse-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .input-row    { grid-template-columns: 1fr; }
  .form-card    { padding: 32px 22px; }
  .form-card h1, .form-card h2 { font-size: 24px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title   { font-size: 22px; }
  .chal-title   { font-size: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .nav-inner    { padding: 12px 18px; }
  .nav-logo img { width: 40px; height: 40px; }
}
