/* ===== Pelican – getpelican.app ===== */
/* build: 2026-06-12 */
:root {
  --paper: #FAF8F5;
  --paper-2: #F2EEE7;
  --ink: #2A4A5C;
  --ink-soft: #4d6877;
  --ink-mute: #7d8f99;
  --flame: #E8743C;
  --flame-dark: #cf5f2b;
  --line: #e3ddd2;
  --white: #ffffff;
  --radius: 16px;
  --maxw: 1120px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 18px;
  /* subtle paper grain */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }

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

/* ===== Header ===== */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(250,248,245,0.82);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.logo svg { width: 30px; height: 30px; }
.logo img { border-radius: 22%; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 16px; }
.nav-links a.muted { color: var(--ink-soft); transition: color .2s; }
.nav-links a.muted:hover { color: var(--ink); }
.nav-links .btn { padding: 10px 20px; }

/* Hamburger-Navigation (Basis, nur ≤900px sichtbar) */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-right: -8px; color: var(--ink); }
.nav-toggle-bars { display: block; width: 24px; height: 16px; position: relative; }
.nav-toggle-bars span { position: absolute; left: 0; right: 0; height: 2.5px; background: currentColor; border-radius: 2px; transition: transform .25s ease, opacity .2s ease, top .25s ease; }
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6.75px; }
.nav-toggle-bars span:nth-child(3) { top: 13.5px; }
#site-header.open .nav-toggle-bars span:nth-child(1) { top: 6.75px; transform: rotate(45deg); }
#site-header.open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
#site-header.open .nav-toggle-bars span:nth-child(3) { top: 6.75px; transform: rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s ease, background .2s, box-shadow .2s;
}
.btn-primary { background: var(--flame); color: #fff; box-shadow: 0 6px 20px rgba(232,116,60,0.28); }
.btn-primary:hover { background: var(--flame-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero { padding: 92px 0 80px; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--flame-dark); background: rgba(232,116,60,0.1);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
}
.hero h1 { font-size: clamp(40px, 6.5vw, 76px); max-width: 14ch; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--flame); }
.hero p.lead { font-size: clamp(18px, 2.4vw, 23px); color: var(--ink-soft); max-width: 52ch; margin-bottom: 38px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 15px; color: var(--ink-mute); }

/* hero visual: a notepad turning into a clean list */
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.device {
  background: var(--white); border: 1px solid var(--line); border-radius: 26px;
  box-shadow: 0 30px 60px -25px rgba(42,74,92,0.35); padding: 14px; max-width: 340px; margin: 0 auto;
}
.device-screen { background: var(--paper); border-radius: 16px; overflow: hidden; }
.device-top { background: var(--ink); color: #fff; padding: 16px 18px; }
.device-top .t1 { font-family: var(--serif); font-size: 18px; }
.device-top .t2 { font-size: 12px; opacity: .7; margin-top: 2px; }
.device-cta { margin: 14px; background: var(--flame); color: #fff; text-align: center; padding: 12px; border-radius: 10px; font-weight: 600; font-size: 14px; }
.device-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 14px; }
.device-row:last-child { border-bottom: none; }
.device-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--flame); display: inline-block; margin-right: 10px; }
.device-row .qty { color: var(--ink-mute); font-size: 12px; }

/* ===== Sections ===== */
section { padding: 80px 0; }
.section-tag { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--flame-dark); margin-bottom: 14px; }
.section-title { font-size: clamp(30px, 4.5vw, 46px); max-width: 18ch; margin-bottom: 18px; }
.section-intro { font-size: 19px; color: var(--ink-soft); max-width: 56ch; }

.divider { height: 1px; background: var(--line); border: none; }

/* problem */
.problem { background: var(--ink); color: var(--paper); border-radius: 0; }
.problem h2, .problem .section-title { color: var(--paper); }
.problem .section-tag { color: #f0a886; }
.problem .section-intro { color: rgba(250,248,245,0.78); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 54px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 20px; } }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; }
.step .num { font-family: var(--serif); font-size: 40px; color: var(--flame); line-height: 1; margin-bottom: 16px; }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 16px; }

/* features */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; margin-top: 48px; }
@media (max-width: 720px) { .features { grid-template-columns: 1fr; } }
.feature { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.feature .ic { flex: none; width: 40px; height: 40px; border-radius: 10px; background: rgba(232,116,60,0.12); color: var(--flame-dark); display: flex; align-items: center; justify-content: center; }
.feature h3 { font-size: 19px; font-family: var(--sans); font-weight: 700; margin-bottom: 4px; }
.feature p { font-size: 15px; color: var(--ink-soft); }

/* pricing */
.pricing { background: var(--paper-2); }
.toggle { display: inline-flex; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin: 28px 0 44px; }
.toggle button { font-family: var(--sans); font-weight: 600; font-size: 15px; border: none; background: transparent; color: var(--ink-soft); padding: 9px 22px; border-radius: 999px; cursor: pointer; transition: all .2s; }
.toggle button.active { background: var(--ink); color: #fff; }
.toggle-wrap { position: relative; display: inline-block; }
.toggle-hint { font-size: 13px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--flame-dark); margin-bottom: 10px; }
.pricing .toggle-wrap { margin-top: 36px; }
.pricing .toggle { margin-top: 0; margin-bottom: 44px; }

/* Texte volle Container-Breite nutzen, linksbündig */
.section-title { max-width: none; }
.section-intro { max-width: none; }

/* Toggle zentriert halten */
.pricing .toggle-wrap { display: block; text-align: center; margin: 36px auto 0; }
.pricing .toggle { margin-left: auto; margin-right: auto; }
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px) { .plans { grid-template-columns: 1fr; } }
.plan { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 36px 32px; position: relative; }
.plan.featured { border-color: var(--flame); box-shadow: 0 20px 50px -28px rgba(232,116,60,0.5); }
.plan .badge { position: absolute; top: -13px; left: 32px; background: var(--flame); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 5px 13px; border-radius: 999px; }
.plan h3 { font-size: 26px; margin-bottom: 6px; }
.plan .who { color: var(--ink-mute); font-size: 15px; margin-bottom: 22px; }
.price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.plan .price { display: inline-flex; align-items: baseline; gap: 3px; font-family: var(--serif); color: var(--ink); line-height: 1; }
.plan .price .amount { font-size: 52px; font-weight: 500; }
.plan .price .cur { font-family: var(--serif); font-size: 26px; color: var(--ink-soft); }
.plan .price .per { font-family: var(--sans); font-size: 16px; color: var(--ink-mute); font-weight: 500; margin-left: 2px; }
.plan .price-old { font-family: var(--serif); font-size: 24px; color: var(--ink-mute); text-decoration: line-through; text-decoration-color: var(--flame); text-decoration-thickness: 2px; }
.plan .per-year { font-size: 14px; color: var(--ink-mute); margin-top: 10px; min-height: 22px; }
.plan .per-year b { color: var(--ink); font-weight: 700; }
.plan .per-year .save { color: #2f6b46; font-weight: 700; background: rgba(91,154,120,.15); padding: 2px 9px; border-radius: 999px; white-space: nowrap; }
.plan .per-year .save-year { color: var(--flame-dark); font-weight: 700; font-size: 15px; white-space: nowrap; }
/* handschriftliche "2 Monate+ gratis"-Notiz mit Pfeil */
.toggle-center { position: relative; display: inline-flex; align-items: center; }
.save-note { position: absolute; left: calc(100% + 10px); top: 50%; transform: translateY(-120%); display: flex; flex-direction: row; align-items: center; gap: 4px; color: var(--flame); pointer-events: none; }
.save-text { font-family: "Caveat", var(--serif); font-size: 25px; font-weight: 700; line-height: 1; transform: rotate(-3deg); white-space: nowrap; }
.save-arrow { width: 52px; height: 23px; flex: none; }
@media (max-width: 662px) {
  .toggle-center { flex-direction: column; align-items: center; }
  .save-note { position: static; transform: none; order: -1; justify-content: center; margin: 0 0 12px; }
  .save-arrow { display: none; }
  .save-text { font-size: 21px; transform: rotate(-2deg); text-align: center; }
}
.plan ul { list-style: none; margin: 26px 0 30px; }
.plan ul li { padding: 9px 0 9px 30px; position: relative; font-size: 16px; color: var(--ink-soft); }
.plan ul li::before { content: ""; position: absolute; left: 0; top: 14px; width: 16px; height: 9px; border-left: 2px solid var(--flame); border-bottom: 2px solid var(--flame); transform: rotate(-45deg); }

/* faq */
.faq-list { margin-top: 44px; }
details { border-bottom: 1px solid var(--line); padding: 6px 0; }
details summary { font-family: var(--serif); font-size: 21px; color: var(--ink); padding: 22px 40px 22px 0; cursor: pointer; list-style: none; position: relative; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-family: var(--sans); font-size: 28px; color: var(--flame); font-weight: 300; transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details .answer { padding: 0 40px 24px 0; color: var(--ink-soft); font-size: 17px; }
details .answer p { margin-bottom: 12px; }

/* CTA band */
.cta-band { background: var(--ink); color: var(--paper); text-align: center; border-radius: 28px; padding: 72px 32px; margin: 40px 0; }
.cta-band h2 { color: var(--paper); font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta-band p { color: rgba(250,248,245,0.8); max-width: 48ch; margin: 0 auto 32px; font-size: 19px; }

/* footer */
footer { padding: 60px 0 50px; border-top: 1px solid var(--line); color: var(--ink-mute); font-size: 15px; }
.foot-top { margin-bottom: 30px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px 30px; }
.foot-copy { text-align: right; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--ink); }

/* dashboard */
.dash-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 40px; max-width: 540px; margin: 60px auto; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.field input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px; font-family: var(--sans); font-size: 16px; background: var(--paper); }
.field input:focus { outline: none; border-color: var(--flame); }
.link-box { display: flex; gap: 8px; margin-top: 10px; }
.link-box input { flex: 1; font-size: 14px; }
.msg { padding: 12px 16px; border-radius: 10px; font-size: 15px; margin-bottom: 16px; }
.msg.err { background: #fbe9e4; color: #b23c1a; }
.msg.ok { background: #e6f0ea; color: #2f6b46; }
.plan-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0; }
.plan-pick button { padding: 14px; border: 1.5px solid var(--line); background: var(--paper); border-radius: 10px; cursor: pointer; font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--ink); }
.plan-pick button.sel { border-color: var(--flame); background: rgba(232,116,60,0.08); }

/* legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 70px 0; }
.legal h1 { font-size: 40px; margin-bottom: 30px; }
.legal h2 { font-size: 24px; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 16px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--flame-dark); text-decoration: underline; }
.placeholder { background: #fff7d6; border-left: 3px solid #e0b400; padding: 12px 16px; border-radius: 6px; color: #6b5600; font-size: 14px; }

/* reveal animation – scroll-getriggert via IntersectionObserver (.in) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; } .reveal.d2 { transition-delay: .14s; } .reveal.d3 { transition-delay: .22s; } .reveal.d4 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } }

/* =====================================================================
   REDESIGN 2026 – appartige Landingpage
   ===================================================================== */

/* shared category dots */
.cat-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: none; background: var(--flame); }
.d-veg { background: #5b9a78; } .d-meat { background: #c0584b; } .d-oil { background: #d9a441; } .d-dry { background: #9b7bd4; } .d-fish { background: #4a90b8; }

/* ---- Hero-Phone: realistisches App-UI ---- */
.ph-head { background: var(--ink); color: #fff; padding: 48px 15px 13px; }
.ph-titlerow { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ph-title { font-family: var(--serif); font-size: 21px; }
.ph-actions { display: flex; align-items: center; gap: 11px; }
.ph-order { display: inline-flex; align-items: center; gap: 5px; background: var(--flame); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: 999px; }
.ph-order svg { width: 13px; height: 13px; }
.ph-burger { display: inline-flex; flex-direction: column; gap: 3px; }
.ph-burger i { width: 18px; height: 2px; background: #fff; border-radius: 2px; display: block; }
.ph-sub { font-size: 11px; opacity: .72; margin-top: 9px; }
.ph-body { flex: 1; display: flex; flex-direction: column; min-height: 0; background: var(--paper); }
.ph-search { display: flex; align-items: center; gap: 8px; margin: 12px; padding: 10px 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-mute); font-size: 13px; }
.ph-search svg { width: 14px; height: 14px; flex: none; }
.ph-chips { display: flex; gap: 7px; padding: 0 12px 11px; overflow: hidden; }
.ph-chip { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 11px; font-size: 12px; font-weight: 600; color: var(--ink-soft); flex: none; }
.ph-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.ph-chip b { font-weight: 700; opacity: .55; }
.ph-chip.active b { opacity: .85; }
.ph-chip .cat-dot { width: 8px; height: 8px; }
.ph-list { flex: 1; overflow: hidden; background: #fff; margin: 0 12px; border: 1px solid var(--line); border-radius: 14px; }
.ph-row { display: flex; align-items: center; gap: 11px; padding: 12px 13px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink); }
.ph-row:last-child { border-bottom: none; }
.ph-row b { flex: 1; font-weight: 600; }
.ph-qty { background: var(--paper-2); color: var(--ink-soft); font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 8px; white-space: nowrap; }
.ph-foot { display: flex; gap: 10px; padding: 12px; background: var(--paper); border-top: 1px solid var(--line); }
.ph-manual, .ph-speak { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 13px; border-radius: 14px; font-size: 14px; font-weight: 600; }
.ph-manual { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.ph-speak { background: var(--ink); color: #fff; }
.ph-manual svg, .ph-speak svg { width: 15px; height: 15px; }

/* ---- header polish + buttons ---- */
#site-header { transition: box-shadow .25s, background .25s; }
#site-header.scrolled { box-shadow: 0 6px 24px -16px rgba(42,74,92,.5); background: rgba(250,248,245,.92); }
.btn-sm { padding: 9px 16px; font-size: 15px; }
.btn-lg { padding: 16px 30px; font-size: 17px; }
.lang { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; letter-spacing: .03em; padding: 3px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; }
.lang span, .lang a { padding: 4px 9px; border-radius: 999px; color: var(--ink-mute); transition: color .2s, background .2s; }
.lang .active { background: var(--white); color: var(--ink); box-shadow: 0 1px 3px rgba(42,74,92,.12); }
.lang a:hover { color: var(--ink); background: rgba(255,255,255,.6); }
@media (max-width: 940px) { .lang { display: none; } }

/* ---- HERO ---- */
.hero { padding: 84px 0 70px; overflow: hidden; }
.hero-bg { position: absolute; inset: -10% -20% auto -20%; height: 620px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 78% 18%, rgba(232,116,60,.16), transparent 60%),
    radial-gradient(50% 60% at 12% 4%, rgba(42,74,92,.10), transparent 60%); }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--flame); }
.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 22px; }
.hero-points li { display: flex; align-items: center; gap: 7px; font-size: 15px; color: var(--ink-soft); font-weight: 500; }
.hero-points svg { width: 17px; height: 17px; color: var(--flame); flex: none; }

/* hero stage + floating cards */
.hero-stage { position: relative; display: flex; justify-content: center; }
.float-card { position: absolute; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 10px 14px; font-size: 14px; font-weight: 600; color: var(--ink); box-shadow: 0 16px 36px -20px rgba(42,74,92,.45); display: flex; align-items: center; gap: 8px; animation: floaty 5s ease-in-out infinite; z-index: 3; }
.fc-1 { top: 26%; left: -6%; } .fc-2 { bottom: 14%; right: -4%; animation-delay: 1.2s; }
.fc-flag { font-size: 17px; } .fc-check { color: #fff; background: #5b9a78; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 900px) { .float-card { display: none; } }

/* ---- phone frame ---- */
.phone { width: 300px; max-width: 82vw; aspect-ratio: 9 / 19; background: linear-gradient(160deg,#16323f,#0c1d25); border-radius: 42px; padding: 11px; box-shadow: 0 40px 80px -34px rgba(42,74,92,.65), inset 0 0 0 1.5px rgba(255,255,255,.06); position: relative; }
.phone-sm { width: 270px; }
.phone-island { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 86px; height: 24px; background: #07141a; border-radius: 999px; z-index: 5; }
.phone-screen { background: var(--paper); border-radius: 32px; height: 100%; overflow: hidden; display: flex; flex-direction: column; }
.phone-toast { position: absolute; top: 112px; left: 50%; width: 330px; max-width: 90vw; display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 12px 16px; box-shadow: 0 24px 50px -16px rgba(42,74,92,.5); z-index: 6; animation: toast-float 6s ease-in-out infinite; }
.phone-toast p { font-size: 13.5px; line-height: 1.4; color: var(--ink-mute); }
.phone-toast b { color: var(--ink); font-weight: 600; }
.toast-avatar { position: relative; flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--flame); color: #fff; font-size: 14px; font-weight: 700; display: grid; place-items: center; }
.toast-avatar::after { content: ""; position: absolute; right: -1px; bottom: -1px; width: 11px; height: 11px; border-radius: 50%; background: #5b9a78; border: 2px solid var(--white); }
@keyframes toast-float { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -8px); } }
.phone:has(.phone-toast) .app-list { padding-top: 84px; }
.app-head { background: var(--ink); color: #fff; padding: 30px 18px 16px; display: flex; align-items: flex-end; justify-content: space-between; }
.app-title { font-family: var(--serif); font-size: 19px; }
.app-sub { font-size: 12px; opacity: .72; margin-top: 2px; }
.app-live { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; background: rgba(255,255,255,.12); padding: 5px 10px; border-radius: 999px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #6ee7a0; box-shadow: 0 0 0 0 rgba(110,231,160,.7); animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(110,231,160,.6); } 100% { box-shadow: 0 0 0 8px rgba(110,231,160,0); } }
.app-list { flex: 1; overflow: hidden; }
.app-row { display: flex; align-items: center; gap: 11px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.app-row:last-child { border-bottom: none; }
.app-row.hl { background: rgba(232,116,60,.07); }
.app-item { flex: 1; display: flex; flex-direction: column; line-height: 1.25; }
.app-item b { font-size: 14px; font-weight: 600; }
.app-item i { font-style: normal; font-size: 11px; color: var(--ink-mute); }
.app-qty { font-size: 12px; color: var(--ink-mute); font-weight: 600; white-space: nowrap; }
.badge-new { font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--flame-dark); background: rgba(232,116,60,.14); padding: 3px 8px; border-radius: 999px; }
.app-mic { margin: 12px; background: var(--flame); color: #fff; border-radius: 14px; padding: 13px 16px; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; box-shadow: 0 10px 24px -10px rgba(232,116,60,.7); }
.app-mic-ic svg { width: 18px; height: 18px; display: block; }
.avatars { display: flex; }
.avatars span { width: 26px; height: 26px; border-radius: 50%; background: var(--c,#888); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; border: 2px solid var(--ink); margin-left: -8px; }
.avatars span.more { background: #46606e; }

/* ---- trust strip ---- */
.trust { margin-top: 64px; padding-top: 30px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.trust > span { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }
.trust-items { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-items div { display: flex; align-items: center; gap: 9px; font-family: var(--serif); font-size: 17px; color: var(--ink-soft); }
.trust-items svg { width: 22px; height: 22px; color: var(--flame-dark); }

/* ---- how it works (3 Schritte als luftiger Flow) ---- */
.how { position: relative; padding: 84px 0 96px; background: linear-gradient(180deg, #fdf2e7 0%, #f8e8d8 55%, var(--paper) 100%); overflow: hidden; }
.how::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(207,95,43,.16) 1.5px, transparent 1.5px); background-size: 26px 26px; -webkit-mask-image: radial-gradient(75% 85% at 50% 28%, #000, transparent 75%); mask-image: radial-gradient(75% 85% at 50% 28%, #000, transparent 75%); pointer-events: none; }
.how .wrap { position: relative; z-index: 1; }
.hiw-title { text-align: center; font-size: clamp(28px, 4vw, 42px); max-width: 24ch; margin: 0 auto; }
.hiw-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: start; margin-top: 56px; }
.hiw-step { text-align: center; }
.hiw-orb { position: relative; width: 108px; height: 108px; margin: 0 auto 20px; border-radius: 50%; border: 2px dashed rgba(232,116,60,.45); background: rgba(255,255,255,.55); display: grid; place-items: center; color: var(--flame-dark); }
.hiw-orb.lead { border: none; background: var(--white); box-shadow: 0 24px 48px -20px rgba(42,74,92,.35); }
.hiw-orb svg { width: 40px; height: 40px; }
.hiw-num { position: absolute; top: -3px; left: -3px; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 13px; font-weight: 700; display: grid; place-items: center; box-shadow: 0 4px 10px -4px rgba(42,74,92,.6); }
.hiw-step h3 { font-size: 22px; margin-bottom: 8px; }
.hiw-step p { font-size: 15.5px; color: var(--ink-soft); max-width: 30ch; margin: 0 auto; }
.hiw-link { margin-top: 42px; color: var(--flame); display: flex; justify-content: center; }
.hiw-link svg { width: 110px; height: 28px; }
@media (max-width: 820px) {
  .how { padding: 54px 0 64px; }
  .hiw-flow { grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .hiw-link { margin: 0; }
  .hiw-link svg { display: none; }
  .hiw-link::before { content: ""; height: 36px; border-left: 2px dashed rgba(232,116,60,.5); }
}

/* ---- problem section ---- */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 30px; }
.problem .section-intro { font-size: 20px; }
.notes { position: relative; height: 280px; }
.note { position: absolute; background: #fdf6df; color: #5c4a1a; font-family: var(--serif); font-size: 16px; padding: 16px 18px; border-radius: 4px; box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); max-width: 160px; }
.note::before { content: ""; position: absolute; top: -7px; left: 50%; width: 46px; height: 14px; transform: translateX(-50%) rotate(-3deg); background: rgba(255,255,255,.35); }
.n1 { top: 6%; left: 8%; transform: rotate(-6deg); background: #fdf6df; }
.n2 { top: 0; right: 10%; transform: rotate(5deg); background: #ffe9e0; color: #7a3a22; }
.n3 { top: 42%; left: 0; transform: rotate(3deg); background: #e7f3ec; color: #2f5d40; }
.n4 { bottom: 4%; left: 28%; transform: rotate(-4deg); background: #fff; color: #44525a; }
.n5 { bottom: 8%; right: 4%; transform: rotate(7deg); background: #fdf6df; }
.n6 { top: 16%; left: 41%; transform: rotate(-9deg); background: #ffe9e0; color: #7a3a22; font-size: 14px; padding: 10px 14px; z-index: 2; }
.n7 { top: 38%; right: 16%; transform: rotate(6deg); background: #fff; color: #44525a; font-size: 14px; padding: 10px 14px; }
.n8 { top: 60%; left: 16%; transform: rotate(10deg); background: #e7f3ec; color: #2f5d40; font-size: 13px; padding: 9px 12px; z-index: 2; }
.n9 { bottom: 22%; right: 32%; transform: rotate(-7deg); background: #fdf6df; font-size: 14px; padding: 10px 14px; }
.n10 { bottom: -3%; left: 4%; transform: rotate(4deg); background: #ffe9e0; color: #7a3a22; font-size: 13px; padding: 9px 12px; max-width: 140px; z-index: 2; }
.n11 { top: 2%; left: 30%; transform: rotate(8deg); background: #e7f3ec; color: #2f5d40; font-size: 13px; padding: 9px 12px; }
.n12 { top: 30%; left: 8%; transform: rotate(-5deg); background: #fff; color: #44525a; font-size: 13px; padding: 9px 12px; z-index: 3; }
.n13 { top: 52%; right: 2%; transform: rotate(-8deg); background: #ffe9e0; color: #7a3a22; font-size: 13px; padding: 9px 12px; }
.n14 { top: 24%; right: 30%; transform: rotate(11deg); background: #fdf6df; font-size: 13px; padding: 9px 12px; }
.n15 { top: 38%; left: 37%; transform: rotate(-6deg); background: #fff; color: #44525a; font-size: 12px; padding: 8px 11px; max-width: 130px; z-index: 3; }
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } .notes { height: 240px; } }

/* ---- feature rows (alternating) ---- */
.feature-row { padding: 78px 0; }
.feature-row.alt { background: var(--paper-2); }
.fr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.fr-grid.rev .fr-copy { order: 2; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--flame-dark); margin-bottom: 18px; }
.kicker-ic { width: 34px; height: 34px; border-radius: 10px; background: rgba(232,116,60,.12); display: grid; place-items: center; }
.kicker-ic svg { width: 18px; height: 18px; }
.fr-copy h2 { font-size: clamp(28px, 3.8vw, 42px); margin-bottom: 16px; }
.fr-copy h2 em { font-style: italic; color: var(--flame); }
.fr-copy > p { font-size: 18px; color: var(--ink-soft); margin-bottom: 22px; }
.check-list { list-style: none; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 32px; font-size: 16px; color: var(--ink); font-weight: 500; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: rgba(91,154,120,.15); }
.check-list li::after { content: ""; position: absolute; left: 6px; top: 7px; width: 9px; height: 5px; border-left: 2px solid #4e8c6a; border-bottom: 2px solid #4e8c6a; transform: rotate(-45deg); }
.fr-media { display: flex; justify-content: center; }
.media-card { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 30px; width: 100%; max-width: 420px; box-shadow: 0 30px 60px -34px rgba(42,74,92,.4); }
@media (max-width: 860px) { .fr-grid { grid-template-columns: 1fr; gap: 36px; } .fr-grid.rev .fr-copy { order: 0; } }

/* voice card + waveform */
.voice-card { text-align: center; }
.mic-orb { position: relative; width: 76px; height: 76px; margin: 6px auto 22px; border-radius: 50%; background: var(--flame); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(232,116,60,.7); }
.mic-orb svg { width: 30px; height: 30px; z-index: 2; }
.mic-orb .pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(232,116,60,.5); animation: orbpulse 2.2s ease-out infinite; }
.mic-orb .pulse.p2 { animation-delay: 1.1s; }
@keyframes orbpulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.9); opacity: 0; } }
.wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 54px; margin-bottom: 18px; }
.wave i { width: 4px; border-radius: 999px; background: linear-gradient(var(--flame),var(--flame-dark)); animation: wv 1.1s ease-in-out infinite; }
.wave i:nth-child(odd) { animation-delay: .15s; } .wave i:nth-child(3n) { animation-delay: .3s; } .wave i:nth-child(4n) { animation-delay: .45s; } .wave i:nth-child(5n) { animation-delay: .6s; }
@keyframes wv { 0%,100% { height: 10px; opacity: .55; } 50% { height: 44px; opacity: 1; } }
.voice-transcript { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink-soft); margin-bottom: 18px; }
.voice-result { text-align: left; border-top: 1px dashed var(--line); padding-top: 14px; display: grid; gap: 8px; }
.vr-row { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.vr-row .app-qty { margin-left: auto; }

/* multilingual card */
.lang-card { text-align: center; }
.lang-inputs { display: flex; flex-direction: column; gap: 10px; }
.lang-chip { display: inline-flex; align-items: center; gap: 10px; justify-content: center; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 11px 18px; font-size: 16px; font-weight: 600; }
.lang-chip b { font-size: 18px; }
.lang-merge { height: 56px; }
.lang-merge svg { width: 60%; height: 100%; }
.lang-merge path { fill: none; stroke: var(--flame); stroke-width: 2; stroke-dasharray: 4 5; opacity: .6; }
.lang-out { display: inline-flex; align-items: center; gap: 12px; background: var(--ink); color: #fff; border-radius: 14px; padding: 16px 24px; font-size: 19px; box-shadow: 0 16px 34px -16px rgba(42,74,92,.7); }
.lang-out b { font-family: var(--serif); font-weight: 500; }
.lang-out .app-qty { color: rgba(255,255,255,.75); font-size: 14px; }
.lang-out .cat-dot { width: 11px; height: 11px; }

/* rep (Vertreter) card */
.rep-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.rep-tabs span { font-size: 13px; font-weight: 600; padding: 7px 13px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: var(--ink-mute); }
.rep-tabs span.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.rep-row { display: flex; align-items: center; gap: 12px; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 600; }
.rep-row b { flex: 1; }
.rep-check { width: 24px; height: 24px; border-radius: 7px; background: #5b9a78; color: #fff; display: grid; place-items: center; font-size: 14px; flex: none; }
.rep-check.empty { background: transparent; border: 2px solid var(--line); }
.rep-price { font-size: 13px; color: var(--ink-mute); font-weight: 600; }
.rep-foot { display: flex; justify-content: space-between; align-items: center; padding: 16px 4px 4px; font-size: 15px; color: var(--ink-soft); }
.rep-foot b { font-family: var(--serif); font-size: 24px; color: var(--ink); }
.spend { display: flex; align-items: flex-end; gap: 7px; height: 70px; margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--line); position: relative; }
.spend .bar { flex: 1; background: rgba(42,74,92,.16); border-radius: 5px 5px 0 0; }
.spend .bar.hl { background: var(--flame); }
.spend em { position: absolute; top: -2px; right: 0; font-style: normal; font-size: 11px; color: var(--ink-mute); }

/* feature grid section */
.grid-feats { padding: 80px 0; }

/* ---- owner / chef ---- */
.owner { padding: 30px 0 80px; }

/* Chef-Benefits: Bestellübersicht, Personalwechsel, Ausgaben, Scanner (soon) */
.boss-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 46px 0 26px; }
.boss-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px; position: relative; }
.boss-card .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(232,116,60,.12); color: var(--flame-dark); display: grid; place-items: center; margin-bottom: 18px; }
.boss-card .ic svg { width: 22px; height: 22px; }
.boss-card h3 { font-size: 21px; margin-bottom: 10px; }
.boss-card p { font-size: 15.5px; color: var(--ink-soft); }
.boss-main { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr .9fr; gap: 44px; align-items: center; box-shadow: 0 26px 56px -38px rgba(42,74,92,.45); padding: 36px; }
.boss-main h3 { font-size: 26px; }
.boss-main p { font-size: 17px; }
.boss-card.soon { background: linear-gradient(150deg, #fdf2e7, var(--paper) 75%); border: 1.5px dashed rgba(232,116,60,.5); }
.soon-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--flame-dark); background: rgba(232,116,60,.12); border: 1px solid rgba(232,116,60,.3); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.soon-badge .soon-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--flame); animation: soonping 1.8s ease-out infinite; flex: none; }
/* Bestellverlauf-Mock */
.boss-history { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px 6px; }
.bh-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.bh-row { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.bh-row:last-child { border-bottom: none; }
.bh-ic { flex: none; width: 34px; height: 34px; border-radius: 10px; background: rgba(91,154,120,.16); color: #4e8c6a; display: grid; place-items: center; }
.bh-ic svg { width: 16px; height: 16px; }
.bh-main { flex: 1; line-height: 1.3; min-width: 0; }
.bh-main b { display: block; font-size: 15px; color: var(--ink); }
.bh-main i { font-style: normal; font-size: 12.5px; color: var(--ink-mute); }
.bh-sum { font-family: var(--serif); font-size: 17px; color: var(--ink); white-space: nowrap; }
@media (max-width: 980px) {
  .boss-grid { grid-template-columns: 1fr 1fr; }
  .boss-main { grid-template-columns: 1fr; gap: 26px; }
  .boss-card.soon { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .boss-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .boss-card, .boss-main { padding: 26px 22px; }
}

.owner-card { background: var(--ink); color: var(--paper); border-radius: 28px; padding: 56px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; position: relative; overflow: hidden; }
.owner-card::after { content: ""; position: absolute; top: -40%; right: -10%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(232,116,60,.25), transparent 65%); }
.owner-copy { position: relative; z-index: 1; }
.owner-card h2 { color: var(--paper); font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.owner-card p { color: rgba(250,248,245,.82); font-size: 18px; margin-bottom: 26px; }
.owner-card strong { color: #fff; }
.section-tag.light { color: #f0a886; }
.owner-flow { position: relative; z-index: 1; display: grid; gap: 4px; }
.flow-step { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 14px 16px; }
.flow-step.on { background: rgba(232,116,60,.16); border-color: rgba(232,116,60,.4); }
.fs-num { width: 32px; height: 32px; border-radius: 50%; background: var(--flame); color: #fff; display: grid; place-items: center; font-weight: 700; flex: none; }
.flow-step.on .fs-num { background: #5b9a78; }
.flow-step b { display: block; font-family: var(--sans); font-size: 15px; color: #fff; }
.flow-step i { font-style: normal; font-size: 13px; color: rgba(250,248,245,.6); }
.flow-line { width: 2px; height: 14px; background: rgba(255,255,255,.18); margin-left: 31px; }
@media (max-width: 820px) { .owner-card { grid-template-columns: 1fr; gap: 36px; padding: 40px 28px; } }

/* ---- download / store badges ---- */
.download { padding: 40px 0 90px; }
.dl-band { background: var(--paper-2); border: 1px solid var(--line); border-radius: 28px; padding: 64px 32px; text-align: center; }
.dl-band h2 { font-size: clamp(28px,4vw,44px); margin-bottom: 14px; }
.dl-band > p { color: var(--ink-soft); font-size: 19px; max-width: 46ch; margin: 0 auto 30px; }
.badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 14px; transition: transform .15s, box-shadow .2s; }
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(42,74,92,.6); }
.store-badge svg { width: 26px; height: 26px; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; font-size: 19px; font-weight: 600; font-family: var(--serif); text-align: left; }
.store-badge small { font-size: 11px; font-weight: 500; font-family: var(--sans); opacity: .8; letter-spacing: .02em; }
.dl-soon { display: flex; width: fit-content; margin: 0 auto 30px; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--flame-dark); background: rgba(232,116,60,.1); border: 1px solid rgba(232,116,60,.3); padding: 10px 20px; border-radius: 999px; }
.dl-soon .soon-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--flame); animation: soonping 1.8s ease-out infinite; flex: none; }
@keyframes soonping { 0% { box-shadow: 0 0 0 0 rgba(232,116,60,.55); } 100% { box-shadow: 0 0 0 9px rgba(232,116,60,0); } }
@media (prefers-reduced-motion: reduce) { .dl-soon .soon-dot { animation: none; } }
.dl-note { margin-top: 26px; font-size: 15px; color: var(--ink-mute); }
.dl-note a { color: var(--flame-dark); font-weight: 600; }
.waitlist { margin-top: 30px; }
.waitlist [hidden] { display: none !important; }
.waitlist .dl-note { margin-top: 14px; }
.wl-form { display: flex; gap: 10px; justify-content: center; max-width: 460px; margin: 0 auto; }
.wl-form input { flex: 1; min-width: 0; padding: 13px 22px; border: 1.5px solid var(--line); border-radius: 999px; font-family: var(--sans); font-size: 16px; background: var(--paper); color: var(--ink); }
.wl-form input::placeholder { color: var(--ink-mute); }
.wl-form input:focus { outline: none; border-color: var(--flame); box-shadow: 0 0 0 3px rgba(232,116,60,.15); }
.wl-msg { margin-top: 16px; font-size: 15px; font-weight: 600; color: var(--flame-dark); }
@media (max-width: 480px) { .wl-form { flex-direction: column; } .wl-form .btn { width: 100%; } }

/* footer logo image */
footer .logo img { vertical-align: middle; margin-right: 6px; }

/* small screens */
/* Hero: ab 900px einspaltig – Text zuerst, dann Phone (DOM-Reihenfolge, kein order-Swap) */
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Navigation als Hamburger-Dropdown ≤900px */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px; box-shadow: 0 22px 30px -22px rgba(42,74,92,.55);
    display: none;
  }
  #site-header.open .nav-links { display: flex; }
  .nav-links a.muted { display: block; padding: 13px 2px; font-size: 17px; border-bottom: 1px solid var(--line); }
  .lang { display: flex; align-self: flex-start; margin: 14px 0 6px; }
  .nav-links .btn { width: 100%; padding: 13px; font-size: 16px; margin-top: 8px; }
}

/* Feinschliff für sehr kleine Screens */
@media (max-width: 600px) {
  section { padding: 56px 0; }
  .feature-row { padding: 50px 0; }
  .grid-feats, .download { padding: 52px 0; }
  .owner { padding: 24px 0 56px; }
  .hero { padding: 44px 0 40px; }
  .owner-card { padding: 32px 22px; }
  .dl-band { padding: 46px 22px; }
  .media-card { padding: 22px; }
  .logo { font-size: 22px; }
  .hero h1 { font-size: clamp(32px, 9vw, 52px); }
}
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
}

/* ===== Inhaberportal ===== */
.dash-card.wide { max-width: 860px; }
.ptl-h { font-size: 22px; margin: 34px 0 12px; }
.muted-note { color: var(--ink-mute); font-size: 15px; }
.tbl-scroll { overflow-x: auto; }
.ptl-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.ptl-table th { text-align: left; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); padding: 8px 10px; border-bottom: 1.5px solid var(--line); white-space: nowrap; }
.ptl-table td { padding: 11px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.ptl-table td.num { text-align: right; white-space: nowrap; }
.role-select { padding: 7px 10px; border: 1.5px solid var(--line); border-radius: 10px; font-family: var(--sans); font-size: 14px; background: var(--paper); color: var(--ink); cursor: pointer; }
.role-select:focus { outline: none; border-color: var(--flame); }
.dept-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 6px; }
.dept-tabs button { padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink-soft); font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s, color .2s; }
.dept-tabs button.sel { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-danger-link { color: #b23c1a; background: none; border: none; cursor: pointer; font-family: var(--sans); font-size: 14px; font-weight: 600; padding: 4px 6px; }
.btn-danger-link:hover { text-decoration: underline; }
.stat-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 14px 0 6px; }
.stat-box { flex: 1; min-width: 130px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.stat-box b { display: block; font-size: 22px; color: var(--ink); }
.stat-box span { font-size: 13px; color: var(--ink-mute); }
/* Sprachumschalter im Footer: Override der 940px-Regel weiter oben */
footer .lang { display: inline-flex; margin-top: 14px; }
