* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #f5f5f7; --bg-white: #ffffff;
  --text-primary: #1d1d1f; --text-secondary: #6e6e73;
  --accent: #0066cc; --accent-hover: #0077ed;
  --border: rgba(0,0,0,0.08); --ok: #34c759; --warn: #ff9f0a; --bad: #ff3b30;
  --radius: 18px; --page-width: 980px; --page-pad: 22px;
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, 'Inter', sans-serif; background: var(--bg); color: var(--text-primary); -webkit-font-smoothing: antialiased; }
.wrap { max-width: calc(var(--page-width) + var(--page-pad) * 2); margin: 0 auto; padding: 0 var(--page-pad); }

nav { position: sticky; top: 0; z-index: 50; height: 48px; display: flex; align-items: center; background: rgba(245,245,247,0.92); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid var(--border); padding: 0 var(--page-pad); }
.nav-inner { width: 100%; max-width: calc(var(--page-width) + var(--page-pad) * 2); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.nav-logo b { font-size: 17px; font-weight: 500; color: var(--text-primary); letter-spacing: -0.02em; }
.nav-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); background: rgba(0,102,204,0.08); border-radius: 5px; padding: 3px 7px; }
.nav-cta { font-size: 12px; color: var(--accent); text-decoration: none; }
.nav-cta:hover { color: var(--accent-hover); }

.hero { padding: 60px 0 24px; text-align: center; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.hero h1 { font-size: clamp(28px, 4.5vw, 44px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; max-width: 680px; margin: 0 auto 16px; }
.hero p { font-size: 17px; font-weight: 300; line-height: 1.6; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); text-align: center; margin: 56px 0 8px; }
.section-h { font-size: clamp(22px, 3vw, 30px); font-weight: 600; letter-spacing: -0.02em; text-align: center; margin-bottom: 8px; }
.section-sub { font-size: 15px; font-weight: 300; line-height: 1.6; color: var(--text-secondary); text-align: center; max-width: 620px; margin: 0 auto 30px; }

.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tier-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.tier-card::after { content: ''; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--accent); transition: width 0.4s ease; }
.tier-card:hover { transform: translateY(-4px); box-shadow: 0 12px 44px rgba(0,0,0,0.08); border-color: rgba(0,102,204,0.25); }
.tier-card:hover::after { width: 100%; }
.tier-card.featured { border-color: var(--accent); }
.tier-flag { position: absolute; top: 14px; right: 14px; font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--accent); border-radius: 5px; padding: 3px 8px; }
.tier-name { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 4px; }
.tier-cadence { font-size: 11px; color: var(--accent); font-weight: 500; margin-bottom: 14px; }
.tier-price { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; }
.tier-price span { font-size: 13px; font-weight: 400; color: var(--text-secondary); }
.tier-setup { font-size: 11px; color: var(--text-secondary); margin-bottom: 14px; }
.tier-feat { list-style: none; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.tier-feat li { font-size: 12px; font-weight: 300; line-height: 1.45; color: var(--text-secondary); padding-left: 18px; position: relative; }
.tier-feat li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 500; }

.panel { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; margin-bottom: 18px; }
.panel h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.panel .lead { font-size: 14px; font-weight: 300; color: var(--text-secondary); line-height: 1.6; margin-bottom: 22px; max-width: 640px; }

.hats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hat { border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; background: #fbfbfd; }
.hat-head { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.hat-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(0,0,0,0.12); }
.hat-name { font-size: 13px; font-weight: 600; }
.hat-role { font-size: 11px; color: var(--text-secondary); margin-left: auto; }
.hat-text { font-size: 13px; font-weight: 300; line-height: 1.55; color: var(--text-secondary); }

.dim-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.dim-row:last-child { border-bottom: none; }
.dim-name { font-size: 13px; font-weight: 500; width: 230px; flex-shrink: 0; }
.dim-bar { flex: 1; height: 6px; background: var(--bg); border-radius: 4px; overflow: hidden; min-width: 100px; }
.dim-fill { height: 100%; border-radius: 4px; background: var(--accent); }
.dim-val { font-size: 13px; font-weight: 600; width: 38px; text-align: right; }

.cai-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 6px; }
.cai-item { background: #fbfbfd; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.cai-k { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.cai-d { font-size: 12px; font-weight: 300; color: var(--text-secondary); line-height: 1.5; }

.kpi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.kpi { background: #fbfbfd; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.kpi-name { font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.kpi-note { font-size: 12px; font-weight: 300; color: var(--text-secondary); line-height: 1.5; }

.cta-band { text-align: center; padding: 40px 0 64px; }
.btn-blue { font-size: 15px; font-weight: 400; padding: 12px 28px; border-radius: 980px; background: var(--accent); color: #fff; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-blue:hover { background: var(--accent-hover); transform: translateY(-1px); }

footer { border-top: 1px solid var(--border); padding: 22px var(--page-pad); }
.footer-inner { max-width: calc(var(--page-width) + var(--page-pad) * 2); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-inner span, .footer-inner a { font-size: 12px; color: var(--text-secondary); text-decoration: none; }
.footer-inner a:hover { color: var(--text-primary); }

@media (max-width: 760px) {
  .tier-grid { grid-template-columns: 1fr; }
  .hats-grid { grid-template-columns: 1fr; }
  .cai-grid { grid-template-columns: 1fr 1fr; }
  .dim-name { width: 150px; }
  .panel { padding: 26px 20px; }
}

/* aus frueheren Inline-Stilen */
.s1 { background:#ffffff; }
.s2 { background:#ff3b30; }
.s3 { background:#1d1d1f; }
.s4 { background:#ffcc00; }
.s5 { background:#34c759; }
.s6 { background:#0066cc; }
.s7 { width:72%; }
.s8 { width:64%; }
.s9 { width:48%; }
.s10 { width:70%; }
.s11 { width:58%; }
.s12 { width:55%; }
.s13 { width:67%; }
.s14 { width:61%; }
.s15 { width:40%; }
.s16 { width:75%; }