/* Mila – Landingpage, Impressum, Datenschutz. Farben und Schriften wie auf den Postkarten. */
@font-face { font-family: "Bricolage Grotesque"; font-weight: 800; font-display: swap; src: url(/fonts/bricolage-grotesque-latin-800-normal.woff2) format("woff2"); }
@font-face { font-family: "Figtree"; font-weight: 400; font-display: swap; src: url(/fonts/figtree-latin-400-normal.woff2) format("woff2"); }
@font-face { font-family: "Figtree"; font-weight: 400; font-style: italic; font-display: swap; src: url(/fonts/figtree-latin-400-italic.woff2) format("woff2"); }
@font-face { font-family: "Figtree"; font-weight: 500; font-display: swap; src: url(/fonts/figtree-latin-500-normal.woff2) format("woff2"); }
@font-face { font-family: "Figtree"; font-weight: 700; font-display: swap; src: url(/fonts/figtree-latin-700-normal.woff2) format("woff2"); }

:root {
  --teal: #15302f; --teal-2: #1f4d4a; --blush: #f7ddd6; --blush-2: #fbeae5; --sun: #f3b33d; --coral: #e2614b;
  --paper: #fffaf8; --ink: #15302f; --muted: #52615f; --line: #e8dcd7;
  --display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 62px; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.55 "Figtree", "Segoe UI", Arial, sans-serif; -webkit-text-size-adjust: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; }
h1, h2 { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; text-wrap: balance; }
h2 { font-size: clamp(30px, 5vw, 44px); margin-bottom: 18px; }
h3 { font-size: 18px; line-height: 1.3; }
p { margin: 0 0 14px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 2px solid transparent; border-radius: 999px; padding: 13px 24px; font: 700 17px/1.2 "Figtree", sans-serif; text-decoration: none; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(21, 48, 47, .18); }
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }
.btn:disabled { opacity: .6; cursor: default; transform: none; box-shadow: none; }
.btn-sun { background: var(--sun); color: var(--teal); }
.btn-teal { background: var(--teal); color: var(--paper); }
.btn-ghost { border-color: rgba(247, 221, 214, .5); color: var(--blush); }
.btn-ghost:hover { background: rgba(247, 221, 214, .1); }
.btn-small { padding: 8px 16px; font-size: 15px; background: var(--sun); color: var(--teal); }
.btn-block { width: 100%; }

/* Kopfzeile */
.top { position: sticky; top: 0; z-index: 10; background: var(--teal); border-bottom: 1px solid rgba(247, 221, 214, .12); }
.top-inner { display: flex; justify-content: space-between; align-items: center; height: 62px; }
.logo { font: 800 26px var(--display); color: var(--blush); text-decoration: none; letter-spacing: .01em; }

/* Hero */
.hero { background: var(--teal); color: var(--blush); padding: 56px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--sun); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 14px; margin-bottom: 14px; }
.hero h1 { font-size: clamp(40px, 7vw, 68px); color: var(--blush); margin-bottom: 22px; }
.hero-lead { font-size: 20px; max-width: 34em; color: #f3e6e1; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.offer-pill { display: inline-block; background: rgba(243, 179, 61, .14); color: var(--sun); border: 1px solid rgba(243, 179, 61, .4); border-radius: 999px; padding: 6px 14px; font-weight: 700; font-size: 15px; margin: 0; }

.call { margin: 0; background: var(--paper); color: var(--ink); border-radius: 26px; padding: 20px; box-shadow: 0 30px 60px rgba(0, 0, 0, .35); transform: rotate(1.5deg); max-width: 440px; justify-self: end; }
.call-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.call-head strong { display: block; font-size: 16px; }
.call-head small { color: var(--muted); font-size: 13px; }
.call-dot { width: 12px; height: 12px; border-radius: 50%; background: #3d9a6a; box-shadow: 0 0 0 5px rgba(61, 154, 106, .18); animation: pulse 1.6s infinite; flex: none; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(61, 154, 106, 0); } }
.chat { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 15px; line-height: 1.4; }
.chat li { padding: 9px 13px; border-radius: 16px; max-width: 88%; }
.chat .ai { background: var(--blush); border-bottom-left-radius: 4px; }
.chat .me { background: var(--teal); color: var(--paper); justify-self: end; border-bottom-right-radius: 4px; }
.call-booked { margin-top: 14px; display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--teal-2); background: #e6f2eb; border-radius: 12px; padding: 9px 12px; }
.call-booked span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #3d9a6a; color: #fff; font-size: 13px; }

/* Band */
.band { background: var(--coral); color: #fff; padding: 52px 0; }
.big-quote { font: 800 clamp(28px, 4.4vw, 42px)/1.12 var(--display); letter-spacing: -0.02em; max-width: 22em; margin-bottom: 16px; text-wrap: balance; }
.band-sub { font-size: 19px; max-width: 42em; margin: 0; color: #fff4f1; }

/* Abschnitte */
.section { padding: 80px 0; }
.section-blush { background: var(--blush-2); }
.section-sun { background: var(--sun); }
.section-teal { background: var(--teal); color: var(--blush); }
.section-teal h2 { color: var(--blush); }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.features article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.features h3 { margin-bottom: 8px; }
.features p { color: var(--muted); margin: 0; font-size: 16px; }
.ico { font-size: 26px; width: 50px; height: 50px; border-radius: 14px; background: var(--blush); display: grid; place-items: center; margin-bottom: 14px; }

.steps { list-style: none; margin: 12px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.steps li { counter-increment: step; background: var(--paper); border-radius: var(--radius); padding: 26px 24px; position: relative; }
.steps li::before { content: counter(step); font: 800 22px var(--display); color: var(--paper); background: var(--teal); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px; }
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--muted); margin: 0; font-size: 16px; }

.try { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.try p { font-size: 19px; max-width: 34em; }
.try-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.try-list li { background: rgba(255, 250, 248, .55); border-radius: 999px; padding: 6px 14px; font-style: italic; font-size: 15px; }
.demo-number { font: 800 clamp(30px, 5vw, 46px) var(--display); letter-spacing: -0.01em; color: var(--teal); background: var(--paper); border-radius: 20px; padding: 18px 28px; text-decoration: none; white-space: nowrap; box-shadow: 0 10px 30px rgba(21, 48, 47, .15); }

.price-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
.price-grid > div > p { font-size: 19px; color: var(--muted); max-width: 30em; }
.price-card { background: #fff; border: 2px solid var(--teal); border-radius: 24px; padding: 30px; box-shadow: 10px 10px 0 var(--blush); }
.price-badge { display: inline-block; background: var(--coral); color: #fff; font-weight: 700; font-size: 14px; border-radius: 999px; padding: 5px 12px; margin-bottom: 16px; }
.price { font-size: 18px; color: var(--muted); }
.price span { font: 800 58px/1 var(--display); color: var(--teal); letter-spacing: -0.02em; margin-right: 4px; }
.price-note { font-size: 13px; color: var(--muted); margin: 8px 0 18px; }
.checks { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 9px; }
.checks li { padding-left: 30px; position: relative; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 50%; background: var(--blush); color: var(--teal); font-weight: 700; font-size: 12px; display: grid; place-items: center; }

.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 12px; }
.trust h3 { color: var(--sun); margin-bottom: 8px; }
.trust p { margin: 0; color: #e9d9d3; font-size: 16px; }

details { border-bottom: 1px solid var(--line); }
details:first-of-type { border-top: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; font-weight: 700; font-size: 18px; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: 12px; font: 800 26px var(--display); color: var(--coral); transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); padding-bottom: 8px; max-width: 42em; }

/* Formular */
.form-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.form-grid > div > p { font-size: 19px; max-width: 28em; }
.offer-inline { color: var(--coral); font-weight: 700; }
.contact-alt { font-size: 16px !important; color: var(--muted); }
.lead-form { background: var(--paper); border-radius: 24px; padding: 28px; display: grid; gap: 14px; box-shadow: 0 16px 40px rgba(21, 48, 47, .1); }
.lead-form label { display: grid; gap: 6px; font-weight: 700; font-size: 15px; }
.opt { font-weight: 400; color: var(--muted); }
.lead-form input, .lead-form textarea { font: 400 17px "Figtree", sans-serif; color: var(--ink); background: #fff; border: 1.5px solid #d9ccc6; border-radius: 12px; padding: 12px 14px; width: 100%; }
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px rgba(21, 48, 47, .12); }
.lead-form textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 13px; color: var(--muted); margin: 0; }
.form-msg { margin: 0; font-weight: 700; min-height: 1.4em; }
.form-msg.ok { color: #2f7d55; }
.form-msg.err { color: #b3261e; }

/* Fußzeile */
.foot { background: var(--teal); color: #d8c9c4; padding: 28px 0; font-size: 15px; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot strong { color: var(--blush); }
.foot nav { display: flex; gap: 20px; }
.foot a { color: var(--blush); }

/* Rechtstexte */
.legal { padding: 56px 0 80px; }
.legal h1 { font-size: clamp(34px, 5vw, 48px); margin-bottom: 28px; }
.legal h2 { font-size: 24px; margin: 36px 0 10px; }
.legal h3 { font-size: 18px; margin: 22px 0 6px; }
.legal p, .legal li { color: #2b3e3d; }
.legal ul { padding-left: 22px; }

/* Mobil */
@media (max-width: 900px) {
  .hero { padding: 40px 0 56px; }
  .hero-grid, .price-grid, .form-grid, .try { grid-template-columns: 1fr; gap: 36px; }
  .call { justify-self: stretch; max-width: none; transform: none; }
  .features, .steps, .trust { grid-template-columns: 1fr 1fr; }
  .demo-number { justify-self: start; }
  .section { padding: 60px 0; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .hero-lead { font-size: 18px; }
  .hero-cta .btn { width: 100%; }
  .features, .steps, .trust { grid-template-columns: 1fr; }
  .demo-number { white-space: normal; padding: 14px 20px; }
  .price-card, .lead-form { padding: 22px; }
  .price-card { box-shadow: 6px 6px 0 var(--blush); }
  .foot-inner { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .call-dot { animation: none; }
  .btn { transition: none; }
}

/* SEO-Ergänzungen: Keyword-Zeile im H1, Abschnitt digitales Terminbuch */
.hero h1 .eyebrow { display: block; font: 700 14px/1.4 "Figtree", sans-serif; letter-spacing: .08em; text-transform: uppercase; color: var(--sun); margin-bottom: 14px; }
.section-book { background: var(--paper); border-top: 1px solid var(--line); }
.book { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.book p { font-size: 18px; color: var(--muted); max-width: 36em; }
.book-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.book-list li { background: var(--blush-2); border-radius: 14px; padding: 14px 18px; }
@media (max-width: 900px) { .book { grid-template-columns: 1fr; gap: 24px; } }
