/* ============================
   TASKSHIFT — Custom Theme
   ============================ */

:root {
  --bg: #0f0f14;
  --bg-alt: #141418;
  --bg-light: #f8f7f4;
  --fg: #f8f7f4;
  --fg-dark: #0f0f14;
  --fg-muted: #a0a0b0;
  --accent: #f5a623;
  --accent-dark: #c47d0e;
  --border: rgba(255,255,255,0.08);
  --card-bg: #18181f;
  --card-border: rgba(255,255,255,0.06);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.15; }

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(15, 15, 20, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-brand { display: flex; align-items: center; gap: 0.75rem; }

.brand-mark {
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.85rem;
  border-radius: 8px;
}
.brand-mark-sm { width: 28px; height: 28px; font-size: 0.75rem; border-radius: 6px; }

.brand-name {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.8rem; color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.2rem 0.7rem; border-radius: 999px;
  margin-bottom: 1.2rem;
}

/* ===== HERO ===== */
.hero {
  padding: 5rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem; color: var(--fg-muted); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-region-sub {
  font-size: 0.72rem; color: rgba(160,160,176,0.55); letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  font-family: 'DM Sans', sans-serif;
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.1rem; color: var(--fg-muted); line-height: 1.7; max-width: 520px;
}

/* Hero visual — CSS-only concentric rings */
.hero-visual {
  position: relative; width: 260px; height: 260px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.65;
}

.vis-ring {
  position: absolute; border-radius: 50%; border: 1.5px solid rgba(245, 166, 35, 0.25);
}
.vis-ring-1 { width: 100px; height: 100px; border-color: rgba(245,166,35,0.35); }
.vis-ring-2 { width: 160px; height: 160px; border-color: rgba(245,166,35,0.2); }
.vis-ring-3 { width: 230px; height: 230px; border-color: rgba(245,166,35,0.1); }

.vis-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(245,166,35,0.45);
  position: relative; z-index: 2;
}

.vis-label {
  position: absolute;
  font-size: 0.65rem; color: rgba(160,160,176,0.5); line-height: 1.4;
  font-family: 'DM Sans', sans-serif;
}
.vis-label-1 { top: 12px; left: 50%; transform: translateX(-50%); text-align: center; }
.vis-label-2 { right: 5px; top: 50%; transform: translateY(-50%); text-align: right; }
.vis-label-3 { bottom: 12px; left: 50%; transform: translateX(-50%); text-align: center; }

/* Hero proof bar */
.hero-proof {
  max-width: 1100px; margin: 3rem auto 0;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.proof-item { padding: 0 2rem; }
.proof-num { display: block; font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.proof-label { display: block; font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.25rem; line-height: 1.5; }
.proof-divider { width: 1px; height: 60px; background: var(--border); align-self: center; }

/* ===== PAIN ===== */
.pain { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
.pain-inner { max-width: 1100px; margin: 0 auto; }

.pain-header { max-width: 600px; margin-bottom: 3.5rem; }
.pain-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-top: 0.5rem; }

.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }

.pain-card { background: var(--card-bg); padding: 2.5rem; }
.pain-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.pain-time { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--accent); margin-bottom: 0.6rem; }
.pain-desc { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.6; }

.pain-statement {
  margin-top: 3rem; padding: 2rem 2.5rem;
  background: var(--card-bg); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0;
  font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 600;
  color: var(--fg-muted); line-height: 1.6;
}

/* ===== LOESUNG ===== */
.loesung { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
.loesung-inner { max-width: 1100px; margin: 0 auto; }

.loesung-header { max-width: 700px; margin-bottom: 3.5rem; }
.loesung-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-top: 0.5rem; line-height: 1.25; }

.loesung-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }

.loesung-card { background: var(--card-bg); padding: 2rem; }
.loesung-num { font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 1rem; }
.loesung-h { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.3; }
.loesung-desc { color: var(--fg-muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.loesung-tech { font-size: 0.7rem; color: var(--fg-muted); font-family: monospace; background: rgba(255,255,255,0.04); padding: 0.4rem 0.7rem; border-radius: 4px; display: inline-block; }

.loesung-cta { margin-top: 2.5rem; text-align: center; }
.loesung-cta p { font-size: 0.85rem; color: var(--fg-muted); }

/* ===== PROZESS ===== */
.prozess { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
.prozess-inner { max-width: 900px; margin: 0 auto; }

.prozess-header { margin-bottom: 4rem; }
.prozess-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-top: 0.5rem; }
.prozess-sub { color: var(--fg-muted); margin-top: 1rem; font-size: 1rem; }

.prozess-steps { display: flex; flex-direction: column; gap: 0; }

.step { display: grid; grid-template-columns: 140px 2px 1fr; gap: 0 2.5rem; position: relative; }

.step-week {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--accent);
  padding-top: 0.2rem; text-align: right;
}

.step-connector {
  width: 2px; background: var(--border);
  position: relative;
}
.step-connector::before {
  content: ''; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.step-last .step-connector::before { display: none; }

.step-content { padding-bottom: 3rem; }
.step-last .step-content { padding-bottom: 0; }

.step-h { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-p { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== PRICING ===== */
.pricing { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }

.pricing-header { margin-bottom: 3.5rem; }
.pricing-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-top: 0.5rem; }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.pricing-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 2.5rem; }
.pricing-retainer { border-color: rgba(245,166,35,0.3); }

.pricing-tier { font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.pricing-range { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.pricing-desc { color: var(--fg-muted); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.6; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li { font-size: 0.85rem; color: var(--fg-muted); padding-left: 1.4rem; position: relative; }
.pricing-features li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 0.8rem; }

.pricing-note { font-size: 0.75rem; color: var(--fg-muted); margin-top: 1.5rem; font-style: italic; }

.pricing-reference { margin-top: 2.5rem; display: flex; gap: 2rem; flex-wrap: wrap; }
.ref-calc { flex: 1; min-width: 280px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 1.2rem 1.5rem; }
.ref-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 0.4rem; }
.ref-formula { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; }
.ref-formula strong { color: var(--accent); }

/* ===== MANIFEST ===== */
.manifest { padding: 5rem 3rem; }
.manifest-inner { max-width: 900px; margin: 0 auto; }

.manifest-quote {
  font-family: 'Syne', sans-serif; font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600; line-height: 1.5; color: var(--fg-muted);
  border-left: 3px solid var(--accent); padding-left: 2rem; margin-bottom: 4rem;
}

.manifest-h { font-size: 1.8rem; margin-bottom: 1.5rem; }
.manifest-p { color: var(--fg-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }

/* ===== LEAD FORM ===== */
.leadform {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.leadform-inner { max-width: 900px; margin: 0 auto; }

.leadform-header { max-width: 680px; margin-bottom: 3rem; }
.leadform-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-top: 0.5rem; line-height: 1.25; }
.leadform-sub { color: var(--fg-muted); font-size: 1rem; margin-top: 1rem; line-height: 1.7; }

.leadform-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }

/* Pilot CTA + mini case (right column) */
.leadform-pilot {
  background: var(--card-bg);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.btn-pilot {
  display: inline-block;
  background: var(--accent);
  color: var(--fg-dark);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
}
.btn-pilot:hover { background: var(--accent-dark); }
.pilot-hint { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.5; }

.leadform-case {
  margin-top: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
}
.case-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.6rem; font-weight: 600; }
.case-text { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.7; }
.case-text em { font-style: normal; color: rgba(160,160,176,0.6); font-size: 0.75rem; display: block; margin-top: 0.5rem; }

/* Form */
.lead-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.8rem; font-weight: 500; color: var(--fg-muted); letter-spacing: 0.02em; }
.field-opt { font-weight: 400; opacity: 0.65; }

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(245,166,35,0.5); }

.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a0b0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; cursor: pointer; }
.form-field select option { background: #18181f; }

.form-field textarea { resize: vertical; min-height: 90px; }

.form-footer { display: flex; flex-direction: column; gap: 0.75rem; }
.btn-submit {
  background: var(--accent);
  color: var(--fg-dark);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--accent-dark); }

.form-dsgvo { font-size: 0.75rem; color: var(--fg-muted); line-height: 1.6; }
.form-dsgvo a { color: var(--fg-muted); text-decoration: underline; }
.form-dsgvo a:hover { color: var(--accent); }

.lead-success {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: #25d366;
}
.lead-error {
  background: rgba(220,50,50,0.1);
  border: 1px solid rgba(220,50,50,0.3);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: #e06060;
}

@media (max-width: 900px) {
  .leadform { padding: 4rem 1.5rem; }
  .leadform-wrap { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .leadform-pilot { order: -1; }
}

/* ===== FOOTER ===== */
.footer { padding: 2.5rem 3rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand-text { display: flex; flex-direction: column; }
.footer-tagline { font-size: 0.75rem; color: var(--fg-muted); }
.footer-meta { text-align: right; }
.footer-meta p { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.8; }
.footer-legal a { color: var(--fg-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--accent); }
.footer-sep { margin: 0 0.4rem; color: var(--border); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-proof { grid-template-columns: 1fr; gap: 1.5rem; }
  .proof-divider { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .loesung-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 100px 2px 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-meta { text-align: center; }
  .nav { padding: 1rem 1.5rem; }
  .hero, .pain, .loesung, .prozess, .pricing, .manifest { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .step { grid-template-columns: 80px 2px 1fr; gap: 0 1.5rem; }
  .nav-tagline { display: none; }
}

/* ===== WHATSAPP DEMO SECTION ===== */
.demo-section {
  background: var(--bg-alt);
  padding: 5rem 2rem 6rem;
  border-bottom: 1px solid var(--border);
}

.demo-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.demo-header {
  text-align: center;
  max-width: 600px;
}

.demo-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}

.demo-subtitle {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.demo-disclaimer {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.02em;
}

/* Phone wrapper */
.wa-wrapper {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* The phone chrome */
.wa-phone {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
  background: #ece5dd;
  display: flex;
  flex-direction: column;
}

/* WhatsApp green header */
.wa-header {
  background: #075e54;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
}

.wa-header-back { cursor: pointer; flex-shrink: 0; }

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.wa-header-info { flex: 1; min-width: 0; }

.wa-contact-name {
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-contact-status {
  font-size: 0.72rem;
  opacity: 0.85;
}

.wa-header-icons { flex-shrink: 0; }

/* Messages area */
.wa-messages {
  flex: 1;
  min-height: 300px;
  max-height: 360px;
  overflow-y: auto;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #ece5dd url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9b99a' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  scroll-behavior: smooth;
}

.wa-messages::-webkit-scrollbar { width: 4px; }
.wa-messages::-webkit-scrollbar-track { background: transparent; }
.wa-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 2px; }

/* Chat bubbles */
.wa-bubble {
  max-width: 82%;
  padding: 0.5rem 0.75rem 0.3rem;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.45;
  position: relative;
  word-wrap: break-word;
  color: #111;
}

.wa-bubble p { margin: 0; }

.wa-bubble-in {
  background: #ffffff;
  align-self: flex-start;
  border-top-left-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}

.wa-bubble-out {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}

.wa-time {
  display: block;
  font-size: 0.65rem;
  color: #888;
  text-align: right;
  margin-top: 0.2rem;
}

/* Typing indicator */
.wa-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.6rem 0.85rem;
  min-width: 52px;
}

.wa-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #888;
  animation: wa-bounce 1.2s infinite ease-in-out;
}
.wa-dot:nth-child(2) { animation-delay: 0.2s; }
.wa-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes wa-bounce {
  0%, 80%, 100% { transform: scale(0.75); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* Quick-reply chips */
.wa-chips {
  background: #f0f2f5;
  padding: 0.6rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.wa-chip {
  background: white;
  border: 1px solid #25d366;
  color: #075e54;
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}

.wa-chip:hover { background: #25d366; color: white; }

/* Input row */
.wa-input-row {
  background: #f0f2f5;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.wa-input-wrap { flex: 1; }

.wa-input {
  width: 100%;
  background: white;
  border: none;
  border-radius: 22px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  color: #111;
}

.wa-input:disabled { opacity: 0.6; }

.wa-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.wa-send:hover { background: #1ebe5b; }
.wa-send:disabled { background: #a8d5b5; cursor: not-allowed; }

/* Post-conversation CTA */
.demo-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, #e8920a 100%);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  color: var(--fg-dark);
}

.demo-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

.demo-cta-icon { font-size: 2rem; }

.demo-cta h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--fg-dark);
}

.demo-cta p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
  max-width: 280px;
}

.demo-cta-btn {
  display: inline-block;
  background: var(--fg-dark);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 0.25rem;
  transition: opacity 0.15s;
}

.demo-cta-btn:hover { opacity: 0.88; }

/* Booking summary inside confirmation panel */
.booking-summary {
  margin-top: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.booking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
}
.booking-row:last-child { border-bottom: none; }
.booking-row span:first-child { color: var(--fg-muted); }
.booking-row span:last-child { font-weight: 500; }
.booking-row .accent { color: var(--accent); }

/* Responsive demo */
@media (max-width: 640px) {
  .demo-section { padding: 3rem 1rem 4rem; }
  .wa-wrapper { max-width: 100%; }
  .wa-messages { max-height: 280px; }
}

/* ===== SHARED BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--fg-dark);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-primary.btn-large { font-size: 1.05rem; padding: 1rem 2.2rem; border-radius: 12px; }
.btn-primary.btn-full { width: 100%; text-align: center; display: block; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: var(--fg); border-color: rgba(255,255,255,0.2); }

/* ===== DEMO AUDIT CTA ===== */
.demo-audit-cta {
  width: 100%;
  max-width: 820px;
  background: var(--card-bg);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 14px;
  padding: 1.75rem 2rem;
}

.demo-audit-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.demo-audit-cta-text { flex: 1; min-width: 240px; }

.demo-audit-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.demo-audit-desc {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.demo-audit-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .demo-audit-cta-inner { flex-direction: column; align-items: flex-start; }
  .demo-audit-btn { width: 100%; text-align: center; }
}

/* ===== AUDIT PAGE ===== */
.audit-hero {
  padding: 5rem 2rem 4.5rem;
  background: linear-gradient(170deg, #0f0f14 0%, #16131d 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.audit-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.audit-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
}

.audit-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.audit-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.audit-price {
  font-family: 'Syne', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent);
}

.audit-price-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.audit-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

.audit-guarantee {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* Audit sections */
.audit-section { padding: 5rem 2rem; border-bottom: 1px solid var(--border); }
.audit-section-alt { background: var(--bg-alt); }
.audit-inner { max-width: 900px; margin: 0 auto; }
.audit-section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-top: 0.5rem; margin-bottom: 3rem; }

/* For-whom grid */
.audit-forwen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audit-forwen-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 2rem;
}

.audit-forwen-icon { font-size: 2rem; margin-bottom: 1rem; }
.audit-forwen-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.audit-forwen-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* Steps */
.audit-steps { display: flex; flex-direction: column; gap: 2.5rem; }

.audit-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.audit-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  padding-top: 0.15rem;
}

.audit-step-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.audit-step-body p { font-size: 0.92rem; color: var(--fg-muted); line-height: 1.65; }

/* Quick-win examples */
.audit-wins { display: flex; flex-direction: column; gap: 1.5rem; }

.audit-win {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.audit-win-icon { font-size: 1.8rem; }
.audit-win-body strong { font-size: 1rem; font-weight: 700; display: block; margin-bottom: 0.4rem; }
.audit-win-body p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 0.5rem; }
.audit-win-time {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
}

/* Mid-page CTA */
.audit-cta-section {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(245,166,35,0.05) 0%, transparent 70%);
}

.audit-cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.audit-cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.audit-cta-inner p { font-size: 1rem; color: var(--fg-muted); max-width: 520px; }
.audit-small-note { font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.5rem; }

/* FAQ */
.audit-faq { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}

details[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  padding-bottom: 1.25rem;
}

.faq-a p { font-size: 0.93rem; color: var(--fg-muted); line-height: 1.7; }

/* Final CTA + B2B form */
.audit-final-cta {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}

.audit-final-box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.audit-final-box h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.audit-final-box > p { font-size: 1rem; color: var(--fg-muted); max-width: 480px; }

#audit-form { width: 100%; display: flex; flex-direction: column; gap: 1.25rem; }

.audit-b2b-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.audit-b2b-check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.audit-legal-links {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.audit-legal-links a { color: var(--fg-muted); text-decoration: underline; }

/* ===== DANKE PAGE ===== */
.danke-section {
  min-height: 80vh;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.danke-inner {
  max-width: 600px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.danke-icon { font-size: 3.5rem; }

.danke-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
}

.danke-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 500px;
}

.danke-next {
  width: 100%;
  text-align: left;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
}

.danke-next h2 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--fg-muted);
  font-weight: 600;
}

.danke-steps { display: flex; flex-direction: column; gap: 1.25rem; }

.danke-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: start;
}

.danke-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.danke-dot-done { background: #25d366; color: white; }
.danke-dot-active { background: var(--accent); color: var(--fg-dark); }
.danke-dot-pending { background: var(--card-bg); border: 1px solid var(--border); color: var(--fg-muted); }

.danke-step strong { font-size: 0.95rem; display: block; margin-bottom: 0.25rem; }
.danke-step p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.55; }

.danke-contact { font-size: 0.9rem; color: var(--fg-muted); }
.danke-email { display: block; color: var(--accent); font-weight: 600; font-size: 1rem; text-decoration: none; margin-top: 0.25rem; }

.danke-home-link { margin-top: 0.5rem; }

/* Audit responsive */
@media (max-width: 768px) {
  .audit-forwen-grid { grid-template-columns: 1fr; }
  .audit-hero { padding: 4rem 1.5rem 3.5rem; }
  .audit-section { padding: 3.5rem 1.5rem; }
  .audit-win { grid-template-columns: 40px 1fr; gap: 1rem; }
  .audit-cta-section { padding: 3.5rem 1.5rem; }
  .audit-final-cta { padding: 3.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .audit-price { font-size: 2.4rem; }
  .audit-step { grid-template-columns: 40px 1fr; }
  .danke-section { padding: 3rem 1.5rem; }
}

/* ===== PROBETERMIN SECTION ===== */
.probetermin-section {
  padding: 5rem 3rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.probetermin-inner {
  max-width: 740px;
  margin: 0 auto;
}

.probetermin-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.probetermin-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.6rem 0 1rem;
}

.probetermin-subtitle {
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* loading / error */
.pt-loading, .pt-error {
  text-align: center;
  color: var(--fg-muted);
  padding: 2rem;
  font-size: 0.95rem;
}

.pt-retry {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: underline;
}

/* Day tab strip */
.pt-days {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.pt-day-btn {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--fg);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.pt-day-btn:hover {
  background: rgba(245,166,35,0.08);
  border-color: rgba(245,166,35,0.3);
}

.pt-day-btn.active {
  background: rgba(245,166,35,0.15);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

/* Slot buttons */
.pt-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pt-slot-btn {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--fg);
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.pt-slot-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--fg-dark);
  font-weight: 700;
}

/* Booking form */
.pt-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 2rem;
}

.pt-selected-info {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.pt-form-row {
  margin-bottom: 1.2rem;
}

.pt-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--fg);
}

.pt-hint {
  color: var(--fg-muted);
  font-weight: 400;
}

.pt-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.15s;
}

.pt-input:focus {
  outline: none;
  border-color: var(--accent);
}

.pt-textarea {
  resize: vertical;
  min-height: 80px;
}

.pt-form-err {
  color: #f87171;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding: 0.6rem 0.9rem;
  background: rgba(248,113,113,0.1);
  border-radius: 6px;
}

.pt-form-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}

.pt-submit {
  flex: 1;
  min-width: 200px;
}

.pt-back {
  font-size: 0.88rem;
  white-space: nowrap;
}

/* Success */
.pt-success {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
}

.pt-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pt-success h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.pt-success p {
  color: var(--fg-muted);
  max-width: 420px;
  margin: 0 auto 0.5rem;
}

.pt-success-sub {
  font-size: 0.88rem \!important;
  color: var(--fg-muted) \!important;
}

/* Demo CTA secondary button */
.demo-probetermin-btn {
  margin-top: 0.75rem;
}

/* ===== BUTTONS (shared) ===== */
.btn-ghost {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, border-color 0.15s;
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-ghost:hover {
  background: rgba(245,166,35,0.08);
  border-color: var(--accent);
}

/* Probetermin responsive */
@media (max-width: 768px) {
  .probetermin-section { padding: 4rem 1.5rem; }
  .pt-form-actions { flex-direction: column; align-items: stretch; }
  .pt-submit { min-width: unset; }
}

/* ===== HERO CTA GROUP ===== */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-cta-main {
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  white-space: nowrap;
}

.hero-cta-guarantee {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 180px;
}

/* ===== PILOT CTA SECTION ===== */
.pilot-cta {
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(108,99,255,0.04) 0%, transparent 60%);
}

.pilot-cta-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pilot-cta-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.pilot-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 0.5rem;
}

.pilot-cta-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.pilot-cta-cards {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.pilot-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}

.pilot-card-main {
  border-color: rgba(108,99,255,0.4);
  box-shadow: 0 0 0 1px rgba(108,99,255,0.15), 0 8px 32px rgba(108,99,255,0.08);
}

.pilot-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pilot-card-price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #8b84ff;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pilot-card-main .pilot-card-price { color: #8b84ff; }

.pilot-price-unit {
  font-size: 1.6rem;
  font-weight: 700;
}

.pilot-card-period {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 1.75rem;
}

.pilot-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pilot-card-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.pilot-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b84ff;
  font-size: 0.8rem;
  font-weight: 700;
}

.pilot-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  cursor: pointer;
}

.pilot-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* Override btn-primary and btn-secondary colors for pilot context */
.pilot-card-main .pilot-cta-btn.btn-primary {
  background: #6c63ff;
  color: #fff;
}

.pilot-card-main .pilot-cta-btn.btn-primary:hover {
  background: #5b52ee;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.15);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
}

.pilot-card-note {
  font-size: 0.73rem;
  color: var(--fg-muted);
  margin-top: 0.9rem;
  text-align: center;
  line-height: 1.5;
}

.pilot-cta-trust {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 0;
}

.pilot-cta-nutzen {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.pilot-nutzen-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--fg);
}

.pilot-nutzen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
}

.pilot-nutzen-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pilot-nutzen-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(108,99,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.pilot-nutzen-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pilot-nutzen-text strong {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}

.pilot-nutzen-text span {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.pilot-card-badge {
  display: inline-block;
  background: rgba(108,99,255,0.12);
  color: #8b84ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* Danke upsell block */
.danke-upsell {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.danke-upsell h3 {
  font-size: 1.1rem;
  margin: 0;
}

.danke-upsell p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  max-width: 380px;
}

.danke-upsell-btn {
  padding: 0.8rem 1.75rem;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .pilot-cta { padding: 4rem 1.5rem; }
  .pilot-cta-cards { grid-template-columns: 1fr; }
  .pilot-nutzen-grid { grid-template-columns: 1fr; }
  .pilot-cta-trust { gap: 1.5rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-guarantee { max-width: none; }
}

/* ===== ROI CALCULATOR ===== */
.roi-calc {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.roi-calc-inner { max-width: 1100px; margin: 0 auto; }

.roi-calc-header { max-width: 680px; margin-bottom: 3rem; }
.roi-calc-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-top: 0.5rem;
  line-height: 1.25;
}
.roi-calc-sub { color: var(--fg-muted); font-size: 1rem; margin-top: 1rem; line-height: 1.7; }

/* Body: sliders on left, result on right */
.roi-calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ---- Sliders ---- */
.roi-sliders { display: flex; flex-direction: column; gap: 2rem; }

.roi-slider-group { display: flex; flex-direction: column; gap: 0.5rem; }

.roi-slider-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.roi-slider-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

.roi-slider-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 4.5rem;
  text-align: right;
}

/* Custom range slider */
.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none;
  cursor: pointer;
  /* Filled portion uses accent; dynamic gradient set via JS */
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--bg-alt);
  box-shadow: 0 0 0 1px var(--accent);
  transition: transform 0.1s;
}
.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.roi-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--bg-alt);
  transition: transform 0.1s;
}
.roi-slider::-moz-range-thumb:hover { transform: scale(1.15); }

/* Track filled color */
.roi-slider::-webkit-slider-runnable-track { border-radius: 3px; }

.roi-slider-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-top: 0.15rem;
}

/* ---- Result panel ---- */
.roi-result-panel {
  background: var(--card-bg);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 16px;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.roi-result-loss,
.roi-result-gain {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.roi-result-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  font-weight: 600;
}

.roi-result-label-green { color: #4ade80; }

.roi-result-amount {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #f87171; /* red — money you're losing */
  line-height: 1.1;
  transition: color 0.2s;
}

.roi-result-amount-green { color: #4ade80; } /* green — money TaskShift saves */

.roi-result-period {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.roi-result-divider {
  height: 1px;
  background: var(--border);
}

/* CTA buttons inside result panel */
.roi-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.roi-cta-btn {
  text-align: center;
  display: block;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
}

/* Secondary button style */
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.3); }

.roi-assumptions {
  font-size: 0.73rem;
  color: var(--fg-muted);
  opacity: 0.7;
  line-height: 1.5;
  text-align: center;
}

/* Number flash animation */
@keyframes roi-flash {
  0%   { opacity: 1; }
  25%  { opacity: 0.4; }
  100% { opacity: 1; }
}
.roi-num-flash { animation: roi-flash 0.3s ease-out; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .roi-calc { padding: 4rem 1.5rem; }
  .roi-calc-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================
   BLOG
   ============================ */

/* Blog hero */
.blog-hero {
  padding: 4rem 3rem 3rem;
  border-bottom: 1px solid var(--border);
}
.blog-hero-inner { max-width: 860px; margin: 0 auto; }
.blog-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}
.blog-hero-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
}

/* Blog grid */
.blog-grid-section {
  padding: 4rem 3rem;
}
.blog-grid-inner { max-width: 1100px; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.blog-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-2px);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img svg { display: block; width: 100%; height: 100%; }

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.blog-card-section {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  flex: 1;
}
.blog-card-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
}
.blog-card-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.5rem;
}

/* Lead magnet CTA */
.blog-cta-section {
  padding: 4rem 3rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.blog-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.blog-cta-icon { font-size: 2.5rem; }
.blog-cta-title { font-size: clamp(1.4rem, 3vw, 2rem); }
.blog-cta-desc { color: var(--fg-muted); font-size: 1rem; line-height: 1.7; max-width: 520px; }
.blog-cta-note { font-size: 0.75rem; color: var(--fg-muted); }

/* Blog post */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.blog-post-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.blog-post-header-inner { display: flex; flex-direction: column; gap: 0.75rem; }
.blog-breadcrumb { font-size: 0.85rem; color: var(--fg-muted); text-decoration: none; }
.blog-breadcrumb:hover { color: var(--accent); }
.blog-post-section {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-post-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
  flex-wrap: wrap;
}
.meta-sep { color: var(--border); }

.blog-post-body { font-size: 1rem; line-height: 1.75; }
.blog-post-lead { font-size: 1.1rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 2rem; }

.blog-post-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--fg);
}
.blog-post-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--fg);
}
.blog-post-body p { color: var(--fg-muted); margin-bottom: 1rem; }
.blog-post-body ul,
.blog-post-body ol { margin: 1rem 0 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-post-body li { color: var(--fg-muted); }
.blog-post-body strong { color: var(--fg); }

/* Dialog box */
.blog-dialog {
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.dialog-msg { display: flex; gap: 0.75rem; align-items: flex-start; }
.dialog-label { font-size: 0.72rem; font-weight: 700; width: 32px; flex-shrink: 0; padding-top: 0.1rem; }
.dialog-in .dialog-label { color: #25d366; }
.dialog-out .dialog-label { color: var(--accent); }
.dialog-msg p { font-size: 0.88rem; line-height: 1.5; color: var(--fg-muted); margin: 0; }
.dialog-in { background: rgba(37,211,102,0.05); border-radius: 8px; padding: 0.6rem 0.75rem; }
.dialog-out { background: rgba(245,166,35,0.05); border-radius: 8px; padding: 0.6rem 0.75rem; }

/* Table */
.blog-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.blog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.blog-table th {
  text-align: left;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.blog-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
  vertical-align: top;
}
.blog-table tr:last-child td { border-bottom: none; }
.blog-table strong { color: var(--fg); }
.blog-table ul { margin: 0; padding-left: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.blog-table ul li { font-size: 0.82rem; }

/* Price highlight row */
.price-highlight td { background: rgba(245,166,35,0.04); }
.price-badge {
  font-size: 0.65rem;
  background: var(--accent);
  color: var(--fg-dark);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 0.4rem;
}
.price-cell {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

/* ROI calc block */
.blog-calc {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  margin: 1.5rem 0;
  overflow: hidden;
}
.blog-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  gap: 1rem;
}
.blog-calc-row:last-child { border-bottom: none; }
.calc-label { color: var(--fg-muted); flex: 1; }
.calc-val { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--fg); white-space: nowrap; }
.calc-total { background: rgba(255,255,255,0.02); }
.calc-val.accent { color: var(--accent); }

/* CTA block (mid + end article) */
.blog-cta-block {
  background: linear-gradient(135deg, rgba(245,166,35,0.06) 0%, transparent 70%);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2.5rem 0;
}
.blog-cta-block-end { border-color: rgba(108,99,255,0.25); background: linear-gradient(135deg, rgba(108,99,255,0.06) 0%, transparent 70%); }
.blog-cta-block-inner { display: flex; flex-direction: column; gap: 0.75rem; }
.blog-cta-block h3 { font-size: 1.3rem; font-weight: 700; }
.blog-cta-block p { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.65; max-width: 540px; }
.blog-cta-block .btn-primary { align-self: flex-start; }

/* FAQ */
.blog-faq { display: flex; flex-direction: column; gap: 0; margin: 1.5rem 0; }
.blog-faq .faq-item {
  border-bottom: 1px solid var(--border);
}
.blog-faq .faq-item:first-child { border-top: 1px solid var(--border); }
.blog-faq .faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--fg);
}
.blog-faq .faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}
.blog-faq details[open] .faq-q::after { transform: rotate(45deg); }
.blog-faq .faq-a { padding-bottom: 1.25rem; }
.blog-faq .faq-a p { font-size: 0.93rem; color: var(--fg-muted); line-height: 1.7; }

/* Related posts */
.blog-related {
  border-top: 1px solid var(--border);
  padding: 4rem 3rem;
  background: var(--bg-alt);
}
.blog-related-inner { max-width: 1100px; margin: 0 auto; }
.blog-related-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.blog-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.blog-card-sm { border-color: rgba(245,166,35,0.15); }

/* Nav links area */
.nav-links { display: flex; align-items: center; gap: 1.25rem; }
.nav-link { font-size: 0.88rem; color: var(--fg-muted); text-decoration: none; }
.nav-link:hover { color: var(--fg); }

/* Responsive */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 3rem 1.5rem 2.5rem; }
  .blog-grid-section { padding: 3rem 1.5rem; }
  .blog-cta-section { padding: 3rem 1.5rem; }
  .blog-related { padding: 3rem 1.5rem; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-post { padding: 0 1.5rem 3rem; }
  .blog-post-header { padding: 2rem 0 1.5rem; }
  .blog-cta-block { padding: 2rem 1.5rem; }
  .nav-links { gap: 0.75rem; }
  .nav-link { display: none; }
}

@media (max-width: 480px) {
  .blog-calc-row { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .calc-val { font-size: 1rem; }
}

/* ===== LEAD MAGNET SIDEBAR ===== */
.lm-sidebar {
  position: fixed;
  right: -340px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px 0 0 16px;
  padding: 28px 24px 24px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  z-index: 900;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lm-sidebar--visible {
  right: 0;
}

.lm-sidebar__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s;
}
.lm-sidebar__close:hover { color: var(--fg); }

.lm-sidebar__icon { display: flex; }

.lm-sidebar__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--fg-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
}

.lm-sidebar__headline {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg);
  margin: 0;
}

.lm-sidebar__sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.4;
}
.lm-sidebar__sub strong { color: var(--accent); }

#lm-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lm-sidebar__input {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lm-sidebar__input::placeholder { color: var(--fg-muted); }
.lm-sidebar__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.lm-sidebar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--fg-dark);
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}
.lm-sidebar__btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.lm-sidebar__btn:active { transform: translateY(0); }

.lm-sidebar__success {
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px;
  background: rgba(37, 211, 102, 0.08);
  border-radius: 10px;
}

.lm-sidebar__fine-print {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-align: center;
  margin: 0;
}

@media (max-width: 640px) {
  .lm-sidebar {
    right: -280px;
    width: 280px;
    padding: 20px 18px 18px;
    gap: 10px;
  }
}
