/* ==========================================================================
   Tasktopus AI – Landingpage
   Markenfarben: Pink #FF5D8E · Gelb #FFE066 · Dunkel #33363F
   ========================================================================== */

/* ==========================================================================
   Schrift: Nunito – selbst gehostet (DSGVO)
   Kein Abruf von fonts.googleapis.com/gstatic.com mehr, damit keine Besucher-IP
   an Google übertragen wird. Nunito ist ein Variable Font: eine Datei je
   Zeichensatz deckt alle Schnitte 400–900 ab (font-weight als Bereich).
   Lizenz: SIL Open Font License 1.1
   ========================================================================== */

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --pink: #ff5d8e;
  --pink-dark: #e94a7c;
  --pink-soft: #ffe9f0;
  --yellow: #ffe066;
  --yellow-dark: #f5c518;
  --yellow-soft: #fff7d6;
  --dark: #33363f;
  --dark-2: #43475280;
  --ink: #33363f;
  --muted: #6f7380;
  --bg: #ffffff;
  --bg-tint: #faf8f5;
  --card: #ffffff;
  --border: #eceef2;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 10px 30px rgba(51, 54, 63, 0.09);
  --shadow-lg: 0 24px 60px rgba(51, 54, 63, 0.14);
  --font: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.container-narrow { width: min(780px, 92%); }

/* ==========================================================================
   Buttons & Pills
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 93, 142, 0.35);
}
.btn-primary:hover { background: var(--pink-dark); box-shadow: 0 12px 26px rgba(255, 93, 142, 0.45); }

.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 8px 20px rgba(51, 54, 63, 0.25);
}
.btn-dark:hover { background: #23252c; }

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

.btn-ghost { color: var(--dark); padding: 12px 14px; }
.btn-ghost:hover { color: var(--pink); }

.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pill-yellow { background: var(--yellow); color: var(--dark); }
.pill-pink { background: var(--pink-soft); color: var(--pink-dark); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(51, 54, 63, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
}
.brand-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 13px;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35);
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.brand-name em { font-style: normal; color: var(--pink); }
.brand-name-light { color: #fff; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--pink); }

.header-actions { display: flex; align-items: center; gap: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle-bars {
  display: block;
  position: relative;
  width: 26px;
  height: 20px;
}
.nav-toggle .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--pink);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}
.nav-toggle .bar:nth-child(1) { top: 0; }
.nav-toggle .bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle .bar:nth-child(3) { bottom: 0; }

/* Geöffnet: Balken verknoten sich zum X */
.nav-toggle.open .bar:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, var(--yellow-soft) 0%, transparent 60%),
    radial-gradient(700px 450px at -10% 40%, var(--pink-soft) 0%, transparent 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 72px 0 96px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hl-pink { color: var(--pink); }
.hl-yellow {
  background: linear-gradient(transparent 55%, var(--yellow) 55%, var(--yellow) 92%, transparent 92%);
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 30px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

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

.hero-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.hero-blob {
  position: absolute;
  inset: 8% 6%;
  background: linear-gradient(145deg, var(--yellow) 0%, #ffd633 100%);
  border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%;
  box-shadow: var(--shadow-lg);
  animation: blob 9s ease-in-out infinite alternate;
}

@keyframes blob {
  0%   { border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%; }
  100% { border-radius: 54% 46% 44% 56% / 44% 55% 45% 56%; }
}

.hero-mascot { position: relative; width: min(340px, 74%); animation: floaty 5s ease-in-out infinite; }
.hero-mascot img { width: 100%; height: auto; filter: drop-shadow(0 16px 26px rgba(233, 74, 124, 0.3)); }

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

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  font-size: 0.85rem;
  animation: floaty 6s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 0.9rem; }
.float-card small { color: var(--muted); }

.float-card-1 { top: 6%; left: -2%; animation-delay: 0.6s; }
.float-card-2 { bottom: 12%; right: -4%; animation-delay: 1.4s; }
.float-card-3 { bottom: -2%; left: 4%; flex-direction: column; align-items: flex-start; gap: 8px; min-width: 190px; animation-delay: 2.2s; }

.fc-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}
.fc-pink { background: var(--pink); color: #fff; }
.fc-yellow { background: var(--yellow); color: var(--dark); }

.progress {
  display: flex;
  width: 100%;
  height: 9px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.progress-pink { background: var(--pink); }
.progress-yellow { background: var(--yellow-dark); }

/* ==========================================================================
   Stats-Strip
   ========================================================================== */

.stats-strip { background: var(--dark); color: #fff; }

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0;
  text-align: center;
}

.stat strong { display: block; font-size: 1.7rem; font-weight: 900; color: var(--yellow); }
.stat span { font-size: 0.88rem; opacity: 0.75; }

/* ==========================================================================
   Sections allgemein
   ========================================================================== */

.section { padding: 96px 0; }
.section-tint { background: var(--bg-tint); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ==========================================================================
   Feature-Highlights (Top 3)
   ========================================================================== */

.feature-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.feature-hl {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px 36px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-hl:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-hl-img {
  width: 130px;
  height: 130px;
  margin: 0 auto 22px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(51, 54, 63, 0.15));
  transition: transform 0.3s ease;
}
.feature-hl:hover .feature-hl-img { animation: octoWiggle 0.6s ease; }

.feature-hl h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 10px; }
.feature-hl p { font-size: 0.95rem; color: var(--muted); line-height: 1.55; }

/* ==========================================================================
   Feature-Grid (compact remaining)
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-grid-compact {
  grid-template-columns: repeat(5, 1fr);
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.feature-icon {
  height: 68px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.feature-icon img {
  max-height: 68px;
  max-width: 84px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.feature-card:hover .feature-icon img { animation: octoWiggle 0.6s ease; }

.feature-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; color: var(--muted); }

/* ==========================================================================
   Problem-Sektion
   ========================================================================== */

.problem-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.problem-copy .pill { margin-bottom: 18px; }
.problem-copy h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.problem-copy .lead {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.65;
}
.problem-visual {
  display: flex;
  justify-content: center;
}
.problem-visual img {
  max-width: 280px;
  filter: drop-shadow(0 16px 30px rgba(51, 54, 63, 0.15));
}

/* ==========================================================================
   Toolbox-Sektion
   ========================================================================== */

.toolbox-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.tool-cat {
  background: var(--yellow-soft);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 999px;
}

.toolbox-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.tool-chip {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tool-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.toolbox-visual {
  text-align: center;
}
.toolbox-visual img {
  max-width: 220px;
  margin: 0 auto;
  filter: drop-shadow(0 14px 28px rgba(51, 54, 63, 0.14));
}

/* ==========================================================================
   Steuerung-Grid
   ========================================================================== */

.steer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.steer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.steer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.steer-card img {
  max-height: 56px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.steer-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.steer-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

/* ==========================================================================
   Persona / Für-wen Grid
   ========================================================================== */

.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.persona-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.persona-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.persona-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: drop-shadow(0 10px 20px rgba(51, 54, 63, 0.14));
}
.persona-card h3 { font-size: 1.15rem; font-weight: 900; margin-bottom: 8px; }
.persona-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* ==========================================================================
   KI-Sektion
   ========================================================================== */

.section-dark {
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(255, 93, 142, 0.18) 0%, transparent 60%),
    radial-gradient(600px 380px at 5% 90%, rgba(255, 224, 102, 0.12) 0%, transparent 60%),
    var(--dark);
  color: #fff;
}

.ki-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.ki-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.lead-dark { color: rgba(255, 255, 255, 0.75); font-size: 1.05rem; margin-bottom: 34px; }

.ki-list { list-style: none; display: grid; gap: 22px; }
.ki-list li { display: flex; gap: 16px; align-items: flex-start; }
.ki-list strong { font-size: 1.02rem; }
.ki-list p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.65); margin-top: 2px; }

.ki-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(255, 224, 102, 0.3);
}

/* --- Chat-Demo --- */

.chat-window {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.chat-head strong { display: block; }
.chat-head small { display: block; color: #2fbf71; font-weight: 700; }

.chat-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--pink-soft);
  border-radius: 50%;
  overflow: hidden;
}
.chat-avatar img { width: 34px; height: 34px; object-fit: contain; }

.chat-body { padding: 20px; display: grid; gap: 12px; min-height: 260px; }

.msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  animation: msgIn 0.4s ease both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-user {
  justify-self: end;
  background: var(--dark);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.msg-bot {
  justify-self: start;
  background: var(--pink-soft);
  border-bottom-left-radius: 4px;
}

.chat-input {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.chat-input input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease;
}
.chat-input input:focus { border-color: var(--pink); }

/* ==========================================================================
   Steps
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 26px;
  align-items: start;
}

.step { text-align: center; padding: 0 8px; }

.step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.num-pink { background: var(--pink); color: #fff; }
.num-yellow { background: var(--yellow); color: var(--dark); }
.num-dark { background: var(--dark); color: var(--yellow); }

.step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 0.94rem; color: var(--muted); }

.step-arrow {
  align-self: center;
  font-size: 1.6rem;
  color: var(--pink);
  opacity: 0.5;
}

/* ==========================================================================
   Early Bird
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eb-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--yellow-soft) 100%);
  border: 2px solid #fff;
  border-radius: 32px;
  padding: 56px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.eb-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.eb-lead {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 26px;
}

.eb-perks {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}
.eb-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
}
.eb-perks strong { font-weight: 800; }

.eb-check {
  flex: none;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

[hidden] { display: none !important; }

.eb-plan {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}
.eb-plan strong { color: var(--ink); font-weight: 900; }

.eb-plan-clear {
  border: 0;
  background: none;
  padding: 0;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--pink-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.eb-plan-clear:hover { color: var(--pink); }

.eb-form {
  position: relative;
  display: flex;
  gap: 10px;
  max-width: 460px;
}

/* Honeypot: für Menschen unsichtbar, für Bots verlockend. Nicht display:none –
   manche Bots überspringen versteckte Felder gezielt. */
.eb-hp {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Bestätigungsseite (api/confirm.php): gleiche Karte, aber ohne Formular und Platzanzeige. */
.eb-card-solo { align-items: center; }
.eb-card-solo .eb-copy h2 { margin-bottom: 12px; }
.eb-card-solo .eb-lead { margin-bottom: 26px; }
.eb-form input {
  flex: 1;
  min-width: 0;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font);
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.eb-form input::placeholder { color: #a9adb9; }
.eb-form input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 93, 142, 0.15);
}
.eb-form input.is-invalid { border-color: var(--pink-dark); }

.eb-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 800;
}
.eb-status.is-error { color: var(--pink-dark); }
.eb-status.is-ok { color: #2e7d5b; }

.eb-note {
  margin-top: 18px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 460px;
}
.eb-note a {
  color: var(--pink-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.eb-note a:hover { color: var(--pink); }

.eb-visual {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.eb-blob {
  position: absolute;
  inset: -10% 5% 20%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 224, 102, 0.55), transparent 68%);
  filter: blur(6px);
}

.eb-mascot {
  position: relative;
  width: min(240px, 70%);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(51, 54, 63, 0.18));
}

.eb-seats {
  position: relative;
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.eb-seats-bar {
  height: 9px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}
.eb-seats-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--yellow-dark));
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.eb-seats-text {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
  text-align: center;
}
.eb-seats-text strong { color: var(--ink); }

@media (max-width: 860px) {
  .eb-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 28px;
  }
  .eb-visual { order: -1; }
  .eb-mascot { width: 160px; }
  .eb-blob { inset: -14% 18% 26%; }
}

@media (max-width: 640px) {
  .eb-card { padding: 32px 20px; border-radius: 24px; }
  .eb-form { flex-direction: column; }
  .eb-form .btn { width: 100%; }
}

/* ==========================================================================
   Preise
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.price-featured {
  border-color: var(--pink);
  box-shadow: 0 18px 44px rgba(255, 93, 142, 0.22);
}
.price-featured:hover { transform: translateY(-5px); }

.price-flag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 5px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.4);
  white-space: nowrap;
}
.price-flag .flag-octo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  margin: -6px -4px -6px 0;
}

.price-card h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 10px; }

.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; flex-wrap: wrap; }
.price strong { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.03em; }
.price .amt-text { font-size: 1.7rem; }
.price span { color: var(--muted); font-size: 0.9rem; }

.price-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.93rem;
  margin-bottom: 28px;
}

.price-card .btn { margin-top: auto; }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote-card p { font-size: 0.98rem; line-height: 1.65; }
.quote-card footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-card strong { display: block; font-size: 0.95rem; }
.quote-card small { color: var(--muted); }

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.av-pink { background: var(--pink); color: #fff; }
.av-yellow { background: var(--yellow); color: var(--dark); }
.av-dark { background: var(--dark); color: var(--yellow); }

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

.faq-list { display: grid; gap: 14px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 24px;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 20px 0;
  position: relative;
  padding-right: 36px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: 1.2rem;
  font-weight: 900;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "–"; transform: translateY(-50%) rotate(180deg); }

.faq-item p { padding-bottom: 22px; color: var(--muted); font-size: 0.95rem; }

/* ==========================================================================
   Trust-Strip
   ========================================================================== */

.trust-strip {
  background: var(--dark);
  color: #fff;
  padding: 36px 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.trust-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ==========================================================================
   CTA-Banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(120deg, var(--pink) 0%, #ff7ba3 60%, var(--pink) 100%);
  color: #fff;
  overflow: hidden;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 56px 0;
  flex-wrap: wrap;
}

.cta-mascot {
  width: 130px;
  flex-shrink: 0;
  animation: floaty 5s ease-in-out infinite;
}
.cta-mascot img { width: 100%; height: auto; filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2)); }

.cta-copy { flex: 1; min-width: 260px; }
.cta-copy h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; letter-spacing: -0.02em; }
.cta-copy p { opacity: 0.9; margin-top: 6px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--dark); color: rgba(255, 255, 255, 0.75); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 40px;
}

.footer-brand p { margin-top: 16px; font-size: 0.92rem; }

.footer-grid h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-grid a {
  display: block;
  font-size: 0.92rem;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.footer-grid a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Text-Herz in Markenfarbe (statt mehrfarbigem Emoji) */
.heart {
  color: var(--pink);
  font-style: normal;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1000px) {
  .header-actions .btn-ghost { display: none; }
  .main-nav { gap: 18px; }
  .btn { padding: 11px 18px; font-size: 0.9rem; }
  .btn-lg { padding: 15px 26px; font-size: 1rem; }

  .hero-inner { grid-template-columns: 1fr; padding: 48px 0 72px; }
  .hero-visual { min-height: 380px; margin-top: 12px; }
  .float-card-1 { left: 2%; }
  .float-card-2 { right: 0; }

  .feature-highlights { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid-compact { grid-template-columns: repeat(3, 1fr); }
  .ki-inner { grid-template-columns: 1fr; gap: 44px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-5px); }

  .problem-inner { grid-template-columns: 1fr; gap: 32px; }
  .problem-visual img { max-width: 220px; }

  .steer-grid { grid-template-columns: repeat(2, 1fr); }
  .persona-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .steps { grid-template-columns: 1fr; gap: 34px; }
  .step-arrow { transform: rotate(90deg); justify-self: center; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 16px 24px; border-top: 1px solid var(--border); }

  .nav-toggle { display: flex; flex-shrink: 0; }
  .header-actions .btn-ghost,
  .header-actions .btn-primary { display: none; }
}

@media (max-width: 640px) {
  .feature-highlights { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid-compact { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .quote-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .steer-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .persona-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .problem-visual { order: -1; }
  .problem-visual img { max-width: 180px; }

  .section { padding: 64px 0; }
  .cta-inner { flex-direction: column; text-align: center; }
  .trust-items { gap: 10px 20px; }
  .trust-item { font-size: 0.82rem; white-space: normal; }
}

/* ==========================================================================
   Rechtsseiten (Impressum, Datenschutz, AGB, AVV)
   ========================================================================== */
.legal-hero { padding: 120px 0 32px; background: var(--bg-tint); }
.legal-hero .pill { margin-bottom: 14px; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; }
.legal-hero p { color: var(--muted); max-width: 620px; margin-top: 10px; }

.legal-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.legal-hero-text { flex: 1; min-width: 0; }
.legal-hero-octo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 22px rgba(51, 54, 63, 0.16));
  animation: floaty 5s ease-in-out infinite;
}
@media (max-width: 640px) {
  .legal-hero-inner { flex-direction: column-reverse; align-items: flex-start; gap: 16px; }
  .legal-hero-octo { width: 104px; height: 104px; }
}

.legal { padding: 48px 0 96px; }
.legal-body { font-size: 1rem; line-height: 1.7; color: #33363f; }
.legal-body h2 {
  font-size: 1.3rem;
  font-weight: 900;
  margin: 40px 0 12px;
  scroll-margin-top: 90px;
}
.legal-body h3 { font-size: 1.05rem; font-weight: 800; margin: 24px 0 8px; }
.legal-body p { margin: 0 0 14px; }
.legal-body ul { margin: 0 0 16px; padding-left: 22px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--pink); word-break: break-word; }
.legal-body .address {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 0 0 20px;
  box-shadow: var(--shadow);
  font-style: normal;
}
.legal-body .updated { color: var(--muted); font-size: 0.9rem; }
.blog-ai-note {
  margin-top: 36px;
  padding: 14px 18px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.legal-back {
  display: inline-block;
  margin-top: 32px;
  font-weight: 800;
  color: var(--pink);
}
.legal-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0 24px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.5;
  min-width: 600px;
}
.legal-table th,
.legal-table td {
  border: 1px solid #d9dce3;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.legal-table thead th {
  background: #f4f5f7;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #33363f;
}
.legal-table tbody td { color: #33363f; }
@media (max-width: 680px) {
  .legal-table { font-size: 0.82rem; }
  .legal-table th, .legal-table td { padding: 8px 10px; }
}

/* ==========================================================================
   Blog – Übersicht & Artikel
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card-media {
  height: 168px;
  display: grid;
  place-items: center;
}
.blog-card-media img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(51, 54, 63, 0.22));
  transition: transform 0.25s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.08) rotate(-3deg); }

.blog-media-yellow { background: radial-gradient(circle at 50% 38%, var(--yellow) 0%, #ffd633 100%); }
.blog-media-pink   { background: radial-gradient(circle at 50% 38%, #ff86ab 0%, var(--pink) 100%); }
.blog-media-dark   { background: radial-gradient(circle at 50% 38%, #454852 0%, var(--dark) 100%); }

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 26px;
}

.blog-cat {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink-dark);
  background: var(--pink-soft);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 13px;
}

.blog-card h3 { font-size: 1.12rem; font-weight: 800; line-height: 1.3; margin-bottom: 10px; }
.blog-card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 16px; }
.blog-meta { margin-top: auto; font-size: 0.82rem; font-weight: 700; color: var(--muted); }

/* --- Artikelseite --- */

.article-hero { padding: 120px 0 28px; background: var(--bg-tint); }
.article-hero .blog-cat { margin-bottom: 16px; }
.article-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 900; line-height: 1.15; letter-spacing: -0.02em; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}
.article-meta .author { display: inline-flex; align-items: center; gap: 8px; }
.article-meta .author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--pink-soft);
}

.article-body .lead {
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
}
.article-body blockquote {
  margin: 30px 0;
  padding: 18px 26px;
  border-left: 4px solid var(--pink);
  background: var(--pink-soft);
  border-radius: 0 14px 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}
.article-body .callout {
  margin: 30px 0;
  padding: 20px 24px;
  background: var(--yellow-soft);
  border: 1px solid #f2e4a8;
  border-radius: 16px;
  font-size: 0.98rem;
}
.article-body .callout strong { color: var(--dark); }

.article-cta {
  margin: 44px 0 8px;
  padding: 34px 32px;
  background:
    radial-gradient(500px 260px at 85% 10%, rgba(255, 93, 142, 0.2) 0%, transparent 60%),
    var(--dark);
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
}
.article-cta h3 { color: #fff; font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.article-cta p { color: rgba(255, 255, 255, 0.72); margin-bottom: 20px; }

@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* Hero-Badge mit Oktopus-Maskottchen (wie im Pricing) */
.pill-octo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.pill-octo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin: -6px 0;
  filter: drop-shadow(0 2px 4px rgba(245, 197, 24, 0.4));
}

/* ==========================================================================
   Preis-Umschalter (Monat / Jahr)
   ========================================================================== */

.billing-toggle {
  display: flex;
  gap: 4px;
  width: fit-content;
  margin: -24px auto 44px;
  padding: 5px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.billing-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: none;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.billing-opt:hover { color: var(--dark); }
.billing-opt.is-active { background: var(--dark); color: #fff; }

.billing-save {
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--yellow);
  color: var(--dark);
  padding: 2px 8px;
  border-radius: 999px;
}

/* Preis je nach Abrechnungszeitraum ein-/ausblenden */
.pricing-grid.bill-annual  .amt-monthly { display: none; }
.pricing-grid.bill-monthly .amt-annual  { display: none; }

.price-enterprise { border-style: dashed; }

/* ==========================================================================
   Launch-Banner
   ========================================================================== */

.launch-banner {
  position: relative;
  background: linear-gradient(90deg, var(--dark) 0%, #3d4049 100%);
  color: #fff;
  overflow: hidden;
}
.launch-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

.launch-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 46px;
  flex-wrap: wrap;
  text-align: center;
}

.launch-octo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  animation: floaty 4s ease-in-out infinite;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.launch-text { font-size: 0.9rem; font-weight: 700; }
.launch-text strong { color: var(--yellow); font-weight: 900; }

.launch-countdown {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.launch-cta {
  flex-shrink: 0;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 999px;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.launch-cta:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 93, 142, 0.35);
}

.launch-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 8px;
  transition: color 0.15s ease;
}
.launch-close:hover { color: #fff; }

@media (max-width: 640px) {
  .launch-cta { display: none; }
  .launch-octo { display: none; }
  .launch-text { font-size: 0.82rem; }
  .launch-countdown { display: block; margin: 4px auto 0; }
}

/* ==========================================================================
   Premium-Feinschliff
   ========================================================================== */

/* Anker landen nicht unter dem Sticky-Header */
html { scroll-padding-top: 86px; }

/* Markige Textauswahl */
::selection { background: var(--yellow); color: var(--dark); }

/* Ausgewogene Zeilenumbrüche in Headlines */
h1, h2, h3 { text-wrap: balance; }
.lead, .section-head p { text-wrap: pretty; }

/* Sichtbare, markenkonforme Fokus-Zustände */
:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { outline-offset: 2px; }

/* Logo reagiert auf Hover */
.brand-logo img { transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }
.brand:hover .brand-logo img { transform: rotate(-6deg) scale(1.06); }

/* Primär-Button mit feinem Glanz */
.btn-primary,
.btn-primary:hover {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 48%);
}

/* Sanftes Einblenden beim Scrollen (Klassen setzt js/main.js) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* Funkeln im Hero-Visual */
.hero-visual::before,
.hero-visual::after {
  content: "\2726";
  position: absolute;
  font-size: 1.6rem;
  color: var(--pink);
  animation: sparkle 3.2s ease-in-out infinite;
  pointer-events: none;
}
.hero-visual::before { top: 4%; right: 10%; }
.hero-visual::after {
  bottom: 7%;
  right: 26%;
  font-size: 1.15rem;
  color: var(--yellow-dark);
  animation-delay: 1.4s;
}
@keyframes sparkle {
  0%, 100% { opacity: 0.25; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(18deg); }
}

/* Feature-Karten: Farbakzent beim Hover */
.feature-card { position: relative; overflow: hidden; }
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.feature-card:hover::after { opacity: 1; }

/* Pro-Karte mit Verlaufs-Rahmen */
.price-featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, var(--pink), var(--yellow)) border-box;
}

/* FAQ: Antwort gleitet sanft herein */
.faq-item[open] summary ~ p { animation: faqIn 0.3s ease both; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Chat: Tipp-Indikator */
.msg-typing { display: inline-flex; align-items: center; gap: 5px; padding: 15px 18px; }
.msg-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  animation: typingDot 1s ease-in-out infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.15s; }
.msg-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* CTA-Banner: dezentes Punktmuster */
.cta-banner { position: relative; }
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.cta-inner { position: relative; }

/* Oktopus-Wiggle bei Hover */
@keyframes octoWiggle {
  0%   { transform: scale(1) rotate(0deg); }
  20%  { transform: scale(1.1) rotate(-4deg); }
  40%  { transform: scale(1.08) rotate(3deg); }
  60%  { transform: scale(1.1) rotate(-2deg); }
  80%  { transform: scale(1.06) rotate(1deg); }
  100% { transform: scale(1.08) rotate(-1deg); }
}

.persona-card:hover img,
.steer-card:hover img,
.problem-visual:hover img,
.toolbox-visual:hover img { animation: octoWiggle 0.6s ease; }

/* Float-Cards: unterschiedliche Schweberhythmen */
.float-card-1 { animation: floatSlow 5s ease-in-out infinite; animation-delay: 0s; }
.float-card-2 { animation: floatSlow 6s ease-in-out infinite; animation-delay: 1.2s; }
.float-card-3 { animation: floatSlow 5.5s ease-in-out infinite; animation-delay: 2.4s; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Toolbox-Chips: leichter Scale-Reveal */
.tool-chip.reveal,
.tool-cat.reveal {
  transform: translateY(12px) scale(0.92);
}
.tool-chip.reveal.visible,
.tool-cat.reveal.visible {
  transform: none;
}

/* Bewegung respektiert Nutzer-Einstellungen */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
