/* ============================================
   LEHRERKALENDER APP - WEBSITE STYLES v4
   - Fliesstext jetzt Dunkelblau (lesbar)
   - Eyebrows jetzt Hellblau
   - Pfeiler-Karten zentriert
   - Stundenplan im Stack-Layout
   ============================================ */

:root {
  --dunkelblau:     #343c82;
  --dunkelblau-2:   #4a52a0;
  --akzent:         #cd7f5e;
  --akzent-dunkel:  #a55f3f;
  --hellblau:       #93aecd;
  --akzent-hell:    #ffe4d6;
  --akzent-pastell: #fef5f0;
  --bg-off:         #faf9f8;
  --bg-info:        #dce4f0;
  --weiss:          #ffffff;
  --linie:          #e8e1da;
  --linie-blau:     #d4dae8;

  /* Lehrerkalender-Cover-Farben (analoge Section) */
  --kalender-blau:  #2d4a6b;
  --kalender-gruen: #6b8a6e;
  --kalender-rosa:  #d4a094;
  --kalender-creme: #e8e1d0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--weiss);
  color: var(--dunkelblau);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--dunkelblau); }

/* ============================================
   TYPOGRAPHY - dunkelblauer Fliesstext
   ============================================ */

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--dunkelblau);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: 32px; }
h2 { font-size: 26px; margin-bottom: 14px; }
h3 { font-size: 19px; margin-bottom: 10px; line-height: 1.25; }

p {
  margin-bottom: 12px;
  line-height: 1.65;
  color: var(--dunkelblau);
}

/* Block-Label (Eyebrow ueber H2) - jetzt HELLBLAU */
.block-label,
.usp-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hellblau);
  display: block;
  margin-bottom: 14px;
}

.block-label.center { text-align: center; }

/* Hero-Eyebrow - jetzt HELLBLAU */
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hellblau);
  display: block;
  margin-bottom: 16px;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linie);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-app {
  height: 26px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--dunkelblau);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--weiss);
  background: var(--akzent);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid var(--akzent);
  border-radius: 999px;
  transition: all 0.2s;
}

.header-cta:hover {
  background: var(--akzent-dunkel);
  border-color: var(--akzent-dunkel);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.hero-text { max-width: 540px; }

.hero h1 {
  font-size: 38px;
  margin-bottom: 16px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 .hl { color: var(--akzent); }

.hero-sub {
  font-size: 16px;
  color: var(--dunkelblau);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--akzent);
  color: var(--weiss);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--akzent);
}

.btn-primary:hover {
  background: var(--akzent-dunkel);
  border-color: var(--akzent-dunkel);
}

.btn-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--dunkelblau);
  text-decoration: none;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.btn-text:hover { color: var(--akzent); }

.btn-text .arrow-r { transition: transform 0.2s; }
.btn-text:hover .arrow-r { transform: translateX(3px); }

/* ============================================
   PHONE FRAME + SLIDER
   ============================================ */

.hero-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.phone-frame {
  width: 240px;
  background: #1a1a1a;
  border-radius: 32px;
  padding: 7px;
  box-shadow:
    0 18px 48px rgba(52, 60, 130, 0.18),
    0 6px 18px rgba(52, 60, 130, 0.10),
    inset 0 0 0 1px #2a2a2a;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 7px;
  background: #0a0a0a;
  border-radius: 4px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  aspect-ratio: 1080 / 2224;
  border-radius: 22px;
  overflow: hidden;
  background: var(--weiss);
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  background: var(--weiss);
}

#heroSlider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  background: var(--weiss);
  opacity: 0;
  transition: opacity 0.9s ease;
}

#heroSlider img.active { opacity: 1; }

.slider-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--akzent);
  text-align: center;
  margin-top: 4px;
  min-height: 16px;
  transition: opacity 0.4s;
}

.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.slider-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hellblau);
  opacity: 0.4;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}

.slider-dots .dot.active {
  background: var(--akzent);
  opacity: 1;
  transform: scale(1.3);
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: var(--bg-off);
  border-top: 1px solid var(--linie);
  border-bottom: 1px solid var(--linie);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

.mitentwickelt-section {
  background: var(--akzent);
  color: #fff;
  padding: 48px 24px;
  text-align: center;
}

.mitentwickelt-inner {
  max-width: 680px;
  margin: 0 auto;
}

.mitentwickelt-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.mitentwickelt-icon svg { width: 28px; height: 28px; }

.mitentwickelt-section h2 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 14px;
}

.mitentwickelt-section p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

.lehrer-streifen {
  background: var(--akzent-pastell);
  padding: 20px 24px;
}

.lehrer-streifen-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.lehrer-streifen svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.lehrer-streifen p {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dunkelblau);
  line-height: 1.45;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--akzent-pastell);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg { width: 18px; height: 18px; }

.trust-text { display: flex; flex-direction: column; align-items: center; }
.trust-text strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dunkelblau);
}
.trust-text span {
  font-size: 13px;
  color: var(--dunkelblau);
  line-height: 1.4;
}

/* ============================================
   BLOCK-INTRO
   ============================================ */

.block-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.block-intro h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.block-intro p {
  font-size: 15px;
  color: var(--dunkelblau);
  line-height: 1.6;
}

/* ============================================
   PFEILER SECTION - ZENTRIERT, Mini in HELLBLAU
   ============================================ */

.pfeiler-section {
  padding: 56px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.pfeiler-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pfeiler-card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 16px;
  padding: 24px 22px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.pfeiler-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

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

.pfeiler-mini {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hellblau);
  display: block;
  margin-bottom: 12px;
}

.pfeiler-phone {
  width: 60%;
  max-width: 150px;
  margin: 0 auto 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--linie);
  box-shadow: 0 8px 22px rgba(52, 60, 130, 0.12);
  background: #fff;
  aspect-ratio: 1080 / 2224;
}

.pfeiler-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.pfeiler-card-icon .pfeiler-icon {
  margin: 8px auto 16px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--akzent-pastell);
}

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

.pfeiler-claim {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dunkelblau);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ============================================
   HIGHLIGHT SECTIONS
   ============================================ */

.highlight-section { padding: 56px 20px; }
.highlight-section.alt { background: var(--bg-off); }

.highlight-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.highlight-inner-narrow {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* STACK-Layout fuer Stundenplan: Phone OBEN, Text drunter */
.highlight-inner-stack {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.highlight-inner-stack .highlight-text {
  width: 100%;
  text-align: center;
}

.highlight-inner-stack .feature-list-block {
  text-align: left;
  max-width: 560px;
  margin: 28px auto 0;
}

.highlight-text { max-width: 560px; }

.pfeiler-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--akzent);
  background: var(--akzent-pastell);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.pfeiler-tag.center { display: inline-block; }

.highlight-text h2,
.highlight-inner-narrow h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.highlight-inner-narrow h2.center { margin-left: auto; margin-right: auto; }

.lead {
  font-size: 16px;
  color: var(--dunkelblau);
  line-height: 1.65;
  margin-bottom: 24px;
}

.lead.center { max-width: 600px; margin-left: auto; margin-right: auto; }

.feature-list-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--akzent);
  border-radius: 6px;
  position: relative;
  margin-top: 1px;
}

.feature-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--weiss);
  border-bottom: 2px solid var(--weiss);
  transform: rotate(-45deg);
}

.feature-item > div { flex: 1; }

.feature-item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dunkelblau);
  margin-bottom: 3px;
}

.feature-item span {
  font-size: 14px;
  color: var(--dunkelblau);
  line-height: 1.55;
  opacity: 0.85;
}

/* ============================================
   SELBSTFÜRSORGE
   ============================================ */

.self-section {
  background: linear-gradient(180deg, #fef5f0 0%, var(--weiss) 100%);
}

.self-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 40px;
  text-align: center;
}

.self-card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 14px;
  padding: 22px 22px;
  text-align: center;
}

.self-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--akzent-pastell);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.self-icon svg { width: 20px; height: 20px; }

.self-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.self-card p {
  font-size: 14px;
  color: var(--dunkelblau);
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

.self-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--akzent);
  letter-spacing: 0.04em;
}

/* ============================================
   MIKROFON
   ============================================ */

.mic-visual {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
}

.mic-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--akzent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(205, 127, 94, 0.35);
}

.mic-circle svg { width: 42px; height: 42px; }

.mic-pulse {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  border: 2px solid var(--akzent);
  opacity: 0.4;
  animation: mic-pulse 2s ease-out infinite;
}

@keyframes mic-pulse {
  0%   { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0; }
}

.mic-demo {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 540px;
  margin: 32px auto 0;
  padding: 20px 22px;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(52, 60, 130, 0.10);
}

.mic-button {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--akzent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mic-button svg { width: 24px; height: 24px; position: relative; z-index: 2; }

.mic-wave {
  position: absolute;
  top: 50%; left: 50%;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--akzent);
  opacity: 0.35;
  transform: translate(-50%, -50%);
  animation: micpulse 2.2s ease-out infinite;
}

.mic-wave:nth-child(2) { animation-delay: 1.1s; }

@keyframes micpulse {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.35; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

.mic-text {
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--dunkelblau);
  min-height: 2.8em;
  display: flex;
  align-items: center;
}

.mic-caret {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--akzent);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: miccaret 0.7s step-end infinite;
}

@keyframes miccaret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .mic-wave { animation: none; }
  .mic-caret { animation: none; }
}

.mic-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}

.mic-bullet {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 12px;
  padding: 18px 20px;
}

.mic-bullet strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dunkelblau);
  margin-bottom: 4px;
}

.mic-bullet span {
  font-size: 14px;
  color: var(--dunkelblau);
  line-height: 1.55;
  opacity: 0.85;
}

/* ============================================
   VORLAGEN - 6 Karten + Notizbuch-Extra
   ============================================ */

.self-slider-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 8px 0 4px;
}

.self-phones {
  display: flex;
  gap: 12px;
  justify-content: center;
  overflow-x: auto;
  padding: 8px 4px 20px;
  margin: 40px 0 12px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.self-phones .duo-phone {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.self-phones .duo-phone .phone-frame { width: 138px; }

.self-slider-wrap .phone-frame { width: 220px; }

#selfSlider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  background: var(--weiss);
  opacity: 0;
  transition: opacity 0.7s ease;
}

#selfSlider img.active { opacity: 1; }

.self-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.self-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--hellblau);
  opacity: 0.4;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.self-dot.active { opacity: 1; transform: scale(1.3); background: var(--akzent); }

.vorlagen-phone {
  display: flex;
  justify-content: center;
  margin: 8px 0 4px;
}

.vorlagen-phone .phone-frame { width: 220px; }

.vorlagen-duo {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 32px 0 4px;
  flex-wrap: wrap;
}

.duo-phone {
  margin: 0;
  text-align: center;
}

.duo-phone .phone-frame { width: 162px; }

.highlight-phone-duo {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.highlight-phone-duo .duo-phone .phone-frame { width: 140px; }

.duo-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 8px;
}

.duo-row .duo-phone .phone-frame { width: 168px; }

.duo-row-three .duo-phone { width: 150px; }
.duo-row-three .duo-phone .phone-frame { width: 150px; }

.duo-phone figcaption {
  margin-top: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dunkelblau);
}

.vorlagen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
  text-align: center;
}

.vorlagen-card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 14px;
  padding: 22px 22px;
  transition: all 0.2s;
  position: relative;
  text-align: center;
}

.vorlagen-card:hover {
  border-color: var(--akzent);
  transform: translateY(-2px);
}

.vorlagen-card.coming {
  border-style: dashed;
  background: var(--bg-off);
}

.vorlagen-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--akzent-pastell);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

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

.vorlagen-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-soon {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--akzent);
  background: var(--akzent-pastell);
  padding: 2px 8px;
  border-radius: 999px;
}

.vorlagen-card p {
  font-size: 13px;
  color: var(--dunkelblau);
  line-height: 1.55;
  opacity: 0.85;
  margin: 0;
}

.vorlagen-extra {
  margin-top: 24px;
  padding: 20px 22px;
  background: var(--weiss);
  border: 1px solid var(--linie-blau);
  border-radius: 12px;
  text-align: left;
}

.vorlagen-extra p {
  font-size: 14px;
  color: var(--dunkelblau);
  line-height: 1.6;
  margin: 0;
}

.vorlagen-extra strong { color: var(--dunkelblau); font-weight: 700; }

.vorlagen-bonus {
  margin-top: 20px;
  padding: 18px 22px;
  background: var(--bg-info);
  border-radius: 12px;
  font-size: 14px;
  color: var(--dunkelblau);
  line-height: 1.55;
  text-align: left;
}

/* ============================================
   EINSTIEG - jetzt 4 Karten
   ============================================ */

.einstieg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  text-align: center;
}

.einstieg-card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: center;
  transition: all 0.2s;
}

.einstieg-card:hover {
  border-color: var(--akzent);
  transform: translateY(-2px);
}

.einstieg-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--akzent-pastell);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

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

.einstieg-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.einstieg-card p {
  font-size: 14px;
  color: var(--dunkelblau);
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

/* ============================================
   USP SECTION (dunkelblau)
   ============================================ */

.usp-section {
  background: var(--dunkelblau);
  color: var(--weiss);
  padding: 56px 20px;
}

.usp-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.usp-section h2 {
  color: var(--weiss);
  font-size: 28px;
  margin-bottom: 14px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.usp-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}

.schutz-phone {
  display: flex;
  justify-content: center;
  margin: 8px auto 40px;
}

.schutz-phone .phone-frame { width: 220px; }

.schutz-grafik {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 40px;
  padding-top: 8px;
}

.schutz-stack {
  position: relative;
  width: 260px;
  height: 150px;
  margin-bottom: 18px;
}

.schutz-data {
  position: absolute;
  left: 50%;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 9px 16px;
  white-space: nowrap;
  backdrop-filter: blur(2px);
}

.sd1 { top: 0;   transform: translateX(-50%) rotate(-5deg); }
.sd2 { top: 30px; transform: translateX(-62%) rotate(3deg); }
.sd3 { top: 60px; transform: translateX(-40%) rotate(-2deg); }
.sd4 { top: 90px; transform: translateX(-58%) rotate(4deg); }
.sd5 { top: 120px; transform: translateX(-46%) rotate(-3deg); }

.schutz-shield {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--akzent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(205, 127, 94, 0.45);
  position: relative;
  z-index: 2;
}

.schutz-shield svg { width: 30px; height: 30px; }

.schutz-label {
  margin-top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.usp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 22px;
  text-align: left;
}

.usp-card h3 {
  color: var(--weiss);
  font-size: 17px;
  margin-bottom: 8px;
}

.usp-card p {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   VERLAG + ANALOGE LEHRERKALENDER-GALERIE
   ============================================ */

.verlag-section {
  padding: 56px 20px;
  background: var(--bg-off);
}

.verlag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--akzent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 999px;
  margin-top: 8px;
  transition: background 0.2s;
}

.verlag-chip:hover { background: #b86a4a; }
.verlag-chip .arrow-r { transition: transform 0.2s; }
.verlag-chip:hover .arrow-r { transform: translateX(3px); }

.verlag-inner {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.verlag-inner h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.verlag-inner p {
  font-size: 15px;
  color: var(--dunkelblau);
  line-height: 1.7;
  margin-bottom: 18px;
}

.verlag-inner strong { color: var(--dunkelblau); font-weight: 700; }

/* Lehrerkalender-Galerie */
.analog-gallery {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.analog-title {
  font-size: 22px;
  margin-bottom: 24px;
}

.analog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.analog-card {
  display: block;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.2s;
}

.analog-card:hover {
  transform: translateY(-3px);
  border-color: var(--akzent);
  box-shadow: 0 12px 32px rgba(52, 60, 130, 0.12);
}

.analog-img {
  background: var(--bg-off);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid var(--linie);
}

.analog-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(52, 60, 130, 0.14);
}

.analog-body { padding: 18px 20px 20px; }

.analog-format {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hellblau);
  display: block;
  margin-bottom: 8px;
}

.analog-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dunkelblau);
  margin-bottom: 6px;
  line-height: 1.2;
}

.analog-card p {
  font-size: 13px;
  color: var(--dunkelblau);
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 12px;
}

.analog-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--akzent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.analog-card .arrow-r { transition: transform 0.2s; }
.analog-card:hover .arrow-r { transform: translateX(4px); }

/* ============================================
   RELEASE / APP STORE BUTTONS
   ============================================ */

.release-section {
  padding: 64px 20px;
  text-align: center;
}

.release-inner {
  max-width: 560px;
  margin: 0 auto;
}

.release-inner h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.release-inner > p {
  font-size: 15px;
  color: var(--dunkelblau);
  line-height: 1.6;
  margin-bottom: 28px;
}

.store-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  background: var(--dunkelblau);
  color: var(--weiss);
  padding: 11px 28px;
  border-radius: 10px;
  text-decoration: none;
  width: 240px;
  box-sizing: border-box;
  transition: background 0.2s;
}

.store-btn svg { width: 24px; height: 26px; flex-shrink: 0; }

.store-btn:hover { background: var(--dunkelblau-2); }

.store-btn.store-soon {
  background: transparent;
  border: 1px solid var(--hellblau);
  color: var(--dunkelblau);
  cursor: not-allowed;
}

.store-btn.store-soon svg path { fill: var(--dunkelblau); }

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}

.store-small {
  font-size: 10px;
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin-bottom: 2px;
}

.store-big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.release-mail {
  margin-top: 0;
  font-size: 14px;
  color: var(--dunkelblau);
  opacity: 0.7;
}

.release-mail a {
  font-weight: 600;
  color: var(--akzent);
  text-decoration: none;
  border-bottom: 1px solid var(--akzent);
  opacity: 1;
}

/* ============================================
   FAQ
   ============================================ */

.faq-section {
  padding: 56px 20px;
  background: var(--bg-off);
}

.faq-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.faq-inner h2 {
  font-size: 28px;
  margin-bottom: 32px;
}

.faq-item {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 10px;
  text-align: left;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: var(--akzent); }

.faq-item summary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dunkelblau);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--akzent);
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item[open] summary::after { content: "\2013"; }

.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--dunkelblau);
  line-height: 1.65;
  opacity: 0.85;
}

.faq-item a { color: var(--akzent); }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  border-top: 1px solid var(--linie);
  background: var(--weiss);
  padding: 24px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--hellblau);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 12px;
  color: var(--hellblau);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--akzent); }

/* ============================================
   THEMES SECTION
   ============================================ */

.themes-section {
  padding: 56px 20px;
  text-align: center;
}

.themes-inner {
  max-width: 700px;
  margin: 0 auto;
}

.themes-inner h2 { font-size: 28px; margin-bottom: 12px; }

.themes-inner p {
  font-size: 15px;
  color: var(--dunkelblau);
  line-height: 1.65;
  margin-bottom: 32px;
}

.theme-gallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.theme-card {
  margin: 0;
  flex: 0 0 auto;
  width: 132px;
  scroll-snap-align: center;
  text-align: center;
}

.theme-card .phone-frame { width: 132px; }

.theme-phone {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--linie);
  box-shadow: 0 6px 18px rgba(52, 60, 130, 0.12);
  background: #fff;
  aspect-ratio: 1080 / 2224;
}

.theme-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.theme-card figcaption {
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dunkelblau);
}

.theme-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 8px;
}

.theme-dots span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
}

/* ============================================
   TERMINE SECTION (Ferien-Grafik)
   ============================================ */

.termine-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 4px;
}

.termine-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}

.termine-phone {
  position: relative;
  z-index: 2;
  margin-bottom: -44px;
}

.termine-phone .phone-frame { width: 228px; }

.termine-phone-duo {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.termine-phone-duo .phone-frame { width: 168px; }

.termine-box {
  width: 100%;
  position: relative;
  z-index: 1;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(52, 60, 130, 0.16);
  padding: 90px 26px 36px;
}

.termine-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* ============================================
   LEGAL PAGES (Impressum, Datenschutz, Nutzungsbedingungen)
   ============================================ */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.legal-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--linie);
}

.legal-header h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.legal-sub {
  font-size: 14px;
  color: var(--hellblau);
  margin: 0;
}

.legal-intro {
  background: var(--bg-info);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dunkelblau);
  margin-bottom: 40px;
}

.legal-intro strong { font-weight: 700; }

.legal-block {
  margin-bottom: 36px;
}

.legal-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--akzent);
  display: block;
  margin-bottom: 8px;
}

.legal-block h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.legal-block h3 {
  font-size: 16px;
  margin: 20px 0 8px;
}

.legal-block p,
.legal-block li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--dunkelblau);
  margin-bottom: 12px;
}

.legal-block strong { font-weight: 700; }

.legal-block ul {
  margin: 0 0 12px;
  padding-left: 22px;
}

.legal-block li { margin-bottom: 6px; }

.legal-block a {
  color: var(--akzent);
  word-break: break-word;
}

.legal-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hellblau);
  margin-bottom: 2px;
}

.legal-spacer { height: 4px; }

/* ============================================
   TABLET (768px+)
   ============================================ */

@media (min-width: 768px) {
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  h3 { font-size: 22px; }

  .theme-gallery {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .theme-card { width: 138px; }
  .theme-card .phone-frame { width: 138px; }
  .themes-inner { max-width: 820px; }

  .termine-bullets {
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
  }
  .duo-phone .phone-frame { width: 178px; }
  .vorlagen-duo .duo-phone .phone-frame { width: 160px; }
  .self-phones { justify-content: center; overflow-x: visible; flex-wrap: nowrap; gap: 10px; }
  .self-phones .duo-phone .phone-frame { width: 118px; }

  .block-label,
  .usp-eyebrow { font-size: 15px; }
  .hero-eyebrow { font-size: 13px; margin-bottom: 18px; }

  .header-inner { padding: 14px 28px; }
  .logo-app { height: 30px; }
  .logo-text { font-size: 13px; }

  .hero {
    flex-direction: row;
    text-align: left;
    padding: 64px 32px 80px;
    gap: 56px;
    align-items: center;
  }

  .hero-text { flex: 1; }
  .hero h1 { font-size: 52px; line-height: 1.0; }
  .hero-sub { font-size: 17px; }

  .hero-cta-row { flex-direction: row; align-items: center; }

  .phone-frame { width: 270px; }

  .trust-strip {
    flex-direction: row;
    justify-content: space-between;
    padding: 32px 32px;
    gap: 32px;
  }

  .trust-item { flex: 1; max-width: none; margin: 0; }

  .pfeiler-section { padding: 80px 32px; }
  .block-intro h2 { font-size: 32px; }
  .pfeiler-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .pfeiler-card { padding: 28px 24px; }
  .pfeiler-claim { font-size: 19px; }

  .highlight-section { padding: 80px 32px; }
  .highlight-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 56px;
  }

  .highlight-inner.reverse { flex-direction: row-reverse; }
  .highlight-inner .highlight-text { flex: 1; }
  .highlight-inner .highlight-phone { flex-shrink: 0; }

  /* Stack-Layout bleibt zentriert auf allen Größen */
  .highlight-inner-stack { gap: 48px; }

  .highlight-text h2,
  .highlight-inner-narrow h2 { font-size: 32px; }
  .lead { font-size: 17px; }

  .self-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .mic-bullets { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .vorlagen-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .einstieg-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .usp-section { padding: 80px 32px; }
  .usp-section h2 { font-size: 32px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .verlag-section { padding: 80px 32px; }
  .verlag-inner h2 { font-size: 32px; }
  .verlag-inner p { font-size: 16px; }

  .analog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .analog-title { font-size: 26px; }

  .release-section,
  .faq-section { padding: 80px 32px; }
  .release-inner h2 { font-size: 36px; }
  .faq-inner h2 { font-size: 32px; }

  .store-row { flex-direction: row; justify-content: center; }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-brand { font-size: 13px; }
  .footer-links a { font-size: 13px; }
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .hero { padding: 88px 40px 96px; gap: 72px; }
  .hero h1 { font-size: 62px; line-height: 0.98; }
  .hero-sub { font-size: 18px; line-height: 1.65; }
  .hero-eyebrow { font-size: 14px; }

  .phone-frame { width: 290px; }

  .pfeiler-section { padding: 96px 40px; }
  .pfeiler-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .pfeiler-claim { font-size: 18px; }

  .highlight-section { padding: 96px 40px; }
  .highlight-inner { gap: 80px; }

  .vorlagen-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .self-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .einstieg-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }

  .usp-grid { gap: 22px; }

  .analog-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }

  .release-section { padding: 104px 40px; }
}
