/* =========================================================
   Webseite.chat – Sales Page Styles
   ========================================================= */

:root {
  --primary: #6D28D9;        /* tiefes Indigo/Violett – modern, vertrauenswürdig */
  --primary-dark: #5B21B6;
  --primary-soft: #EDE9FE;
  --accent: #F59E0B;          /* warmes Amber – für CTAs */
  --accent-dark: #D97706;
  --bg: #FFFFFF;
  --bg-soft: #FAFAF9;
  --bg-tint: #F5F3FF;
  --text: #0F172A;
  --text-soft: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(109, 40, 217, 0.18);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --max-w: 1200px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--text-soft); }
a  { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
em { font-style: normal; color: var(--text); font-weight: 600; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #1F1300;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #1F1300;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--primary); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-sm { padding: 0.6em 1.2em; font-size: 0.9rem; }
.btn-lg { padding: 1.1em 2.2em; font-size: 1.1rem; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--text);
  font-size: 1.15rem;
}
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a { color: var(--text-soft); }
.nav-links a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
}
.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.4em 0.9em;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--primary) 0%, #EC4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 1.2rem;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 460px;
}
.chat-bubble {
  position: absolute;
  background: white;
  padding: 0.9rem 1.2rem;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.95rem;
  max-width: 240px;
  animation: floatUp 1s ease both;
}
.chat-bubble p { margin: 0; color: var(--text); }
.bubble-1 {
  top: 20px; left: 0;
  background: var(--primary);
  animation-delay: 0.1s;
}
.bubble-1 p { color: white; }
.bubble-2 {
  top: 110px; right: 30px;
  background: var(--bg-soft);
  animation-delay: 0.3s;
}
.bubble-3 {
  top: 200px; left: 30px;
  background: var(--accent);
  animation-delay: 0.5s;
  z-index: 1;
}
.bubble-3 p { color: #1F1300; font-weight: 600; }

.mockup {
  position: absolute;
  bottom: 0; right: 0;
  width: 90%;
  z-index: 0;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-2deg);
  animation: floatUp 1.2s 0.4s ease both;
}
.mockup-bar {
  background: #F1F5F9;
  padding: 0.6rem 1rem;
  display: flex;
  gap: 0.4rem;
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
}
.mockup-bar span:first-child { background: #F87171; }
.mockup-bar span:nth-child(2) { background: #FBBF24; }
.mockup-bar span:nth-child(3) { background: #4ADE80; }
.mockup-body { padding: 1.2rem; }
.mockup-line {
  height: 10px;
  background: var(--primary-soft);
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.mockup-line.wide { width: 60%; height: 14px; background: var(--primary); }
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.mockup-grid div {
  height: 50px;
  background: linear-gradient(135deg, var(--primary-soft), white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bubble-1, .bubble-2, .bubble-3 {
  animation-fill-mode: both;
}
.bubble-1 { animation: floatUp 0.8s 0.1s ease both; }
.bubble-2 { animation: floatUp 0.8s 0.3s ease both; }
.bubble-3 { animation: floatUp 0.8s 0.5s ease both; }
.mockup { animation: floatUp 0.8s 0.7s ease both; transform: rotate(-2deg); }

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-head h2 { margin-top: 0.5rem; }
.section-sub {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

/* ---------- Trust ---------- */
.trust {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.trust-label {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.trust-pills span {
  background: white;
  padding: 0.5em 1.1em;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
}

/* ---------- Steps ---------- */
.steps { padding: 6rem 0; }
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: white;
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
}
.step-num {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.3em 0.7em;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.step-card h3 { margin-bottom: 0.6rem; }

/* ---------- Features ---------- */
.features { padding: 6rem 0; background: var(--bg-soft); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: white;
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--primary-soft);
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }

/* ---------- Showcase ---------- */
.showcase { padding: 6rem 0; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.showcase-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  color: var(--text);
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.showcase-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.thumb-cafe {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 50%, #F59E0B 100%);
}
.thumb-friseur {
  background: linear-gradient(135deg, #FCE7F3 0%, #F9A8D4 50%, #EC4899 100%);
}
.thumb-handwerk {
  background: linear-gradient(135deg, #FED7AA 0%, #FB923C 50%, #9A3412 100%);
}
.showcase-card h3 { padding: 1.2rem 1.5rem 0; margin: 0; }
.showcase-card p { padding: 0.4rem 1.5rem 1.4rem; margin: 0; font-size: 0.95rem; }
.showcase-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Pricing ---------- */
.pricing { padding: 6rem 0; background: var(--bg-tint); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-3px); }
.price-card.featured h3,
.price-card.featured .amount { color: white; }
.price-card.featured .price-list li { color: rgba(255,255,255,0.92); }
.price-card.featured .period { color: rgba(255,255,255,0.7); }
.price-card.featured .btn-primary { background: var(--accent); color: #1F1300; }
.price-card.featured .btn-primary:hover { background: white; }
.badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #1F1300;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3em 1em;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.price { margin-bottom: 1.5rem; }
.amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.period {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}
.price-list li {
  padding: 0.5rem 0;
  font-size: 0.97rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}
.price-list li:last-child { border-bottom: none; }
.price-card .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq { padding: 6rem 0; }
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0.8rem 0 0; font-size: 0.97rem; }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #4C1D95 100%);
  color: white;
  text-align: center;
}
.final-cta h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); }
.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.final-cta .btn-primary {
  background: var(--accent);
  color: #1F1300;
}
.final-cta .btn-primary:hover { background: white; }
.final-cta-note {
  margin-top: 1.5rem !important;
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.95rem !important;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--text);
  color: white;
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: white;
}
.footer .logo-mark { background: var(--accent); color: #1F1300; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.footer-links a:hover { color: white; }
.footer-copy {
  text-align: right;
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 3.5rem 0 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 380px; max-width: 480px; margin: 0 auto; }
  .nav-links { display: none; }
  .step-grid,
  .feature-grid,
  .showcase-grid,
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-3px); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-copy { text-align: center; }
  .steps, .features, .showcase, .pricing, .faq, .final-cta { padding: 4rem 0; }
}

@media (max-width: 500px) {
  .container { padding: 0 1.2rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .lead { font-size: 1.05rem; }
  .amount { font-size: 2.3rem; }
  .price-card { padding: 2rem 1.5rem; }
}
