/* Gemeinsame Styles für Unterseiten von Wisslino */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8f9f6;
    color: #0f172a;
    line-height: 1.6;
    min-height: 100vh;
}
.page-nav {
    background: #ffffff;
    border-bottom: 1px solid #e8ebe5;
    padding: 14px 20px;
    position: sticky; top: 0; z-index: 10;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.page-nav-inner {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.page-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 900; font-size: 20px;
    color: #16a34a;
    text-decoration: none;
}
.page-logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 900;
}
.page-nav a {
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.page-nav a:hover { color: #16a34a; }
.page-cta {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white !important;
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 700;
}
.page-cta:hover { box-shadow: 0 4px 12px rgba(34,197,94,0.3); }
.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}
h1 {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
h1 em { color: #16a34a; font-style: italic; }
h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 32px 0 12px;
    letter-spacing: -0.01em;
}
h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 24px 0 10px;
}
p { color: #334155; margin-bottom: 14px; }
ul, ol { color: #334155; margin: 10px 0 16px 22px; }
li { margin-bottom: 8px; }
a { color: #16a34a; }
.lead {
    font-size: 18px;
    color: #475569;
    margin-bottom: 28px;
}
.warn {
    background: #fef3c7;
    border-left: 4px solid #fbbf24;
    padding: 14px 18px;
    border-radius: 8px;
    color: #78350f;
    margin: 20px 0;
    font-size: 14px;
}
.card {
    background: white;
    border: 1px solid #e8ebe5;
    border-radius: 16px;
    padding: 24px;
    margin: 16px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
}
.card h3 { margin-top: 0; }
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.feature {
    background: white;
    border: 1px solid #e8ebe5;
    border-radius: 14px;
    padding: 22px;
}
.feature-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.feature h3 { margin: 0 0 8px; font-size: 16px; }
.feature p { font-size: 14px; color: #475569; margin: 0; }
.price-card {
    background: white;
    border: 2px solid #e8ebe5;
    border-radius: 18px;
    padding: 28px;
}
.price-card.featured {
    border-color: #22c55e;
    box-shadow: 0 8px 24px rgba(34,197,94,0.12);
}
.price-card h3 { margin: 0 0 6px; }
.price-tag {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
}
.price-tag small {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 400;
}
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s;
}
.btn:hover { box-shadow: 0 8px 20px rgba(34,197,94,0.3); transform: translateY(-1px); }
.btn-outline {
    background: white;
    color: #16a34a;
    border: 1px solid #86efac;
}
.footer {
    border-top: 1px solid #e8ebe5;
    padding: 30px 20px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
    background: white;
}
.footer a { color: #64748b; margin: 0 10px; }
.footer a:hover { color: #16a34a; }
