/* ═══════════════════════════════════════
   CSS VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --bg:         #0d1a2e;
  --bg-card:    #101f38;
  --bg-footer:  #101f38;
  --accent:     #c9a227;
  --accent-h:   #e0b93a;
  --accent2:    #d4a017;
  --text:       #f0f4f8;
  --text-muted: #7a93b0;
  --text-dim:   #b8c8d8;
  --border:     rgba(255,255,255,0.07);
  --header-h:   72px;
  --radius:     12px;
  --max-w:      1200px;
  --font-main:  'Syne', sans-serif;
  --font-body:  'Roboto Slab', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════
   BODY & BACKGROUND
═══════════════════════════════════════ */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(201,162,39,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  background-attachment: fixed;
}

body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::before {
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.09) 0%, rgba(201,162,39,0.04) 35%, transparent 70%);
  top: -220px; right: -180px;
  animation: ambient-drift-a 18s ease-in-out infinite alternate;
}
body::after {
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.07) 0%, rgba(201,162,39,0.03) 35%, transparent 70%);
  bottom: -180px; left: -150px;
  animation: ambient-drift-b 22s ease-in-out infinite alternate;
}
@keyframes ambient-drift-a {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-60px,80px) scale(1.15); }
}
@keyframes ambient-drift-b {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(80px,-60px) scale(1.12); }
}

section, header, footer, nav { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   HEADER & NAV
═══════════════════════════════════════ */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
#masthead.scrolled {
  background: rgba(10,22,44,0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-logo span { color: var(--accent); }

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  list-style: none;
  flex-shrink: 0;
}
.nav-desktop > li > a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: var(--header-h);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-desktop > li > a:hover,
.nav-desktop > li > a.active { color: var(--accent); }

/* Burger — hidden by default, shown on mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(22,27,34,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 20px 24px 32px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s, transform 0.25s;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
#mobile-nav.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu { list-style: none; }
.mobile-menu > li { border-bottom: 1px solid var(--border); }
.mobile-menu > li > a {
  display: block;
  padding: 14px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-noise {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0;
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.hero-orb-1 { width: 420px; height: 420px; background: rgba(201,162,39,0.12); top: -80px; right: -60px; }
.hero-orb-2 { width: 320px; height: 320px; background: rgba(212,160,23,0.1); bottom: -40px; left: -40px; animation-delay: -4s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(201,162,39,0.08); top: 40%; left: 30%; animation-delay: -8s; }
@keyframes orb-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(20px,-20px) scale(1.08); }
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  padding: 0 24px;
  padding-top: var(--header-h);
  max-width: 820px;
  animation: hero-in 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 999px;
  background: rgba(201,162,39,0.06);
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-h1 .accent { color: var(--accent); }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--accent); }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

/* Hero logotype watermark */
.hero-logotype {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none; z-index: 1;
  opacity: 0.13;
  width: min(78vw, 880px);
  animation: logotype-fade-in 1.6s 0.2s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-logotype svg { width: 100%; height: auto; display: block; }
.hero-logotype .lt-line { fill: #ffffff; opacity: 0; animation: lt-rise 1.4s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-logotype .lt-line-1 { animation-delay: 0.4s; }
.hero-logotype .lt-line-3 { animation-delay: 0.7s; }
.hero-logotype .lt-tagline { fill: var(--accent); opacity: 0; letter-spacing: 0.18em; animation: lt-tag-in 1.0s 1.2s cubic-bezier(.4,0,.2,1) forwards; }
.hero-logotype .lt-divider { stroke: var(--accent); stroke-width: 1; opacity: 0; animation: lt-divider-grow 1.0s 1.0s cubic-bezier(.6,0,.2,1) forwards; transform-origin: center; }
@keyframes logotype-fade-in { to { opacity: 0.13; } }
@keyframes lt-rise { 0% { opacity:0; transform:translateY(20px); } 100% { opacity:1; transform:translateY(0); } }
@keyframes lt-tag-in { 0% { opacity:0; } 100% { opacity:0.95; } }
@keyframes lt-divider-grow { 0% { opacity:0; transform:scaleX(0); } 100% { opacity:0.6; transform:scaleX(1); } }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--accent); color: #000; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,39,0.3); }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s ease;
}
.btn-primary:hover::after { left: 150%; }

.btn-secondary { background: transparent; color: var(--accent); border-color: rgba(201,162,39,0.75); }
.btn-secondary:hover { background: rgba(201,162,39,0.08); border-color: var(--accent); transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff !important;
  border-radius: 999px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 6px 24px rgba(37,211,102,0.25);
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1fb755; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.4); }
.btn-whatsapp svg { width: 20px; height: 20px; flex-shrink: 0; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 8px 28px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════
   SECTIONS COMMON
═══════════════════════════════════════ */
section { padding: 100px 24px; }
section + section { border-top: 1px solid rgba(201,162,39,0.07); }

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

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.7;
}

.accent { color: var(--accent); }

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   SUBPAGE HERO
═══════════════════════════════════════ */
.subpage-hero {
  padding: 130px 35px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(201,162,39,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(201,162,39,0.07) 0%, transparent 60%);
}
.subpage-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, black 20%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.subpage-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.5), transparent);
}
.subpage-hero > * { position: relative; z-index: 1; }
.subpage-hero h1 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.subpage-hero h1 .accent { color: var(--accent); }
.subpage-hero .hero-tag {
  background: transparent; border: none; padding: 0;
  letter-spacing: 0.2em; font-size: 0.72rem; gap: 10px;
}
.subpage-hero .hero-tag::before { display: none; }
.subpage-hero p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.subpage-hero .hero-btns { justify-content: center; }

/* ═══════════════════════════════════════
   LEISTUNGEN / CARDS
═══════════════════════════════════════ */
#leistungen { background: var(--bg); }
.leistungen-header { margin-bottom: 56px; }

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.leistungen-grid--4 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 0 auto;
}

.leistung-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.leistung-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(201,162,39,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.leistung-card:hover {
  border-color: rgba(201,162,39,0.45) !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,162,39,0.15) !important;
}
.leistung-card:hover::before { opacity: 1; }

.card-emoji {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  color: var(--accent);
  display: flex; align-items: center;
}
.card-emoji svg { width: 28px; height: 28px; stroke: currentColor; }
.card-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.card-desc { font-family: var(--font-body); font-size: 0.875rem; font-weight: 300; color: var(--text-muted); line-height: 1.65; }
.card-arrow { display: none; }

/* Inline links in cards */
.leistung-card a, .card-desc a, .video-format-card a, .process-step a,
.event-highlight-card a, .faq-answer a, .blog-card-body-inner a, .read-more-extra a {
  position: relative; z-index: 5;
  pointer-events: auto;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.leistung-card a:hover, .card-desc a:hover,
.video-format-card a:hover, .process-step a:hover { color: var(--accent-h); }

/* ═══════════════════════════════════════
   WARUM
═══════════════════════════════════════ */
#warum { background: var(--bg); position: relative; overflow: hidden; }
#warum::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}
#warum::before {
  content: '';
  position: absolute;
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.10) 0%, rgba(201,162,39,0.04) 40%, transparent 70%);
  right: -150px; top: 50%; transform: translateY(-50%);
  pointer-events: none; z-index: 0;
}
.warum-header, .warum-grid { position: relative; z-index: 1; }
.warum-header { margin-bottom: 64px; }
.warum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}
.warum-item { background: var(--bg-card); padding: 44px 36px; transition: background 0.25s; }
.warum-item:hover { background: #112040; }
.warum-num { font-size: 4rem; font-weight: 800; color: rgba(201,162,39,0.75); line-height: 1; margin-bottom: 20px; letter-spacing: -0.04em; }
.warum-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 14px; line-height: 1.35; }
.warum-desc { font-family: var(--font-body); font-size: 0.875rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
#cta { position: relative; overflow: hidden; }
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.cta-box {
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201,162,39,0.12) 0%, transparent 70%), var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px 48px;
  max-width: 680px;
  margin: 0 auto;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-sub { font-family: var(--font-body); font-size: 1rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }

/* ═══════════════════════════════════════
   KONTAKT ROW
═══════════════════════════════════════ */
#kontakt {
  background: var(--bg);
  padding: 60px 0 80px;
  width: 100%;
  overflow: hidden;
}
.kontakt-row {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 24px;
  box-sizing: border-box;
}
.kontakt-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.kontakt-item:hover { border-color: rgba(201,162,39,0.35); transform: translateY(-3px); }
.kontakt-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.kontakt-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.kontakt-value { font-size: 0.9rem; font-weight: 600; color: var(--accent); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(201,162,39,0.12);
  padding: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  box-sizing: border-box;
}
footer::before {
  content: '';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.6), transparent);
}
footer a { color: var(--accent); }
footer a:hover { color: var(--accent-h); }

/* ═══════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════ */
.contact-form-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 44px 40px;
}
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-family: var(--font-main); font-size: 0.78rem; font-weight: 600; color: var(--text-dim); letter-spacing: 0.04em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent);
  background: rgba(201,162,39,0.04);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-body); font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }
.form-checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.form-checkbox a { color: var(--accent); text-decoration: underline; }
.form-submit {
  background: var(--accent); color: #0d1a2e; border: none;
  padding: 15px 32px; border-radius: 999px;
  font-family: var(--font-main); font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  justify-self: start;
}
.form-submit:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,162,39,0.3); }

/* ═══════════════════════════════════════
   VIDEO FORMAT GRID
═══════════════════════════════════════ */
.video-format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-format-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
  position: relative; overflow: hidden;
}
.video-format-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity 0.25s;
}
.video-format-card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,0.3); background: #0f1e35; box-shadow: 0 8px 32px rgba(201,162,39,0.12); }
.video-format-card:hover::before { opacity: 1; }
.video-format-icon {
  display: inline-flex; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(201,162,39,0.08); align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--accent);
}
.video-format-icon svg { width: 24px; height: 24px; }
.video-format-card h3 { font-family: var(--font-main); font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
.video-format-card p { font-family: var(--font-body); font-size: 0.92rem; color: var(--text-dim); line-height: 1.6; }

/* ═══════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════ */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.process-step {
  position: relative; padding: 28px 24px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  transition: border-color 0.25s, transform 0.25s;
}
.process-step:hover { border-color: rgba(201,162,39,0.3); transform: translateY(-3px); }
.process-step-num { font-family: var(--font-main); font-weight: 800; font-size: 2.2rem; color: var(--accent); line-height: 1; margin-bottom: 14px; }
.process-step h4 { font-family: var(--font-main); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-family: var(--font-body); font-size: 0.88rem; color: var(--text-dim); line-height: 1.55; }

/* ═══════════════════════════════════════
   EVENTS
═══════════════════════════════════════ */
.event-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 70px; }
.event-highlight-card {
  position: relative;
  background: linear-gradient(160deg, #0e1d34 0%, #101f38 100%);
  border: 1px solid var(--border); border-radius: 20px; padding: 44px 38px; overflow: hidden;
}
.event-highlight-card::after {
  content: '';
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.16), transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.event-highlight-card .badge {
  display: inline-block; font-family: var(--font-main); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.25);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.event-highlight-card h3 { font-family: var(--font-main); font-weight: 800; font-size: 1.55rem; margin-bottom: 14px; color: var(--text); position: relative; }
.event-highlight-card p { font-family: var(--font-body); font-size: 0.97rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 22px; position: relative; }
.event-highlight-card ul { list-style: none; display: grid; gap: 10px; position: relative; }
.event-highlight-card ul li { font-family: var(--font-main); font-size: 0.9rem; color: var(--text); padding-left: 24px; position: relative; }
.event-highlight-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Workshop card */
.workshop-card-header { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.workshop-card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 32px 24px; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(201,162,39,0.3); }
.faq-item.open  { border-color: rgba(201,162,39,0.45); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
  font-family: var(--font-main); font-size: 0.98rem; font-weight: 700; color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent); font-size: 1.1rem; line-height: 1;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(201,162,39,0.2); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s; padding: 0 28px; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 28px 24px; }
.faq-answer p { font-family: var(--font-body); font-size: 0.93rem; color: var(--text-dim); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px; }
.faq-answer p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════
   WEITERLESEN
═══════════════════════════════════════ */
.read-more-wrap { position: relative; }
.read-more-text { overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1); }
.read-more-text.collapsed { -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%); mask-image: linear-gradient(to bottom, black 60%, transparent 100%); }
.read-more-text.expanded { -webkit-mask-image: none; mask-image: none; }
.read-more-extra { display: none; }
.read-more-text.expanded .read-more-extra { display: block; }
.read-more-extra p { font-family: var(--font-body); font-size: inherit; color: var(--text-dim); line-height: 1.7; margin-bottom: 12px; }
.read-more-extra p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.btn-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-family: var(--font-main); font-size: 0.88rem; font-weight: 600;
  color: var(--accent); cursor: pointer; background: none; border: none; padding: 0;
  transition: gap 0.2s; white-space: nowrap;
}
.btn-read-more:hover { gap: 12px; }
.btn-read-more::after { content: '↓'; transition: transform 0.3s; display: inline-block; }
.btn-read-more.expanded::after { transform: rotate(180deg); }

/* ═══════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: border-color 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: rgba(201,162,39,0.35); transform: translateY(-3px); }
.blog-card-header { padding: 24px 24px 0; }
.blog-card-date {
  font-family: var(--font-main); font-size: 0.72rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.blog-card-date::before { content: ''; width: 16px; height: 1px; background: var(--accent); display: inline-block; }
.blog-card-tag {
  display: inline-block; font-family: var(--font-main); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.2);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 12px;
}
.blog-card-title { font-family: var(--font-main); font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 12px; }
.blog-card-excerpt { font-family: var(--font-body); font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; padding: 0 24px; flex: 1; }
.blog-card-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1); padding: 0 24px; }
.blog-card.expanded .blog-card-body { max-height: 2000px; }
.blog-card-body-inner { font-family: var(--font-body); font-size: 0.875rem; color: var(--text-dim); line-height: 1.75; border-top: 1px solid var(--border); margin-top: 12px; padding-top: 16px; }
.blog-card-body-inner p { margin-bottom: 12px; }
.blog-card-footer { padding: 16px 24px 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.blog-toggle-btn {
  font-family: var(--font-main); font-size: 0.88rem; font-weight: 600; color: var(--accent);
  cursor: pointer; background: none; border: none; padding: 0;
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s; white-space: nowrap;
}
.blog-toggle-btn:hover { gap: 10px; }
.blog-toggle-btn .arrow { transition: transform 0.3s; display: inline-block; }
.blog-card.expanded .blog-toggle-btn .arrow { transform: rotate(180deg); }

/* ═══════════════════════════════════════
   INTERNAL LINKS (hidden)
═══════════════════════════════════════ */


/* ═══════════════════════════════════════
   SVG ICONS
═══════════════════════════════════════ */
.card-emoji, .service-block-icon, .service-icon, .format-icon,
.forwho-icon, .event-icon, .why-value-icon, .mini-card-icon {
  color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .warum-grid { grid-template-columns: 1fr; }
  .warum-item { padding: 36px 28px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px (MOBILE)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Nav */
  .nav-desktop { display: none !important; }
  .burger      { display: flex !important; }

  /* Layout */
  section             { padding: 72px 16px; }
  .container          { padding: 0 16px; }
  .subpage-hero       { padding: 110px 16px 50px; }

  /* Grids */
  .leistungen-grid    { grid-template-columns: 1fr; }
  .leistungen-grid--4 { grid-template-columns: 1fr; max-width: 100%; }
  .video-format-grid  { grid-template-columns: 1fr; }
  .event-highlights   { grid-template-columns: 1fr; }
  .warum-grid         { grid-template-columns: 1fr; }

  /* Kontakt */
  #kontakt            { padding: 60px 0 72px; }
  .kontakt-row        { grid-template-columns: 1fr; max-width: 100%; padding: 0 16px; }

  /* Cards & components */
  .cta-box            { padding: 40px 24px; }
  .contact-form-wrap  { padding: 32px 16px; }
  .event-highlight-card { padding: 32px 20px; }
  .warum-item         { padding: 32px 20px; }
  .process-step       { padding: 22px 16px; }
  .form-row           { grid-template-columns: 1fr; }

  /* Workshop */
  .workshop-card-body   { grid-template-columns: 1fr !important; }
  .workshop-card-header { flex-direction: column; gap: 20px; }

  /* FAQ */
  .faq-question { padding: 18px 20px; font-size: 0.92rem; }
  .faq-answer   { padding: 0 20px; }
  .faq-item.open .faq-answer { padding: 0 20px 20px; }

  /* WhatsApp float */
  .whatsapp-float { width: 52px; height: 52px; right: 18px; bottom: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; max-width: 280px; }
  .hero-logotype { width: 95vw; opacity: 0.08; }
}
/* Guaranteed burger visibility */
@media (max-width: 768px) {
  .nav-desktop { display: none !important; }
  .burger { display: flex !important; flex-shrink: 0; }
  #kontakt { overflow: hidden !important; }
  .kontakt-row {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }
}
/* Internal link tiles */
.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.internal-link-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  text-decoration: none;
}
.internal-link-tile:hover {
  border-color: rgba(201,162,39,0.4);
  background: rgba(201,162,39,0.04);
  transform: translateY(-2px);
}
.internal-link-tile-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(201,162,39,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.internal-link-tile-icon svg { width: 18px; height: 18px; }
.internal-link-tile-text {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.internal-link-tile-arrow {
  margin-left: auto;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Fix select dropdown appearance */
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #101f38;
  color: var(--text);
  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='%23c9a227' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
option {
  background-color: #101f38;
  color: var(--text);
}
