/* ==========================================================================
   Clevero-Landingpage – nutzt die Design-Tokens aus style.css (:root),
   eigene Klassen mit "lp-"-Praefix, um Kollisionen mit der App zu vermeiden.
   ========================================================================== */

.lp-body {
  overflow-x: hidden;
}

/* .btn wird sonst nur auf <button> genutzt - hier als <a> fuer echte Links ohne JS. */
a.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.lp-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.6rem;
}

.lp-highlight {
  color: var(--amber);
  position: relative;
}

/* --------------------------------------------------------------------------
   Scroll-Reveal – Elemente mit [data-reveal] faden beim Scrollen sanft ein.
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* -- Nav --------------------------------------------------------------- */

.lp-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.75rem;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.lp-nav-brand {
  display: inline-flex;
}

.lp-nav-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.lp-nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.lp-nav-links a {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.15s ease;
}

.lp-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.lp-nav-links a:hover {
  color: var(--ink);
}

.lp-nav-links a:hover::after {
  transform: scaleX(1);
}

.lp-nav-cta {
  white-space: nowrap;
}

/* Einloggen ist fuer Wiederkehrer, "Starten" fuer Neue. Beide gehoeren in die
   Kopfzeile, aber nicht gleich laut: Der Verkaufsknopf bleibt der auffaellige,
   der Rueckweg muss nur zuverlaessig da sein. Deshalb ein ruhiger Textlink. */
.lp-nav-aktionen {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

/* .lp-nav-links traegt margin-left: auto - stehen beide nebeneinander, wuerde das
   die Aktionen an die Links kleben. Unter 900px sind die Links weg, dann schiebt
   .lp-nav-aktionen selbst nach rechts. */
.lp-nav-links + .lp-nav-aktionen { margin-left: 0; }

.lp-nav-login {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.lp-nav-login:hover { color: var(--ink); background: var(--canvas); }
.lp-nav-login:focus-visible { outline: 3px solid var(--violet-600); outline-offset: 2px; }

/* -- Hero ---------------------------------------------------------------- */

.lp-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.75rem 3rem;
  overflow: hidden;
}

.lp-pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--violet-700);
  background: #EAF0F8;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.1rem;
}

.lp-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 1.1rem;
}

.lp-hero-sub {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 46ch;
  margin: 0 0 1.75rem;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.lp-cta-big {
  font-size: 1.05rem;
  padding: 0.95rem 1.9rem;
}

.lp-hero-trust {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink-soft);
  margin: 0;
}

.lp-hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.lp-hero-blob {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 360px;
  height: 360px;
  max-width: 92%;
  max-height: 92%;
  border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
  background: linear-gradient(145deg, var(--teal-300), var(--amber));
  opacity: 0.22;
  animation: lp-blob 12s ease-in-out infinite;
}

.lp-hero-clevero {
  position: relative;
  width: min(340px, 82%);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(24, 40, 73, 0.22));
  animation: lp-float 5s ease-in-out infinite;
}

/* schwebende Deko-Emojis im Hero */
.lp-float-emoji {
  position: absolute;
  font-size: 2rem;
  opacity: 0.85;
  animation: lp-float 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.lp-float-emoji-1 { top: 12%;  left: 46%; animation-delay: 0s;   font-size: 1.8rem; }
.lp-float-emoji-3 { top: 20%;  right: 6%; animation-delay: 0.6s; font-size: 1.5rem; }
.lp-float-emoji-4 { bottom: 14%; right: 10%; animation-delay: 1.8s; font-size: 2rem; }
.lp-float-emoji-5 { top: 50%;  right: 2%; animation-delay: 2.4s; font-size: 1.4rem; }

/* -- Trust-Leiste -------------------------------------------------------- */

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.25rem 1.75rem 2.5rem;
}

.lp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.lp-trust-item span {
  font-size: 1.2rem;
}

/* -- Wer ist Clevero ------------------------------------------------------ */

.lp-wer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.75rem 5rem;
}

.lp-wer-bilder {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.25rem;
}

.lp-wer-single {
  width: min(460px, 100%);
  height: auto;
  filter: drop-shadow(0 16px 26px rgba(24, 40, 73, 0.18));
  transition: transform 0.25s ease;
}

.lp-wer-single:hover { transform: translateY(-6px); }

.lp-wer-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 1rem;
}

.lp-wer-text p {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* -- Feature-Grid ---------------------------------------------------------- */

.lp-features {
  background: var(--surface);
  border-top: 2px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4rem 1.75rem;
}

.lp-section-head {
  max-width: 640px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.lp-section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--ink);
  margin: 0;
}

.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}

.lp-feature {
  background: #F7F9FC;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.lp-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-m);
  background: #EAF0F8;
  margin-bottom: 0.9rem;
  transition: transform 0.18s ease;
}

.lp-feature:hover .lp-feature-icon {
  transform: rotate(-8deg) scale(1.08);
}

.lp-feature h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.4rem;
}

.lp-feature p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* -- Für Eltern ----------------------------------------------------------- */

.lp-eltern {
  background: linear-gradient(160deg, #EDFBF7, #F2F5FA);
  padding: 4.5rem 1.75rem;
}

.lp-eltern-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
}

.lp-eltern-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.lp-eltern-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  max-width: 85%;
  max-height: 85%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 174, 154, 0.28), transparent 70%);
}

.lp-eltern-clevero {
  position: relative;
  width: min(300px, 72%);
  height: auto;
  filter: drop-shadow(0 16px 26px rgba(16, 98, 89, 0.22));
  animation: lp-float 5.5s ease-in-out infinite;
}

.lp-eltern-card {
  position: absolute;
  right: 0;
  bottom: 12%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card-hover);
  padding: 0.9rem 1rem;
  width: min(230px, 62%);
  animation: lp-float 6.5s ease-in-out infinite;
  animation-delay: 0.8s;
}

.lp-eltern-card-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.lp-eltern-card-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 0.28rem 0;
  border-top: 1px solid var(--line);
}

.lp-eltern-card-row:first-of-type { border-top: none; }
.lp-good { color: var(--green-600); }
.lp-mid { color: var(--amber-deep); }

.lp-eltern-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 1rem;
}

.lp-eltern-text > p {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.lp-eltern-liste {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.lp-eltern-liste li {
  display: flex;
  align-items: flex-start;   /* mehrzeilige Punkte sollen oben buendig stehen */
  gap: 0.7rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}

/* NUR das erste span ist das Icon-Medaillon. Vorher galt die Regel fuer JEDES span -
   sobald ein Punkt einen zweiten (Text-)Span bekam, wurde auch dieser zum 2,1-rem-Kreis
   gequetscht und der Text lief quer ueber die Seite. */
.lp-eltern-liste li > span:first-child {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--teal-300);
  font-size: 1rem;
}

/* Der Text ist EIN Flex-Element - sonst wuerde ein <b> darin eine eigene Spalte bilden. */
.lp-eltern-liste li > span:first-child ~ span {
  flex: 1;
  padding-top: 0.25rem;
}

/* -- Preise ---------------------------------------------------------------- */

.lp-preise {
  padding: 4.5rem 1.75rem;
}

.lp-preise-sub {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0.9rem auto 0;
  max-width: 52ch;
}

/* Gegenüberstellung "immer gratis" vs. "kostet Credits" - erklärt das Modell,
   bevor die Pakete kommen. Ohne sie versteht niemand, wofür Credits nötig sind. */
.lp-credits-erklaerung {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto 2.5rem;
}

.lp-credits-spalte {
  border-radius: var(--radius-l);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.lp-credits-spalte h3 {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--ink);
}

.lp-credits-spalte ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-credits-spalte li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.lp-credits-gratis {
  background: #F2FBF6;
  border-color: #BBE9CE;
}

.lp-credits-kosten {
  background: #F7F9FC;
}

.lp-cr {
  flex: none;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--violet-700);
  background: #EAF0F8;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  font-variant-numeric: tabular-nums;
}

.lp-preis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

/* Vier Credit-Pakete statt drei Abo-Stufen */
.lp-preis-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  gap: 1rem;
}

.lp-preis-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.lp-preis-card-top {
  border-color: var(--amber);
  box-shadow: 0 12px 30px rgba(245, 144, 14, 0.22);
  transform: scale(1.03);
}

.lp-preis-card-top:hover {
  transform: scale(1.03) translateY(-5px);
}

/* Starterpaket: einmaliges Willkommensangebot - teal wie im Credits-Panel der App,
   damit klar ist, dass es ein Sonderpreis ist und der Normalpreis danach keine
   Preiserhöhung darstellt. */
.lp-preis-card-start {
  border-color: var(--teal-500);
  background: #E9FBF7;
  box-shadow: 0 12px 30px rgba(31, 174, 154, 0.20);
}

.lp-preis-flag-start {
  background: linear-gradient(180deg, var(--teal-500), var(--teal-700));
}

.lp-preis-flag {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(180deg, var(--amber), var(--amber-deep));
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  box-shadow: 0 4px 10px rgba(217, 114, 10, 0.35);
  white-space: nowrap;
}

.lp-preis-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 0.25rem;
}

.lp-preis-fuer {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
  min-height: 2.4em;
}

.lp-preis-betrag {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.lp-preis-euro {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--ink);
  transition: opacity 0.15s ease;
}

.lp-preis-intervall {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.lp-preis-liste {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

.lp-preis-liste li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.lp-preis-liste li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--teal-500);
}

.lp-preis-btn {
  width: 100%;
  margin-top: auto;   /* CTA am unteren Kartenrand -> alle Karten bündig */
}

/* Refill-Pakete (Klein/Standard/Groß): kein Auswahl-Button, sondern dezenter Hinweis –
   auf der Landing-Page kann man nichts auswählen, der Einstieg ist immer das Starterpaket. */
.lp-preis-hinweis {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.lp-preise-fuss {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 2rem auto 0;
}

/* -- Finaler CTA-Band -------------------------------------------------------- */

.lp-cta-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 4.5rem 1.75rem;
  max-width: 640px;
  margin: 0 auto;
}

.lp-cta-clevero {
  width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 10px 18px rgba(24, 40, 73, 0.18));
  animation: lp-float 4.5s ease-in-out infinite;
}

.lp-cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--ink);
  margin: 0;
}

.lp-cta-band p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
}

/* -- Footer -------------------------------------------------------------- */

.lp-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2.5rem 1.75rem 3rem;
  text-align: center;
}

.lp-footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.85;
}

.lp-footer p {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0;
}
.lp-footer-links {
  margin-top: 0.7rem;
}
.lp-footer-links a {
  margin: 0 0.6rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink-soft);
  text-decoration: none;
}
.lp-footer-links a:hover {
  color: var(--violet-600);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Keyframes
   -------------------------------------------------------------------------- */

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes lp-blob {
  0%, 100% { border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%; transform: rotate(0deg); }
  50% { border-radius: 58% 42% 38% 62% / 55% 58% 42% 45%; transform: rotate(8deg); }
}

@keyframes lp-pulse {
  0%, 100% { box-shadow: var(--shadow-btn), 0 0 0 0 rgba(245, 144, 14, 0.45); }
  50% { box-shadow: var(--shadow-btn), 0 0 0 12px rgba(245, 144, 14, 0); }
}

.lp-cta-pulse {
  animation: lp-pulse 2.4s ease-in-out infinite;
}

/* -- Responsive ------------------------------------------------------------ */

@media (max-width: 960px) {
  .lp-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .lp-nav-links { display: none; }

  .lp-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2.5rem;
  }
  .lp-hero-sub { margin-left: auto; margin-right: auto; }
  .lp-hero-actions { justify-content: center; }
  .lp-hero-art { order: -1; min-height: 260px; }
  .lp-hero-clevero { width: min(260px, 72%); }
  .lp-float-emoji { display: none; }

  .lp-wer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lp-wer-text p { margin-left: auto; margin-right: auto; }

  .lp-eltern-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-eltern-art { order: -1; min-height: 300px; }
  .lp-eltern-liste { text-align: left; max-width: 420px; margin-left: auto; margin-right: auto; }

  .lp-preis-grid { grid-template-columns: 1fr; max-width: 420px; }
  .lp-preis-grid-4 { grid-template-columns: 1fr; max-width: 420px; }
  .lp-preis-card-top { transform: none; }
  .lp-preis-card-top:hover { transform: translateY(-5px); }
  .lp-credits-erklaerung { grid-template-columns: 1fr; }
}

/* Vier Pakete nebeneinander brauchen mehr Breite als drei - auf mittleren
   Screens lieber 2x2 statt vier Quetsch-Spalten. */
@media (max-width: 1080px) and (min-width: 861px) {
  .lp-preis-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 680px; }
  .lp-preis-card-top { transform: none; }
  .lp-preis-card-top:hover { transform: translateY(-5px); }
}

@media (max-width: 560px) {
  .lp-feature-grid { grid-template-columns: 1fr; }
  .lp-nav-logo { height: 52px; }
  .lp-eltern-text { text-align: center; }
}

/* --------------------------------------------------------------------------
   Reduzierte Bewegung respektieren – alle Animationen aus, Inhalte sofort da.
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .lp-hero-clevero,
  .lp-hero-blob,
  .lp-float-emoji,
  .lp-eltern-clevero,
  .lp-eltern-card,
  .lp-cta-clevero,
  .lp-cta-pulse {
    animation: none !important;
  }
}

/* -- „Clevero kennt Ihr Kind" – Alleinstellungsmerkmal mit Chat-Beispiel ------- */
.lp-kennt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4rem 1.75rem;
}

.lp-kennt-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
}

.lp-kennt-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.lp-kennt-text > p {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.lp-kennt-liste {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.lp-kennt-liste li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.5;
}

.lp-kennt-liste li > span:first-child {
  flex: none;
  font-size: 1.15rem;
  line-height: 1.3;
}

.lp-kennt-liste b {
  color: var(--ink);
  font-weight: 800;
}

.lp-kennt-fuss {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-700);
  background: #E9FBF7;
  border-left: 4px solid var(--teal-500);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin: 0;
}

/* Beispiel-Chat */
.lp-chat {
  background: #F7F9FC;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
}

.lp-chat-kopf {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.lp-chat-kopf img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.lp-chat-bubble {
  border-radius: 16px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 0.6rem;
  max-width: 92%;
}

.lp-chat-kind {
  background: linear-gradient(180deg, var(--violet-500), var(--violet-600));
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 5px;
}

.lp-chat-clevero {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 5px;
}

/* Die gezielte Nachfrage ist der Clou – deshalb hervorgehoben. */
.lp-chat-nachfrage {
  border: 2px solid var(--amber);
  background: #FFF7E6;
  font-weight: 800;
}

.lp-chat-hinweis {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber-deep);
  margin: 0.5rem 0 0;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .lp-kennt { padding: 3rem 1.25rem; }
  .lp-kennt-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* Der Eltern-Block ist der einzige Abschnitt, in dem gesiezt wird - und damit auch der
   einzige, der laenger sein darf. Zwischenueberschrift und Schutz-Liste geben ihm Struktur,
   damit er nicht als Textwand wirkt. */
.lp-eltern-h3 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--ink);
}

.lp-eltern-liste-schutz li { align-items: flex-start; }
.lp-eltern-liste-schutz b { color: var(--ink); }

.lp-eltern-fuss {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Lernmethode: Intro-Absatz unter der Überschrift */
.lp-section-intro {
  max-width: 640px;
  margin: 0.9rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* FAQ – native <details>-Accordion (kein JS) */
.lp-faq-liste {
  max-width: 720px;
  margin: 2.4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.lp-faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 1.3rem;
  box-shadow: var(--shadow-card);
}
.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 0;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--violet-600);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.lp-faq-item[open] summary::after { content: "\2212"; }
.lp-faq-item p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── Interaktive Karteikarten-Demo (Klick zum Umdrehen) ──────────────────── */
.lp-demo {
  padding: 4rem 1.75rem;
}
.lp-demo-grid {
  max-width: 1180px;
  margin: 2.4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.lp-democard {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  display: block;
  width: 100%;
  perspective: 1200px;
  border-radius: 18px;
}
.lp-democard-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 230px;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.lp-democard.is-flipped .lp-democard-inner {
  transform: rotateY(180deg);
}
.lp-democard-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.lp-democard-front {
  background: var(--surface);
  border: 1px solid var(--line);
}
.lp-democard-back {
  background: var(--violet-600);
  transform: rotateY(180deg);
}
.lp-democard-fach {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--amber-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lp-democard-frage {
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
}
.lp-democard-antwort {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.lp-democard-hint {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: auto;
}
.lp-democard-back .lp-democard-hint {
  color: rgba(255, 255, 255, 0.75);
}
.lp-democard:hover .lp-democard-front {
  box-shadow: var(--shadow-card-hover);
}
.lp-democard:focus-visible {
  outline: 3px solid var(--amber-deep);
  outline-offset: 3px;
}
.lp-demo-fuss {
  max-width: 560px;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .lp-demo-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-democard-inner { transition: none; }
}

/* ── "So geht's": Installations-Anleitung in der Geräte-FAQ ──────────────── */
.lp-anleitung {
  margin-top: 0.9rem;
  background: rgba(44, 70, 118, 0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 1rem;
}
.lp-anleitung > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 0;
  font-weight: 800;
  color: var(--violet-600);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.lp-anleitung > summary::-webkit-details-marker { display: none; }
.lp-anleitung > summary::after {
  content: "+";
  color: var(--violet-600);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.lp-anleitung[open] > summary::after { content: "\2212"; }
.lp-anleitung-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  padding: 0.2rem 0 1.1rem;
}
.lp-anleitung-block h4 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}
.lp-anleitung-block h4 span {
  font-weight: 600;
  color: var(--ink-soft);
}
.lp-anleitung-block ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}
.lp-anleitung-block li { margin-bottom: 0.3rem; }
@media (max-width: 640px) {
  .lp-anleitung-body { grid-template-columns: 1fr; }
}

/* "Spaß am Lernen": die Gamification-Sektion warm/verspielt absetzen (Vollbreite-Band). */
.lp-spass {
  background: linear-gradient(180deg, #FFFBF3 0%, #F1FBF8 100%);
}
.lp-spass .lp-feature-icon { transform: scale(1.05); }
