/* Pnishi Digital — professional Swiss KMU (light, calm, trustworthy) */
:root {
  --bg: #f8fafc;
  --bg-alt: #ffffff;
  --bg-soft: #f1f5f9;
  --bg-dark: #0f172a;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --teal: #0f766e;
  --teal-bright: #0d9488;
  --teal-soft: #ccfbf1;
  --accent: #0f766e;
  --accent-hover: #115e59;
  --focus: #0d9488;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.1);
  --header-h: 72px;
  --max: 1120px;
  --sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); color: var(--ink-soft); background: var(--bg);
  line-height: 1.65; font-size: 1.05rem; min-height: 100vh; display: flex; flex-direction: column;
}
main { flex: 1; }
img, svg { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
ul, ol { margin: 0; padding: 0; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.75rem; letter-spacing: -0.025em; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
h3 { font-size: 1.2rem; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--teal); color: #fff; padding: 0.75rem 1.25rem; z-index: 1000; border-radius: 0 0 8px 0; font-weight: 700; }
.skip-link:focus { left: 0; text-decoration: none; color: #fff; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); min-height: var(--header-h);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--ink); font-weight: 600; flex-shrink: 0; }
.brand:hover { text-decoration: none; color: var(--ink); }
.brand-text strong { font-weight: 800; color: var(--teal); }
.brand-mark svg { border-radius: 10px; }
.nav { display: flex; align-items: center; gap: 0.15rem; flex-wrap: wrap; }
.nav a { color: var(--ink-soft); text-decoration: none; padding: 0.45rem 0.7rem; border-radius: 8px; font-size: 0.95rem; font-weight: 500; }
.nav a:hover { background: var(--bg-soft); color: var(--ink); text-decoration: none; }
.nav a.is-active { color: var(--teal); background: var(--teal-soft); }
.nav-cta { background: var(--teal) !important; color: #fff !important; margin-left: 0.35rem; font-weight: 600 !important; }
.nav-cta:hover { background: var(--accent-hover) !important; color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; border: 1px solid var(--line); border-radius: 8px; padding: 0.55rem 0.65rem; cursor: pointer; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--bg-alt); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; padding: 0.75rem 1rem 1rem; gap: 0.25rem; box-shadow: var(--shadow-md); }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.75rem 1rem; }
  .nav-cta { margin-left: 0; text-align: center; }
}
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.8rem 1.35rem; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s; font-family: inherit; line-height: 1.3; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 2px 8px rgba(15, 118, 110, 0.25); }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-ghost, .btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-soft); }
.btn-large { padding: 1rem 1.6rem; font-size: 1.05rem; }
.btn-light { background: #fff; color: var(--teal); }
.btn-light:hover { background: var(--teal-soft); color: var(--accent-hover); }
.hero-actions, .page-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.section { padding: 4rem 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); color: #cbd5e1; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #f8fafc; }
.section-dark .eyebrow { color: #5eead4; }
.section-dark .section-lead { color: #94a3b8; }
.section-dark a { color: #5eead4; }
.section-head { max-width: 40rem; margin-bottom: 2.25rem; }
.section-lead { font-size: 1.1rem; color: var(--muted); margin: 0; }
.eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); margin: 0 0 0.5rem; }

.hero { padding: 3.5rem 0 4rem; background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; } }
.hero-lead { font-size: 1.15rem; color: var(--muted); max-width: 36rem; }
.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; margin-top: 1.75rem; padding: 0; color: var(--ink-soft); font-size: 0.95rem; }
.trust-row .check { color: var(--teal); font-weight: 700; margin-right: 0.35rem; }
.audit-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.audit-top { display: flex; align-items: center; gap: 0.45rem; padding: 0.75rem 1rem; background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: 0.85rem; color: var(--muted); }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.red { background: #f87171; } .dot.yellow { background: #fbbf24; } .dot.green { background: #34d399; }
.audit-title { margin-left: 0.35rem; flex: 1; font-family: ui-monospace, monospace; font-size: 0.78rem; }
.audit-status { font-size: 0.75rem; font-weight: 700; color: var(--teal); background: var(--teal-soft); padding: 0.2rem 0.55rem; border-radius: 999px; }
.audit-body { padding: 1.35rem 1.25rem 1.5rem; }
.score-block { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.score-ring { width: 72px; height: 72px; border-radius: 50%; border: 3px solid var(--teal); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; background: var(--teal-soft); }
.score-num { font-size: 1.5rem; font-weight: 800; color: var(--teal); line-height: 1; }
.score-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: 0.75rem; padding: 0.55rem 0; border-top: 1px solid var(--line); font-size: 0.95rem; color: var(--ink-soft); }
.check-list li span { font-weight: 700; color: var(--teal); font-variant-numeric: tabular-nums; min-width: 1.6rem; }
.cards { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); transition: border-color 0.2s, box-shadow 0.2s; }
.card:hover { border-color: #99f6e4; box-shadow: var(--shadow-md); }
.card-featured { border-color: #5eead4; background: linear-gradient(180deg, #f0fdfa 0%, #fff 60%); }
.badge { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal); background: var(--teal-soft); padding: 0.25rem 0.55rem; border-radius: 999px; margin-bottom: 0.5rem; }
.card h2, .card h3 { margin-top: 0.25rem; }
.card ul { list-style: none; margin: 1rem 0 0; padding: 0; }
.card ul li { padding: 0.3rem 0 0.3rem 1.1rem; position: relative; font-size: 0.95rem; color: var(--muted); }
.card ul li::before { content: "·"; position: absolute; left: 0.25rem; color: var(--teal); font-weight: 700; }
.card-link { display: inline-block; margin-top: 1rem; font-weight: 600; color: var(--teal); }
.card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }

.fuer-wen-strip, .process-strip { padding: 2.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.fuer-wen-intro { color: var(--muted); margin-bottom: 1rem; }
.fuer-wen-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.fuer-wen-links a { display: inline-block; padding: 0.5rem 1rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-weight: 550; text-decoration: none; }
.fuer-wen-links a:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-soft); }
.process-strip-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 1.5rem; }
.process-strip-lead { color: var(--muted); margin: 0; max-width: 28rem; }
.process-strip-steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 0.75rem; padding: 0; }
.process-strip-steps a { display: flex; flex-direction: column; gap: 0.35rem; padding: 1rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.process-strip-steps a:hover { border-color: var(--teal); color: var(--teal); }
.process-strip-steps span { font-size: 0.75rem; color: var(--teal); font-weight: 700; }
.steps { list-style: none; display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); padding: 0; }
.step { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem; }
.section-dark .step { background: rgba(255,255,255,0.04); border-color: rgba(148,163,184,0.2); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.75rem; }
.section-dark .step-num { background: #14b8a6; color: var(--bg-dark); }
.price-grid { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.price-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.price-free { border-color: #5eead4; background: linear-gradient(180deg, #f0fdfa, #fff); }
.price-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal); margin: 0 0 0.35rem; }
.price-amount { font-size: 1.45rem; font-weight: 800; color: var(--ink); margin: 0.5rem 0; }
.price-amount .per { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.price-note { color: var(--muted); margin: 0; font-size: 0.95rem; }
.price-disclaimer { margin-top: 1.5rem; font-size: 0.9rem; color: var(--muted); }
.about-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 800px) { .about-grid { grid-template-columns: 1.2fr 0.8fr; gap: 3rem; } }
.large { font-size: 1.15rem; }
.about-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; padding: 0; }
.about-tags li { background: var(--teal-soft); color: var(--teal); font-weight: 600; font-size: 0.85rem; padding: 0.4rem 0.75rem; border-radius: 999px; }
.profile-panel { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-md); text-align: center; }
.profile-monogram { width: 72px; height: 72px; margin: 0 auto 1rem; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 800; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; }
.profile-role { color: var(--muted); margin-bottom: 1.25rem; }
.profile-facts { text-align: left; margin: 0; }
.profile-facts > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.65rem 0; border-top: 1px solid var(--line); font-size: 0.95rem; }
.profile-facts dt { color: var(--muted); font-weight: 500; }
.profile-facts dd { margin: 0; font-weight: 600; color: var(--ink); }
.about-extra { margin-top: 3rem; }
.about-extra-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .about-extra-grid { grid-template-columns: 1fr 1fr; } }
.about-block { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.principle-list, .fuer-wen-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.principle-list li, .fuer-wen-list li { padding: 0.75rem 0; border-top: 1px solid var(--line); }
.principle-list li strong { display: block; color: var(--ink); margin-bottom: 0.2rem; }
.principle-list li span { color: var(--muted); font-size: 0.95rem; }

.contact-card { display: grid; gap: 2rem; background: var(--bg-dark); color: #cbd5e1; border-radius: calc(var(--radius) + 4px); padding: 2rem; box-shadow: var(--shadow-md); }
@media (min-width: 800px) { .contact-card { grid-template-columns: 1.2fr 0.8fr; padding: 2.5rem; } }
.contact-card h1 { color: #f8fafc; }
.contact-card .eyebrow { color: #5eead4; }
.contact-card a { color: #5eead4; }
.contact-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-soon-note { font-size: 0.95rem; color: #94a3b8; margin-bottom: 0.5rem; }
.contact-address { font-style: normal; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(148,163,184,0.25); color: #94a3b8; font-size: 0.95rem; }
.contact-section { padding-top: 3rem; padding-bottom: 4rem; }
.form-layout { display: grid; gap: 2rem; }
@media (min-width: 900px) { .form-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.form-bullets { list-style: none; padding: 0; margin: 1.25rem 0; }
.form-bullets li { padding: 0.35rem 0; }
.form-bullets .check { color: var(--teal); font-weight: 700; margin-right: 0.4rem; }
.form-side-note { color: var(--muted); font-size: 0.95rem; }
.form-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-md); }
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.form-field-full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.35rem; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 0.7rem 0.85rem; border: 1px solid var(--line-strong); border-radius: 8px; font: inherit; background: #fff; color: var(--ink); }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--focus); outline-offset: 1px; border-color: var(--teal); }
.req { color: #b91c1c; }
.opt { color: var(--muted); font-weight: 400; font-size: 0.85rem; }
.form-check { display: flex; gap: 0.65rem; align-items: flex-start; margin: 1.25rem 0; font-size: 0.9rem; }
.form-check input { margin-top: 0.25rem; flex-shrink: 0; }
.form-submit { width: 100%; margin-top: 0.25rem; }
.form-footnote { font-size: 0.85rem; color: var(--muted); margin-top: 0.85rem; }
.form-honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }
.contact-form { position: relative; }
.faq-list { max-width: 46rem; }
.faq-item { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 0.65rem; padding: 0; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1rem 1.15rem; font-weight: 650; color: var(--ink); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--teal); font-weight: 700; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 1.15rem 1.15rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 0.85rem; }
.legal-page { padding: 2.5rem 0 4rem; }
.legal-back { display: inline-block; margin-bottom: 1rem; font-weight: 600; }
.legal-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); max-width: 44rem; }
.legal-meta { font-size: 0.9rem; color: var(--muted); background: var(--bg-soft); padding: 0.85rem 1rem; border-radius: 8px; border-left: 3px solid var(--teal); }
.legal-card h2 { margin-top: 1.75rem; font-size: 1.25rem; }
.thanks-card { max-width: 36rem; margin: 3rem auto; text-align: center; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.5rem 2rem; box-shadow: var(--shadow-md); }
.thanks-icon { width: 64px; height: 64px; margin: 0 auto 1.25rem; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 700; }
.example-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.example-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.example-visual { height: 120px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; color: #fff; }
.ex-handwerk { background: linear-gradient(135deg, #334155, #0f766e); }
.ex-gastro { background: linear-gradient(135deg, #44403c, #b45309); }
.ex-dienst { background: linear-gradient(135deg, #1e3a5f, #0e7490); }
.example-body { padding: 1.25rem; }
.example-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }
.cta-band { padding: 3.5rem 0; background: var(--bg-dark); color: #cbd5e1; text-align: center; }
.cta-band h2 { color: #f8fafc; }
.cta-band p { color: #94a3b8; max-width: 32rem; margin-inline: auto; }
.cta-band .page-cta { justify-content: center; }
.notice { background: #ecfdf5; border: 1px solid #99f6e4; color: #115e59; padding: 0.85rem 1.1rem; border-radius: var(--radius-sm); font-size: 0.95rem; margin-bottom: 1.5rem; }
.footer { background: var(--bg-dark); color: #94a3b8; padding: 3rem 0 0; margin-top: auto; font-size: 0.95rem; }
.footer a { color: #5eead4; }
.footer a:hover { color: #99f6e4; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.1fr 1.9fr; } }
.footer-brand { color: #f8fafc !important; margin-bottom: 0.75rem; }
.footer-brand:hover { color: #f8fafc !important; text-decoration: none; }
.footer-brand .brand-text strong { color: #5eead4; }
.footer-tagline { margin-bottom: 0.5rem; }
.footer-note { font-size: 0.85rem; color: #64748b; }
.footer-cols { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.footer-cols strong { display: block; color: #e2e8f0; margin-bottom: 0.65rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-cols p { margin: 0; line-height: 1.85; }
.footer-termine { display: block; margin-top: 0.35rem; color: #fcd34d; font-weight: 600; font-size: 0.9rem; }
.footer-bottom { margin-top: 2.5rem; padding: 1.25rem 0; border-top: 1px solid rgba(148,163,184,0.15); font-size: 0.85rem; color: #64748b; }
.footer-bottom p { margin: 0; }
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
