/* ==========================================================================
   PFLEGEGRAD-RECHNER.INFO - Konsolidiertes Stylesheet
   Phase 1 Foundation - Stand: 2025-01-30
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES
   ========================================================================== */

:root {
    /* Primärfarben (GrÃ¼n-Palette) */
    --primary: #1a5f4a;
    --primary-light: #238567;
    --primary-dark: #0f3d2f;
    
    /* Brand-Farben (Blau-Palette) */
    --brand: #2f6bff;
    --brand-2: #2049b8;
    
    /* Hintergrundfarben */
    --bg: #fafaf8;
    --bg-warm: #f5f3ef;
    --white: #ffffff;
    
    /* Textfarben */
    --text: #1a1a1a;
    --text-muted: #5a5a5a;
    
    /* UI-Farben */
    --border: #e5e2dc;
    --error: #ef4444;
    --success: #22c55e;
    --ok: #1f9d55;
    --warn: #ffb020;
    
    /* AbstÃ¤nde */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    
    /* Border Radius */
    --radius: 12px;
    --radius-sm: 14px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    
    /* Schatten */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-brand: 0 14px 34px rgba(47, 107, 255, 0.22);
    --shadow-primary: 0 4px 16px rgba(26, 95, 74, 0.3);
    
    /* Layout */
    --max-width: 1120px;
    --max-width-content: 1000px;
    --max-width-text: 800px;
    
    /* Transitions */
    --transition-fast: 0.08s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100%;
}

/* Body mit Gradient-Hintergrund (für Startseite) */
body.has-gradient {
    background: 
        radial-gradient(1100px 500px at 20% -10%, rgba(47, 107, 255, 0.14), transparent 60%),
        radial-gradient(900px 500px at 90% 0%, rgba(255, 176, 32, 0.16), transparent 60%),
        var(--bg);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--text);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.6px;
}

h2 {
    font-size: 24px;
    margin: 40px 0 16px;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    font-size: 18px;
    margin: 28px 0 12px;
}

p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

ul, ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-muted);
}

li {
    margin-bottom: 8px;
}

strong {
    color: var(--text);
    font-weight: 700;
}

/* ==========================================================================
   4. ACCESSIBILITY
   ========================================================================== */

.skip-link {
    position: absolute;
    left: -9999px;
    top: 10px;
    background: #000;
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    left: 14px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   5. LAYOUT UTILITIES
   ========================================================================== */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.content {
    max-width: var(--max-width-text);
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ==========================================================================
   6. NAVIGATION
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

/* Alternative: Topbar Style */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 250, 247, 0.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(231, 226, 217, 0.7);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
}

.nav-inner {
    max-width: var(--max-width-content);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 18px;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.brand-badge {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(47, 107, 255, 0.12);
    border: 1px solid rgba(47, 107, 255, 0.18);
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.nav-links a:hover {
    color: var(--primary);
    border-color: rgba(231, 226, 217, 0.9);
    background: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   7. BREADCRUMB
   ========================================================================== */

.breadcrumb {
    max-width: var(--max-width-content);
    margin: 100px auto 0;
    padding: 0 24px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.breadcrumb li:not(:last-child)::after {
    content: "â€º";
    margin: 0 8px;
    color: var(--border);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb li:last-child span {
    color: var(--text);
    font-weight: 600;
}

/* ==========================================================================
   8. PAGE HEADER
   ========================================================================== */

.page-header {
    padding: 140px 24px 60px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.page-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   9. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(47, 107, 255, 0.2);
    background: rgba(47, 107, 255, 0.12);
    color: var(--brand-2);
    font-weight: 800;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base);
    user-select: none;
    text-decoration: none;
}

.btn:hover {
    background: rgba(47, 107, 255, 0.16);
    box-shadow: var(--shadow-sm);
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary,
.btn.primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-brand);
}

.btn-primary:hover,
.btn.primary:hover {
    box-shadow: 0 18px 44px rgba(47, 107, 255, 0.28);
}

.btn-ghost,
.btn.ghost {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(231, 226, 217, 0.95);
    color: var(--text);
    font-weight: 800;
}

.btn-green {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-primary);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 95, 74, 0.4);
}

/* ==========================================================================
   10. CARDS
   ========================================================================== */

.card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(231, 226, 217, 0.95);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
}

.hero-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(231, 226, 217, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 26px;
    overflow: hidden;
    position: relative;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: 
        radial-gradient(600px 260px at 30% 0%, rgba(47, 107, 255, 0.16), transparent 55%),
        radial-gradient(520px 220px at 85% 10%, rgba(255, 176, 32, 0.14), transparent 58%);
    pointer-events: none;
    opacity: 0.9;
}

.hero-card > * {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   11. INFO BOXES
   ========================================================================== */

.info-block {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}

.info-block p {
    margin: 0;
    color: var(--text);
}

.info-block strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
}

.highlight-box {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
    border-left: 4px solid var(--primary);
}

.highlight-box p {
    margin: 0;
    color: var(--text);
}

.disclaimer {
    background: #fef3c7;
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 32px 0;
    border-left: 4px solid #f59e0b;
}

.disclaimer p {
    margin: 0;
    color: #92400e;
    font-size: 14px;
}

/* ==========================================================================
   12. SUMMARY BOX (AI Overview Optimized)
   ========================================================================== */

.summary-box {
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.08), rgba(26, 95, 74, 0.08));
    border: 1px solid rgba(47, 107, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin: 32px 0;
}

.summary-box h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-2);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-box h2::before {
    content: "âœ“";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    font-size: 12px;
}

.summary-box p {
    color: var(--text);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.summary-box ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.summary-box li {
    color: var(--text);
    margin-bottom: 6px;
}

/* ==========================================================================
   13. FAQ SECTION
   ========================================================================== */

.faq-section {
    margin-top: 60px;
}

.faq-section h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item,
.faq-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.faq-item h4,
.faq-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.faq-item p,
.faq-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Schema.org FAQ Markup Support */
.faq-item[itemscope] {
    border: 1px solid var(--border);
}

/* ==========================================================================
   14. CONTACT PAGE
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.info-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.info-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.info-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   15. FORMS
   ========================================================================== */

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}

.form-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 95, 74, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}

.form-hint a {
    color: var(--primary);
}

/* Email waitlist form */
input[type="email"] {
    flex: 1 1 240px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(231, 226, 217, 0.95);
    background: rgba(255, 255, 255, 0.92);
    outline: none;
    font-weight: 700;
    font-family: inherit;
}

input[type="email"]:focus {
    border-color: rgba(47, 107, 255, 0.36);
    box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.10);
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */

.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 24px;
    text-align: center;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 16px;
    font-size: 14px;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.6;
}

/* Alternative Footer (für Startseite) */
footer.light {
    padding: 34px 0 84px;
    border-top: 1px solid rgba(231, 226, 217, 0.9);
    background: rgba(255, 255, 255, 0.35);
    margin-top: 30px;
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-weight: 650;
    font-size: 13px;
}

.foot a {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/* ==========================================================================
   17. PILLS & LABELS
   ========================================================================== */

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(47, 107, 255, 0.2);
    background: rgba(47, 107, 255, 0.10);
    color: var(--brand-2);
    font-weight: 800;
    font-size: 13px;
}

.label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    color: var(--brand-2);
    font-size: 13px;
    padding: 8px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(47, 107, 255, 0.18);
    background: rgba(47, 107, 255, 0.09);
}

/* ==========================================================================
   18. ICONS
   ========================================================================== */

.icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(47, 107, 255, 0.10);
    border: 1px solid rgba(47, 107, 255, 0.18);
    font-size: 20px;
    flex-shrink: 0;
}

.icon-warn {
    background: rgba(255, 176, 32, 0.16);
    border: 1px solid rgba(255, 176, 32, 0.25);
}

/* ==========================================================================
   19. TRUST ELEMENTS
   ========================================================================== */

.trustline {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 14px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
}

.trustline span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 10px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(231, 226, 217, 0.95);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(231, 226, 217, 0.95);
    border-radius: var(--radius-sm);
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(47, 107, 255, 0.10);
    border: 1px solid rgba(47, 107, 255, 0.18);
    flex-shrink: 0;
    font-size: 18px;
}

.trust-text strong {
    display: block;
    font-size: 13px;
}

.trust-text span {
    display: block;
    color: var(--text-muted);
    font-size: 12.5px;
    font-weight: 650;
}

/* ==========================================================================
   20. GRIDS
   ========================================================================== */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

/* ==========================================================================
   21. PFLEGEGELD CARDS
   ========================================================================== */

.pflege-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.pg {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(231, 226, 217, 0.95);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.pg .n {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(47, 107, 255, 0.10);
    border: 1px solid rgba(47, 107, 255, 0.18);
    font-weight: 900;
    font-size: 16px;
}

.pg .points {
    color: var(--text-muted);
    font-weight: 750;
    font-size: 12.5px;
}

.pg .money {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 950;
}

.pg .money small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 750;
    margin-top: 2px;
}

/* ==========================================================================
   22. STEPS
   ========================================================================== */

.step {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(231, 226, 217, 0.95);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 176, 32, 0.15);
    border: 1px solid rgba(255, 176, 32, 0.25);
    font-weight: 900;
}

.step h3 {
    margin: 10px 0 6px;
    font-size: 15px;
}

.step p {
    margin: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   23. CONVERSATION WIDGET
   ========================================================================== */

.conversation {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(231, 226, 217, 0.95);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.q {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.bubble {
    background: rgba(47, 107, 255, 0.10);
    border: 1px solid rgba(47, 107, 255, 0.18);
    padding: 10px 12px;
    border-radius: 16px;
    color: var(--brand-2);
    font-weight: 800;
    font-size: 14px;
    max-width: 720px;
}

.answers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 0;
}

.answers button {
    border-radius: var(--radius-pill);
    border: 1px solid rgba(231, 226, 217, 0.95);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 800;
    color: var(--text);
    font-family: inherit;
    transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base);
}

.answers button:hover {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.98);
}

.answers button:active {
    transform: translateY(1px);
}

.answers button.selected {
    border-color: rgba(47, 107, 255, 0.28);
    background: rgba(47, 107, 255, 0.10);
    color: var(--brand-2);
}

.conv-result {
    margin-top: 14px;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(231, 226, 217, 0.95);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-muted);
    font-weight: 650;
}

.conv-result strong {
    color: var(--text);
}

/* ==========================================================================
   24. SECTIONS
   ========================================================================== */

.section {
    padding: 34px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.section-head h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.3px;
}

.subtitle {
    margin: 0;
    color: var(--text-muted);
    font-weight: 650;
}

.lead {
    margin: 0 0 18px;
    color: var(--text-muted);
    font-size: 16px;
}

/* Problem Section */
.problem {
    padding: 18px 0 14px;
}

.problem-box {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(231, 226, 217, 0.95);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.problem-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 176, 32, 0.16);
    border: 1px solid rgba(255, 176, 32, 0.25);
    flex-shrink: 0;
    font-size: 20px;
}

.problem-box h2 {
    margin: 0 0 6px;
    font-size: 18px;
}

.problem-box p {
    margin: 0;
}

/* ==========================================================================
   25. HERO
   ========================================================================== */

.hero {
    padding: 54px 0 26px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: start;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* ==========================================================================
   26. WISSEN CARDS
   ========================================================================== */

.wissen-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.wissen-card a {
    display: inline-flex;
    margin-top: 10px;
    color: var(--brand-2);
    font-weight: 900;
}

/* ==========================================================================
   27. WAITLIST
   ========================================================================== */

.waitlist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
    margin-top: 14px;
}

.form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.fineprint {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12.5px;
    font-weight: 650;
}

.update-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ==========================================================================
   28. STICKY MOBILE CTA
   ========================================================================== */

.sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(231, 226, 217, 0.95);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 10px;
    display: none;
    z-index: 120;
}

.sticky-inner {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.sticky .mini {
    color: var(--text-muted);
    font-size: 12.5px;
    font-weight: 800;
}

.sticky .btn {
    padding: 12px 14px;
    border-radius: 16px;
}

/* ==========================================================================
   29. LINKS
   ========================================================================== */

.content-card a,
.card a {
    color: var(--primary);
    text-decoration: none;
}

.content-card a:hover,
.card a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   30. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet (max 980px) */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    
    .pflege-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .wissen-grid {
        grid-template-columns: 1fr;
    }
    
    .waitlist {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .sticky {
        display: block;
    }
}

/* Tablet (max 768px) */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile (max 600px) */
@media (max-width: 600px) {
    .nav {
        padding: 12px 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .page-header {
        padding: 120px 16px 40px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .content {
        padding: 0 16px 60px;
    }
    
    .content-card {
        padding: 32px 24px;
    }
    
    .hero {
        padding: 40px 0 20px;
    }
    
    .hero-card {
        padding: 20px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .pflege-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 32px 16px;
    }
    
    .footer-links a {
        margin: 0 8px;
        font-size: 13px;
    }
    
    .breadcrumb {
        margin-top: 80px;
        padding: 0 16px;
    }
}

/* ==========================================================================
   31. PRINT STYLES
   ========================================================================== */

@media print {
    .nav,
    .topbar,
    .sticky,
    .footer {
        display: none;
    }
    
    .page-header {
        padding-top: 20px;
    }
    
    .content-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    body {
        background: white;
    }
}

/* ==========================================================================
   32. DARK MODE PREPARATION (Future)
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    /* 
     * Dark mode variables können hier definiert werden
     * Aktuell nicht aktiviert - für zukünftige Implementierung
     */
}