/* ============================================================
   denschLink – Projekt-spezifisches CSS
   Ausgelagert aus shared.css
   ============================================================ */

html {
            --primary: #065F46;
            --accent: #047857;
            --highlight: #10B981;
            --text: #1A1A1A;
            --text-light: #5A5A5A;
            --bg: #F8F7F4;
            --white: #FFFFFF;
        }


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


        
body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }


        
.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }


        /* Header */
        
header {
            padding: 32px 0;
            position: relative;
            z-index: 100;
        }


        
.header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }


        
.logo {
            font-family: ui-monospace, 'SF Mono', 'Monaco', 'Cascadia Code', 'Segoe UI Mono', 'Roboto Mono', 'Courier New', monospace;
            font-size: 24px;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.02em;
        }


        
.logo span {
            color: var(--accent);
        }


        /* Testphase-Banner */
        
.testphase-banner {
            background: var(--highlight);
            color: var(--primary);
            text-align: center;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 600;
            border-bottom: 2px solid rgba(10,61,61,0.15);
        }

        
.testphase-banner a {
            color: var(--primary);
            text-decoration: underline;
            font-weight: 700;
        }


        
.header-cta {
            background: var(--primary);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid var(--primary);
        }


        
.header-cta:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(10, 61, 61, 0.2);
        }


        
.header-cta-login {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 10px 22px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-right: 10px;
        }


        
.header-cta-login:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(10, 61, 61, 0.2);
        }


        /* Hero Section */
        
.hero {
            padding: 80px 0 120px;
            position: relative;
        }


        
.hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(45, 122, 95, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            animation: float 8s ease-in-out infinite;
        }


        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-20px, 30px) rotate(5deg); }
            66% { transform: translate(20px, -30px) rotate(-5deg); }
        }

        
.hero-content {
            max-width: 800px;
        }


        
.badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 32px;
            border: 2px solid var(--accent);
            animation: slideUp 0.8s ease-out;
        }


        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        
.badge::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: var(--accent);
            color: var(--white);
            border-radius: 50%;
            font-size: 12px;
        }


        
h1 {
            font-family: 'Iowan Old Style', 'Palatino Linotype', 'Palatino', 'Book Antiqua', Georgia, serif;
            font-size: 72px;
            line-height: 1.1;
            color: var(--primary);
            margin-bottom: 28px;
            letter-spacing: -0.02em;
            animation: slideUp 0.8s ease-out 0.1s both;
        }


        
h1 .highlight {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }


        
h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background: var(--highlight);
            opacity: 0.4;
            z-index: -1;
            transform: skew(-12deg);
        }


        
.hero-description {
            font-size: 20px;
            color: var(--text-light);
            margin-bottom: 48px;
            max-width: 600px;
            line-height: 1.7;
            animation: slideUp 0.8s ease-out 0.2s both;
        }


        
.cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: slideUp 0.8s ease-out 0.3s both;
        }


        
.btn {
            padding: 16px 36px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            display: inline-block;
        }


        
.btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 16px rgba(10, 61, 61, 0.25);
        }


        
.btn-primary:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(10, 61, 61, 0.35);
        }


        
.btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }


        
.btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }


        /* Features Section */
        
.features {
            padding: 100px 0;
            background: var(--white);
        }


        
.section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }


        
.section-label {
            font-family: ui-monospace, 'SF Mono', 'Monaco', 'Cascadia Code', 'Segoe UI Mono', 'Roboto Mono', 'Courier New', monospace;
            font-size: 14px;
            color: var(--accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }


        
h2 {
            font-family: 'Iowan Old Style', 'Palatino Linotype', 'Palatino', 'Book Antiqua', Georgia, serif;
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }


        
.section-description {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.7;
        }


        
.features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }


        
.feature-card {
            padding: 40px;
            background: var(--bg);
            border-radius: 16px;
            border: 2px solid transparent;
            transition: all 0.4s ease;
        }


        
.feature-card:hover {
            border-color: var(--accent);
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(10, 61, 61, 0.1);
        }


        
.feature-icon {
            width: 64px;
            height: 64px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
            transition: all 0.4s ease;
        }


        
.feature-card:hover .feature-icon {
            background: var(--accent);
            transform: rotate(5deg);
        }


        
.feature-card h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 12px;
            font-weight: 700;
        }


        
.feature-card p {
            color: var(--text-light);
            line-height: 1.6;
        }


        /* Privacy Section */
        
.privacy-section {
            padding: 100px 0;
            background: var(--primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }


        
.privacy-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 217, 61, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }


        
.privacy-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }


        
.privacy-section .section-label {
            color: var(--highlight);
        }


        
.privacy-section h2 {
            color: var(--white);
        }


        
.privacy-section .section-description {
            color: rgba(255, 255, 255, 0.9);
        }


        
.privacy-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }


        
.privacy-item {
            text-align: left;
            padding: 32px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }


        
.privacy-item h4 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--highlight);
            font-weight: 600;
        }


        
.privacy-item p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
        }


        /* CTA Section */
        
.cta-section {
            padding: 100px 0;
            text-align: center;
        }


        
.cta-box {
            background: var(--white);
            border: 3px solid var(--primary);
            border-radius: 24px;
            padding: 80px 40px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }


        
.cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 217, 61, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }


        
.cta-box h2 {
            position: relative;
            z-index: 1;
        }


        
.cta-box p {
            font-size: 18px;
            color: var(--text-light);
            margin: 24px auto 40px;
            max-width: 500px;
            position: relative;
            z-index: 1;
        }


        /* Footer */
        
footer {
            background: var(--primary);
            color: var(--white);
            padding: 60px 0 32px;
        }


        
.footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }


        
.footer-brand {
            font-family: ui-monospace, 'SF Mono', 'Monaco', 'Cascadia Code', 'Segoe UI Mono', 'Roboto Mono', 'Courier New', monospace;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
        }


        
.footer-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
        }


        
.footer-links h4 {
            font-size: 16px;
            margin-bottom: 16px;
            color: var(--highlight);
        }


        
.footer-links ul {
            list-style: none;
        }


        
.footer-links li {
            margin-bottom: 12px;
        }


        
.footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }


        
.footer-links a:hover {
            color: var(--highlight);
        }


        
.footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }


        /* Responsive */
        @media (max-width: 768px) {

              h1 {
                font-size: 42px;
            }


              h2 {
                font-size: 32px;
            }


              .hero {
                padding: 40px 0 60px;
            }


              .features,
.privacy-section,
.cta-section {
                padding: 60px 0;
            }


              .cta-group {
                flex-direction: column;
            }


              .btn {
                width: 100%;
                text-align: center;
                display: block;
            }


            /* Landing-Page-Header: auf Mobile nur Login-Button */
              .header-nav-link,
.header-cta { display: none; }

              .header-cta-login {
                padding: 8px 16px;
                font-size: 14px;
            }

            /* Sub-Page-Header: Nav-Buttons kleiner auf Mobile */
              .header-nav a {
                font-size: 12px;
                padding: 6px 12px;
            }


            /* CTA-Box: weniger Padding auf Mobile */
              .cta-box {
                padding: 48px 24px;
            }

        }

    
/* Sub-page specific styles */

    
html {
        --primary: #065F46;
        --accent: #047857;
        --highlight: #10B981;
        --text: #1A1A1A;
        --text-light: #5A5A5A;
        --bg: #F8F7F4;
        --white: #FFFFFF;
    }

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

    
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }


    
/* Sub-page header (has .header-inner wrapper) → dark primary background */
header:has(.header-inner) { background: var(--primary); padding: 20px 0; }


.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }


.logo { font-family: ui-monospace, 'SF Mono', 'Monaco', monospace; font-size: 22px; font-weight: 600; color: var(--white); text-decoration: none; }


.logo span { color: var(--highlight); }

/* Nav links on dark header → styled as small pill buttons */
.header-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.header-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.header-nav a:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}


    
.page-hero { padding: 70px 24px 50px; text-align: center; }

    
.page-label { font-family: ui-monospace, 'SF Mono', 'Monaco', monospace; font-size: 13px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }

    
h1 { font-family: 'Iowan Old Style', 'Palatino Linotype', Georgia, serif; font-size: 52px; color: var(--primary); margin-bottom: 20px; line-height: 1.15; }

    
.page-desc { font-size: 18px; color: var(--text-light); max-width: 580px; margin: 0 auto; line-height: 1.7; }


    
.faq-section { max-width: 800px; margin: 0 auto; padding: 20px 24px 80px; }


    
.faq-category { font-family: ui-monospace, 'SF Mono', 'Monaco', monospace; font-size: 12px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin: 48px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); }


    
details { background: var(--white); border-radius: 12px; margin-bottom: 12px; overflow: hidden; border: 2px solid transparent; transition: border-color 0.3s; }

    
details[open] { border-color: var(--accent); }

    
summary {
        padding: 20px 24px;
        font-size: 16px;
        font-weight: 600;
        color: var(--primary);
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    
summary::-webkit-details-marker { display: none; }

    
summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--accent); flex-shrink: 0; line-height: 1; }

    
details[open] summary::after { content: '−'; }

    
summary:hover { background: #F8F7F4; }


    
.faq-answer { padding: 0 24px 24px; font-size: 15px; color: var(--text-light); line-height: 1.75; }

    
.faq-answer p { margin-bottom: 10px; }

    
.faq-answer p:last-child { margin-bottom: 0; }

    
.faq-answer ul { margin: 10px 0 10px 20px; }

    
.faq-answer li { margin-bottom: 6px; }

    
.faq-answer a { color: var(--accent); text-decoration: none; font-weight: 500; }

    
.faq-answer a:hover { text-decoration: underline; }

    
.faq-answer strong { color: var(--text); }


    
.cta-box { background: var(--primary); color: var(--white); border-radius: 20px; padding: 48px 40px; text-align: center; max-width: 800px; margin: 0 auto 60px; }

    
.cta-box h2 { font-family: 'Iowan Old Style', 'Palatino Linotype', Georgia, serif; font-size: 32px; margin-bottom: 16px; }

    
.cta-box p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }

    
.cta-box a { display: inline-block; background: var(--highlight); color: var(--primary); padding: 14px 32px; border-radius: 10px; font-weight: 700; text-decoration: none; font-size: 15px; }


    
footer { background: var(--primary); color: var(--white); padding: 32px 0; text-align: center; }

    
.footer-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.7); }

    
.footer-inner a { color: var(--highlight); text-decoration: none; }

    
.footer-links-row { display: flex; justify-content: center; gap: 24px; margin-top: 16px; flex-wrap: wrap; }

    
.footer-links-row a { color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: none; }

    
.footer-links-row a:hover { color: var(--white); }


    @media (max-width: 768px) {

          h1 { font-size: 36px; }

          .page-hero { padding: 48px 16px 32px; }

          .faq-section { padding: 0 16px 60px; }

          .cta-box { padding: 32px 24px; }

    }

    

/* ════════════════════════════════════════════════════════════
   Theme: denschCollabs Landing Page
   ════════════════════════════════════════════════════════════ */




        
