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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

ul { list-style: none; }

/* ===========================
   TOKENS
   =========================== */
:root {
  --dark:       #1a1a1a;
  --dark-2:     #2c2c2c;
  --dark-3:     #3a3a3a;
  --gold:       #c9a84c;
  --gold-light: #dfc278;
  --gold-dark:  #a8882e;
  --white:      #ffffff;
  --light-bg:   #f5f5f5;
  --text-muted: #666666;
  --border:     #e0e0e0;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
  --header-h:   72px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.section-tag.light {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.18);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: 0.5rem;
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }

/* Sections */
.section-light { background: var(--light-bg); padding: 5rem 0; }
.section-dark  { background: var(--dark);      padding: 5rem 0; color: var(--white); }
.section-gold  { background: var(--gold);       padding: 4rem 0; color: var(--dark); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-3);
  border-color: var(--dark-3);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}

.link-arrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
}
.link-arrow:hover {
  color: var(--gold-light);
  gap: 8px;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  height: 60px;
  background: rgba(26, 26, 26, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-trick {
  color: var(--gold);
  font-weight: 900;
}
.logo-verrat {
  color: var(--white);
  font-weight: 400;
}
.logo:hover .logo-trick  { color: var(--gold-light); }
.logo:hover .logo-verrat { color: rgba(255,255,255,0.8); }

.main-nav ul {
  display: flex;
  gap: 0.25rem;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(120,80,180,0.07) 0%, transparent 50%),
    linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 40%, #0f0f1a 100%);
}

/* Subtle spotlight rays */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 220deg at 50% 10%, rgba(201,168,76,0.06) 0deg, transparent 30deg, transparent 330deg, rgba(201,168,76,0.06) 360deg);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,26,26,0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 780px;
  padding: 0 1.5rem;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero h1 {
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero .btn {
  animation: fadeUp 0.9s 0.4s ease both;
  font-size: 0.88rem;
  padding: 1rem 2.4rem;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}


.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s 1.5s infinite;
}

.scroll-arrow {
  display: block;
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   ÜBER UNS
   =========================== */
.ueber-uns { padding: 5rem 0; }

.img-placeholder {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.img-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.img-placeholder-inner svg {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
}

.img-placeholder-inner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Real photo replacing the placeholder */
.ueber-uns-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  aspect-ratio: 4/3;
}

.ueber-uns-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #1a1a1a;
  display: block;
  transition: transform 0.5s ease;
}

.ueber-uns-photo:hover img {
  transform: scale(1.03);
}

.col-text h2 { margin-bottom: 1rem; }
.col-text > p { color: var(--text-muted); margin-bottom: 1.5rem; }

.ueber-uns-explainer {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow);
}

.ueber-uns-explainer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.ueber-uns-welcome {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--gold-dark) !important;
  margin-top: 0.5rem !important;
  font-size: 0.88rem !important;
}

.achievement-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.achievement-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}

.section-light .achievement-list li { background: var(--white); }

.achievement-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.12);
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

.achievement-icon svg {
  width: 22px;
  height: 22px;
}

.achievement-list strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.achievement-list span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===========================
   FEATURES
   =========================== */
.features-intro {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 640px;
  margin: 0.75rem auto 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(201,168,76,0.25);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.feature-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===========================
   PODCAST
   =========================== */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.podcast-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.podcast-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.podcast-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ep-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.ep-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--light-bg);
  padding: 2px 8px;
  border-radius: 100px;
}

.podcast-card h3 {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.35;
}

.podcast-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.6;
}

.podcast-card .btn {
  align-self: flex-start;
  font-size: 0.78rem;
  padding: 0.6rem 1.2rem;
  margin-top: 0.25rem;
}

.ep-card-date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* Homepage podcast card actions (play + platform links) */
.podcast-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hp-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.55rem 1.1rem;
}

.hp-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  padding: 0.5rem 0.9rem;
}

/* ===========================
   KURS
   =========================== */
.kurs-layout {
  gap: 3.5rem;
}

.kurs-product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.kurs-product-img img {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5));
  transition: transform var(--transition);
}

.kurs-product-img img:hover {
  transform: translateY(-6px) scale(1.02);
}

.kurs-layout .video-preview-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
}

.kurs-layout .video-preview-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.video-placeholder {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.video-placeholder:hover { border-color: rgba(201,168,76,0.4); }

.play-btn {
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}

.video-placeholder:hover .play-btn { transform: scale(1.12); }
.play-btn svg { width: 64px; height: 64px; }

.video-label {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.kurs .col-text h2 { color: var(--white); margin-bottom: 0.75rem; }
.kurs .col-text > p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }

.kurs-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.kurs-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.93rem;
}

.kurs-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.kurs-hint {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ===========================
   BLOG
   =========================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  height: 180px;
  overflow: hidden;
}

.blog-img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-placeholder { transform: scale(1.05); }

.cat-marketing  { background: linear-gradient(135deg, #1a2a3a 0%, #2a4a6a 100%); }
.cat-performance { background: linear-gradient(135deg, #1a1a2a 0%, #3a1a4a 100%); }
.cat-business   { background: linear-gradient(135deg, #1a2a1a 0%, #2a4a2a 100%); }

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.category-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.1);
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
}

.blog-card h3 {
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--dark);
}

.blog-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.6;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}

.blog-card-footer time {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner { text-align: center; }

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(26,26,26,0.75);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}
.social-link svg { width: 18px; height: 18px; }

.footer-nav h4, .footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-nav a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-email {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}
.footer-email:hover { color: var(--gold-light); }

.footer-legal {
  display: flex;
  gap: 1rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ===========================
   RESPONSIVE – 900px (Nav mit 6 Punkten)
   =========================== */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }
}

/* ===========================
   RESPONSIVE – 768px
   =========================== */
@media (max-width: 768px) {

  :root { --header-h: 64px; }

  /* Nav → mobile drawer (already handled at 900px) */
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

  /* Two-col → single col */
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .img-placeholder { aspect-ratio: 16/9; max-height: 300px; }

  /* Grids */
  .feature-grid,
  .podcast-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kurs-layout { gap: 2.5rem; }
}

/* ===========================
   RESPONSIVE – 480px
   =========================== */
@media (max-width: 480px) {
  .section-light,
  .section-dark,
  .section-gold { padding: 3.5rem 0; }

  .hero-content { padding: 0 1rem; }
  .hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.1em; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }

  .btn { padding: 0.8rem 1.5rem; font-size: 0.8rem; }

  .achievement-list li { flex-direction: row; }

  .footer-legal { flex-direction: column; gap: 0.5rem; }

  /* Podcast card actions stack on small screens */
  .podcast-card-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hp-play-btn,
  .hp-platform-btn { width: 100%; justify-content: center; }

  /* Über uns photo full width on mobile */
  .ueber-uns-photo { aspect-ratio: 3/2; }

  /* Kurs section: product image smaller */
  .kurs-product-img img { max-width: 220px; }

  /* Features intro text */
  .features-intro { font-size: 0.88rem; }

  /* Academy hero */
  .academy-hero { min-height: 320px; }
  .academy-hero-content h1 { font-size: 1.5rem; }
}
