
/*** T3SB identifier: t3sbsCSSassets_31488 */

/* t3sbs_assets_31488 */
 @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Crimson+Pro:wght@400;600&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0a4d8c;
            --primary-blue-light: #1565a8;
            --secondary-green: #00a86b;
            --accent-orange: #ff7b54;
            --accent-teal: #00b4a8;
            --text-dark: #1a1a1a;
            --text-medium: #4a4a4a;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-light: #e2e8f0;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--bg-white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1560px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Trust Bar */
        .trust-bar {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
            color: white;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 3px solid var(--accent-orange);
        }

        .trust-items {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            align-items: center;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0.95;
        }

        .trust-item strong {
            font-weight: 700;
        }

        /* Stats Header */
        .stats-header {
            background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
            padding: 25px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border-top: 3px solid var(--accent-teal);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-medium);
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0a4d8c 0%, #1565a8 50%, #00a86b 100%);
            color: white;
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: 50px 50px;
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .hero-text .highlight {
            color: var(--accent-orange);
            position: relative;
            display: inline-block;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.6;
            font-weight: 400;
        }

        .hero-features {
            list-style: none;
            margin-bottom: 2.5rem;
            display: grid;
            gap: 12px;
        }

        .hero-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.05rem;
            padding: 10px 0;
        }

        .hero-features li::before {
            content: "✓";
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: var(--secondary-green);
            color: white;
            border-radius: 50%;
            font-weight: bold;
            flex-shrink: 0;
        }

        .cta-button {
            display: inline-block;
            background: var(--accent-orange);
            color: white;
            padding: 18px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 123, 84, 0.4);
            border: 2px solid transparent;
        }

        .cta-button:hover {
            background: #ff6b44;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 123, 84, 0.5);
        }

        .hero-box {
            background: rgba(255, 255, 255, 0.15);
            padding: 35px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .hero-box h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 700;
        }

        .hero-stat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.95rem;
        }

        .hero-stat-item:last-child {
            border-bottom: none;
        }

        .hero-stat-item strong {
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Why SEO Section */
        .why-seo {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary-blue);
            text-align: center;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.15rem;
            color: var(--text-medium);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .why-card {
            background: white;
            padding: 35px;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            border-left: 5px solid var(--accent-teal);
            position: relative;
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-left-color: var(--accent-orange);
        }

        .why-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .why-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-blue);
            font-weight: 700;
        }

        .why-card p {
            color: var(--text-medium);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Medical Specific Section */
        .medical-specific {
            padding: 80px 0;
            background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
        }

        .compliance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .compliance-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            border: 2px solid var(--border-light);
            transition: all 0.3s ease;
            text-align: center;
        }

        .compliance-card:hover {
            border-color: var(--secondary-green);
            box-shadow: var(--shadow-md);
        }

        .compliance-badge {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 20px;
            font-weight: 700;
        }

        .compliance-card h4 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--primary-blue);
            font-weight: 700;
        }

        .compliance-card p {
            color: var(--text-medium);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Success Stories */
        .success-stories {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .story-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .story-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            border-top: 5px solid var(--secondary-green);
            transition: all 0.3s ease;
            position: relative;
        }

        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .story-specialty {
            display: inline-block;
            background: var(--bg-light);
            color: var(--primary-blue);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .story-title {
            color: var(--primary-blue);
            font-size: 1.4rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .story-section {
            margin-bottom: 20px;
        }

        .story-section strong {
            color: var(--text-dark);
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }

        .story-section p {
            color: var(--text-medium);
            line-height: 1.6;
        }

        .story-quote {
            font-style: italic;
            color: var(--text-medium);
            margin: 25px 0;
            padding: 20px;
            background: var(--bg-light);
            border-left: 4px solid var(--accent-orange);
            border-radius: 8px;
            position: relative;
        }

        .story-quote::before {
            content: '"';
            font-size: 4rem;
            position: absolute;
            top: -10px;
            left: 10px;
            color: var(--accent-orange);
            opacity: 0.3;
            font-family: 'Crimson Pro', serif;
        }

        .story-results {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 25px;
        }

        .result-item {
            text-align: center;
            padding: 20px 10px;
            background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
            border-radius: 12px;
            border: 2px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .result-item:hover {
            border-color: var(--secondary-green);
            transform: scale(1.05);
        }

        .result-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary-green);
            display: block;
            margin-bottom: 5px;
        }

        .result-label {
            font-size: 0.85rem;
            color: var(--text-medium);
            font-weight: 500;
        }

        /* Packages Section */
        .packages-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .package-card {
            background: white;
            border-radius: 20px;
            padding: 40px 35px;
            box-shadow: var(--shadow-md);
            border: 2px solid var(--border-light);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-blue);
        }

        .package-card.featured {
            border: 3px solid var(--accent-orange);
            box-shadow: 0 12px 40px rgba(255, 123, 84, 0.2);
            transform: scale(1.03);
        }

        .package-card.featured::before {
            content: "EMPFOHLEN";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-orange);
            color: white;
            padding: 8px 25px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .package-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 2px solid var(--bg-light);
        }

        .package-name {
            font-size: 1.1rem;
            color: var(--text-medium);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .package-title {
            color: var(--primary-blue);
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .package-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
            margin-bottom: 8px;
        }

        .package-price-note {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .package-features {
            list-style: none;
            flex-grow: 1;
            margin-bottom: 30px;
        }

        .package-features li {
            padding: 12px 0;
            border-bottom: 1px solid var(--bg-light);
            font-size: 0.95rem;
            color: var(--text-medium);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features li::before {
            content: "✓";
            color: var(--secondary-green);
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .package-button {
            width: 100%;
            padding: 15px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: block;
        }

        .package-button:hover {
            background: var(--primary-blue-light);
            transform: translateY(-2px);
        }

        .package-card.featured .package-button {
            background: var(--accent-orange);
        }

        .package-card.featured .package-button:hover {
            background: #ff6b44;
        }

        /* Add-ons Section */
        .addons-section {
            background: var(--bg-white);
            padding: 60px 0;
        }

        .addons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .addon-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            border: 2px solid var(--border-light);
            transition: all 0.3s ease;
            text-align: center;
        }

        .addon-card:hover {
            border-color: var(--accent-teal);
            box-shadow: var(--shadow-md);
        }

        .addon-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .addon-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .addon-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-green);
            margin-bottom: 15px;
        }

        .addon-features {
            list-style: none;
            text-align: left;
            font-size: 0.9rem;
            color: var(--text-medium);
        }

        .addon-features li {
            padding: 5px 0;
        }

        .addon-features li::before {
            content: "• ";
            color: var(--accent-teal);
            font-weight: bold;
        }

        /* DIGI Zuschuss */
        .digi-section {
            background: linear-gradient(135deg, var(--secondary-green) 0%, var(--accent-teal) 100%);
            color: white;
            padding: 70px 0;
            position: relative;
            overflow: hidden;
        }

        .digi-section::before {
            content: '€';
            position: absolute;
            font-size: 30rem;
            font-weight: 900;
            top: -100px;
            right: -100px;
            opacity: 0.05;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .digi-content {
            position: relative;
            z-index: 1;
        }

        .digi-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .digi-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .digi-header p {
            font-size: 1.2rem;
            opacity: 0.95;
        }

        .digi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .digi-card {
            background: rgba(255, 255, 255, 0.15);
            padding: 35px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .digi-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .digi-card ul {
            list-style: none;
        }

        .digi-card li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .digi-card li::before {
            content: "✓";
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .digi-example {
            background: rgba(255, 255, 255, 0.2);
            padding: 25px;
            border-radius: 12px;
            margin-top: 20px;
        }

        .digi-calc {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .digi-calc:last-child {
            border-bottom: none;
            border-top: 2px solid white;
            padding-top: 15px;
            font-size: 1.2rem;
            font-weight: 700;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .faq-container {
            max-width: 900px;
            margin: 50px auto 0;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            background: white;
            color: var(--primary-blue);
            padding: 25px 30px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            position: relative;
            border-left: 4px solid var(--accent-teal);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--bg-light);
        }

        .faq-question.active {
            background: var(--primary-blue);
            color: white;
            border-left-color: var(--accent-orange);
        }

        .faq-question::after {
            content: "+";
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            font-weight: 700;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            content: "−";
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-answer.active {
            padding: 25px 30px;
            max-height: 1000px;
        }

        .faq-answer p {
            color: var(--text-medium);
            line-height: 1.8;
        }

        .faq-answer strong {
            color: var(--primary-blue);
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '📱';
            position: absolute;
            font-size: 25rem;
            top: -50px;
            left: -80px;
            opacity: 0.05;
        }

        .contact-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .contact-content h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .contact-content > p {
            font-size: 1.3rem;
            margin-bottom: 50px;
            opacity: 0.95;
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            padding: 50px 45px;
            border-radius: 20px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .form-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .form-header h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .form-header p {
            font-size: 1.05rem;
            opacity: 0.9;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: rgba(255, 255, 255, 0.95);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-orange);
            background: white;
            box-shadow: 0 0 0 3px rgba(255, 123, 84, 0.2);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            background: var(--accent-orange);
            color: white;
            padding: 18px;
            border: none;
            border-radius: 8px;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 123, 84, 0.4);
        }

        .submit-btn:hover {
            background: #ff6b44;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 123, 84, 0.5);
        }

        .form-benefits {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .form-benefits div {
            margin-bottom: 8px;
        }

        .form-disclaimer {
            font-size: 0.85rem;
            margin-top: 20px;
            opacity: 0.8;
            text-align: center;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 30px 0;
            text-align: center;
        }

        .footer p {
            opacity: 0.8;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .fade-in.visible {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-features li {
                justify-content: center;
            }

            .story-grid,
            .packages-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .package-card.featured {
                transform: none;
            }

            .story-results {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .trust-items {
                gap: 20px;
                font-size: 0.85rem;
            }

            .hero-text h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .form-container {
                padding: 30px 20px;
            }
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mt-4 {
            margin-top: 2rem;
        }

        .mb-4 {
            margin-bottom: 2rem;
        }
	

