        .breadcrumb { background: #fff; }

        /* ============================================
           HERO - Regional Network Design
           ============================================ */
        .page-hero {
            padding: 100px 56px 80px;
            background: linear-gradient(135deg, #0a0f14 0%, #0d1a24 50%, #0a1520 100%);
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(0,177,235,0.12) 0%, transparent 60%);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0,177,235,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Grid Pattern */
        .hero-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(0,177,235,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,177,235,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.5;
        }

        .hero-container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* Left Content */
        .hero-content {
            position: relative;
        }
        .hero-location-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0,177,235,0.1);
            border: 1px solid rgba(0,177,235,0.2);
            padding: 8px 16px;
            margin-bottom: 28px;
            font-size: 12px;
            font-weight: 600;
            color: #00B1EB;
        }
        .hero-location-tag svg {
            width: 14px;
            height: 14px;
        }
        .page-hero h1 {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1.1;
            margin-bottom: 8px;
            color: #fff;
        }
        .hero-location-highlight {
            display: block;
            color: #00B1EB;
            font-size: 56px;
        }
        .hero-tagline {
            font-size: 20px;
            font-weight: 500;
            color: rgba(255,255,255,0.5);
            margin-bottom: 28px;
            letter-spacing: -0.3px;
        }
        .hero-description {
            font-size: 17px;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 36px;
            max-width: 520px;
        }

        /* Phone CTA */
        .hero-phone {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 36px;
            padding: 20px 24px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
        }
        .hero-phone-icon {
            width: 52px;
            height: 52px;
            background: #00B1EB;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .hero-phone-icon svg {
            width: 24px;
            height: 24px;
            color: #fff;
        }
        .hero-phone-text {
            flex: 1;
        }
        .hero-phone-label {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }
        .hero-phone-number {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: color 0.2s;
        }
        .hero-phone-number:hover {
            color: #00B1EB;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: #00B1EB;
            color: #fff;
            padding: 18px 36px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: #0095c8;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,177,235,0.3);
        }
        .btn-primary svg {
            width: 18px;
            height: 18px;
        }
        .btn-secondary {
            background: transparent;
            color: #fff;
            padding: 18px 36px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.25);
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            border-color: #00B1EB;
            color: #00B1EB;
            background: rgba(0,177,235,0.05);
        }

        /* Right Visual - Regional Network Map */
        .hero-visual {
            position: relative;
        }
        .region-map {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            max-width: 480px;
            margin: 0 auto;
        }

        /* Connection Lines */
        .map-connections {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        .connection-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, rgba(0,177,235,0.1), rgba(0,177,235,0.4), rgba(0,177,235,0.1));
            transform-origin: left center;
            animation: pulse-line 3s ease-in-out infinite;
        }
        .connection-line::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: #00B1EB;
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-line {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        @keyframes pulse-dot {
            0%, 100% { transform: translateY(-50%) scale(1); }
            50% { transform: translateY(-50%) scale(1.5); }
        }

        /* City Nodes */
        .city-node {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            transform: translate(-50%, -50%);
        }
        .city-dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.3);
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 50%;
            transition: all 0.3s;
        }
        .city-name {
            font-size: 11px;
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }
        .city-node:hover .city-dot {
            background: #00B1EB;
            border-color: #00B1EB;
            transform: scale(1.3);
        }
        .city-node:hover .city-name {
            color: #00B1EB;
        }

        /* Central Hub */
        .city-hub {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .hub-ring {
            width: 140px;
            height: 140px;
            border: 2px solid rgba(0,177,235,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: rotate-ring 20s linear infinite;
        }
        .hub-ring::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 50%;
            width: 8px;
            height: 8px;
            background: #00B1EB;
            border-radius: 50%;
            transform: translateX(-50%);
        }
        @keyframes rotate-ring {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .hub-inner {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #00B1EB 0%, #0095c8 100%);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 40px rgba(0,177,235,0.4);
            animation: pulse-hub 3s ease-in-out infinite;
        }
        @keyframes pulse-hub {
            0%, 100% { box-shadow: 0 0 40px rgba(0,177,235,0.4); }
            50% { box-shadow: 0 0 60px rgba(0,177,235,0.6); }
        }
        .hub-inner svg {
            width: 28px;
            height: 28px;
            color: #fff;
            margin-bottom: 4px;
        }
        .hub-text {
            font-size: 10px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hub-label {
            margin-top: 16px;
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .hub-sublabel {
            font-size: 11px;
            color: rgba(255,255,255,0.5);
            margin-top: 4px;
        }

        /* Trust Badges */
        .hero-trust-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 48px;
            padding: 24px 56px;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255,255,255,0.05);
            z-index: 3;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255,255,255,0.7);
        }
        .trust-badge svg {
            width: 20px;
            height: 20px;
            color: #10b981;
        }

        /* Stats Bar */
        .stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: #fff;
            border-bottom: 1px solid #e8eaed;
        }
        .stat-item {
            padding: 28px 24px;
            text-align: center;
            border-right: 1px solid #e8eaed;
        }
        .stat-item:last-child {
            border-right: none;
        }
        .stat-value {
            font-size: 32px;
            font-weight: 700;
            color: #0a0f14;
        }
        .stat-value span {
            color: #00B1EB;
        }
        .stat-label {
            font-size: 12px;
            color: #5f6368;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
        }

        /* ============================================
           SERVICES
           ============================================ */
        .services-section {
            padding: 80px 56px;
            background: #fff;
        }
        .section-header {
            max-width: 700px;
            margin-bottom: 48px;
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #00B1EB;
            margin-bottom: 16px;
        }
        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: #00B1EB;
        }
        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #0a0f14;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .section-description {
            font-size: 17px;
            color: #5f6368;
            line-height: 1.7;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .service-card {
            background: #f8f9fa;
            border: 1px solid #e8eaed;
            padding: 32px;
            transition: all 0.3s ease;
        }
        .service-card:hover {
            background: #fff;
            border-color: #00B1EB;
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        }
        .service-icon {
            width: 52px;
            height: 52px;
            background: rgba(0,177,235,0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .service-icon svg {
            width: 26px;
            height: 26px;
            color: #00B1EB;
        }
        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #0a0f14;
            margin-bottom: 12px;
        }
        .service-card p {
            font-size: 14px;
            color: #5f6368;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .service-techs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }
        .tech-tag {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            background: rgba(0,177,235,0.1);
            color: #00B1EB;
        }
        .service-link {
            font-size: 14px;
            font-weight: 600;
            color: #00B1EB;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .service-link svg {
            width: 16px;
            height: 16px;
        }
        .service-link:hover {
            gap: 10px;
        }

        /* ============================================
           PROBLEMS SECTION
           ============================================ */
        .problems-section {
            padding: 80px 56px;
            background: #f8f9fa;
        }
        .problems-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .problem-card {
            background: #fff;
            border: 1px solid #e8eaed;
            padding: 28px;
            display: flex;
            gap: 20px;
            transition: all 0.3s;
        }
        .problem-card:hover {
            border-color: #00B1EB;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.06);
        }
        .problem-number {
            font-size: 36px;
            font-weight: 800;
            color: rgba(0,177,235,0.15);
            line-height: 1;
            flex-shrink: 0;
        }
        .problem-content h3 {
            font-size: 17px;
            font-weight: 700;
            color: #0a0f14;
            margin-bottom: 8px;
        }
        .problem-content p {
            font-size: 14px;
            color: #5f6368;
            line-height: 1.7;
        }

        /* ============================================
           REGIONS
           ============================================ */
        .regions-section {
            padding: 80px 56px;
            background: #fff;
        }
        .regions-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .regions-content h2 {
            font-size: 32px;
            font-weight: 700;
            color: #0a0f14;
            margin-bottom: 20px;
        }
        .regions-content p {
            font-size: 16px;
            color: #5f6368;
            line-height: 1.8;
            margin-bottom: 24px;
        }
        .region-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .region-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: #3c4043;
        }
        .region-item svg {
            width: 18px;
            height: 18px;
            color: #00B1EB;
        }
        .regions-visual {
            background: linear-gradient(135deg, #0a0f14 0%, #1a2530 100%);
            padding: 40px;
            border-radius: 16px;
            position: relative;
        }
        .regions-visual::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0,177,235,0.15) 0%, transparent 70%);
        }
        .distance-list {
            position: relative;
            z-index: 1;
        }
        .distance-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .distance-item:last-child {
            border-bottom: none;
        }
        .distance-city {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }
        .distance-km {
            font-size: 14px;
            color: #00B1EB;
            font-weight: 500;
        }

        /* ============================================
           WHY US
           ============================================ */
        .why-section {
            padding: 80px 56px;
            background: #f8f9fa;
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        .why-card {
            text-align: center;
            padding: 32px 24px;
            background: #fff;
            border: 1px solid #e8eaed;
        }
        .why-number {
            font-size: 48px;
            font-weight: 800;
            color: #00B1EB;
            margin-bottom: 16px;
        }
        .why-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #0a0f14;
            margin-bottom: 12px;
        }
        .why-card p {
            font-size: 14px;
            color: #5f6368;
            line-height: 1.6;
        }

        /* ============================================
           LEAD CAPTURE
           ============================================ */
        .lead-section {
            padding: 64px 56px;
            background: linear-gradient(135deg, #00B1EB 0%, #0095c8 100%);
            position: relative;
            overflow: hidden;
        }
        .lead-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }
        .lead-container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: center;
        }
        .lead-content h2 {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .lead-content p {
            font-size: 17px;
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .lead-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .lead-benefit {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            color: #fff;
        }
        .lead-benefit svg {
            width: 18px;
            height: 18px;
            color: #fff;
        }
        .lead-form {
            background: #fff;
            padding: 32px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }
        .lead-form-title {
            font-size: 18px;
            font-weight: 700;
            color: #0a0f14;
            margin-bottom: 20px;
            text-align: center;
        }
        .lead-form-field {
            margin-bottom: 16px;
        }
        .lead-form-field input,
        .lead-form-field select,
        .lead-form-field textarea {
            width: 100%;
            padding: 14px 16px;
            font-size: 14px;
            border: 1px solid #e8eaed;
            background: #f8f9fa;
            font-family: inherit;
            box-sizing: border-box;
        }
        .lead-form-field input:focus,
        .lead-form-field select:focus,
        .lead-form-field textarea:focus {
            outline: none;
            border-color: #00B1EB;
            background: #fff;
        }
        .lead-form-submit {
            width: 100%;
            padding: 16px;
            background: #00B1EB;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }
        .lead-form-submit:hover {
            background: #0095c8;
        }
        .lead-form-note {
            font-size: 12px;
            color: #5f6368;
            text-align: center;
            margin-top: 12px;
        }

        /* ============================================
           CTA
           ============================================ */
        .cta-section {
            padding: 80px 56px;
            background: linear-gradient(135deg, #0a0f14 0%, #1a2530 100%);
            text-align: center;
        }
        .cta-section h2 {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .cta-section p {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-btn-primary {
            background: #00B1EB;
            color: #fff;
            padding: 18px 36px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }
        .cta-btn-primary:hover {
            background: #0095c8;
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0,177,235,0.3);
        }
        .cta-btn-primary svg {
            width: 20px;
            height: 20px;
        }
        .cta-btn-secondary {
            background: transparent;
            color: #fff;
            padding: 18px 36px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s;
        }
        .cta-btn-secondary:hover {
            background: rgba(255,255,255,0.05);
            border-color: #fff;
        }
        .cta-contact {
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .cta-contact-label {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 8px;
        }
        .cta-phone {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }
        .cta-phone:hover {
            color: #00B1EB;
        }

        /* ============================================
           FAQ
           ============================================ */
        .faq-section {
            padding: 80px 56px;
            background: #fff;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 1000px;
        }
        .faq-item {
            background: #f8f9fa;
            border: 1px solid #e8eaed;
            padding: 28px;
        }
        .faq-item h3 {
            font-size: 16px;
            font-weight: 700;
            color: #0a0f14;
            margin-bottom: 12px;
        }
        .faq-item p {
            font-size: 14px;
            color: #5f6368;
            line-height: 1.7;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .hero-container { grid-template-columns: 1fr; gap: 48px; }
            .hero-visual { order: -1; }
            .region-map { max-width: 360px; }
            .hero-trust-bar { flex-wrap: wrap; gap: 24px; }
            .lead-container { grid-template-columns: 1fr; }
            .lead-form { max-width: 500px; margin: 0 auto; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .regions-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .problems-grid { grid-template-columns: 1fr; }
            .faq-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .page-hero { padding: 48px 24px 120px; }
            .page-hero h1 { font-size: 32px; }
            .hero-location-highlight { font-size: 40px; }
            .hero-phone { flex-direction: column; text-align: center; padding: 16px; }
            .hero-phone-number { font-size: 22px; }
            .hero-ctas { flex-direction: column; }
            .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
            .region-map { max-width: 280px; }
            .hub-ring { width: 100px; height: 100px; }
            .hub-inner { width: 70px; height: 70px; }
            .hub-inner svg { width: 20px; height: 20px; }
            .city-name { font-size: 9px; }
            .hero-trust-bar { flex-direction: column; gap: 16px; padding: 20px 24px; }
            .stats-bar { grid-template-columns: repeat(2, 1fr); }
            .stat-item { border-bottom: 1px solid #e8eaed; }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
            .services-section { padding: 48px 24px; }
            .services-grid { grid-template-columns: 1fr; }
            .problems-section { padding: 48px 24px; }
            .regions-section { padding: 48px 24px; }
            .region-list { grid-template-columns: 1fr; }
            .why-section { padding: 48px 24px; }
            .why-grid { grid-template-columns: 1fr; }
            .lead-section { padding: 48px 24px; }
            .cta-section { padding: 48px 24px; }
            .cta-section h2 { font-size: 28px; }
            .cta-buttons { flex-direction: column; }
            .cta-btn-primary, .cta-btn-secondary { width: 100%; justify-content: center; }
            .faq-section { padding: 48px 24px; }
        }

/* ============================================
   INNOVATION COMPONENTS – v2 Redesign
   ============================================ */

/* — Wirtschafts-Pulse-Bar — */
.pulse-bar {
    background: #fff;
    border-bottom: 1px solid #e8eaed;
    padding: 32px 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pulse-card {
    border-left: 3px solid #00B1EB;
    padding: 8px 0 8px 18px;
}
.pulse-card-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5f6368;
    margin-bottom: 6px;
}
.pulse-card-value {
    font-size: 22px;
    font-weight: 800;
    color: #0a0f14;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 4px;
}
.pulse-card-context {
    font-size: 12px;
    color: #5f6368;
    line-height: 1.4;
}

/* — Industry Tabs (Branchen-Switcher) — */
.industry-section {
    padding: 96px 56px;
    background: #f8f9fa;
}
.industry-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 32px 0 40px;
    border-bottom: 1px solid #e8eaed;
}
.industry-tab-btn {
    background: transparent;
    border: none;
    padding: 14px 22px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #5f6368;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all .2s;
    position: relative;
}
.industry-tab-btn:hover {
    color: #0a0f14;
}
.industry-tab-btn[aria-selected="true"] {
    color: #00B1EB;
    border-bottom-color: #00B1EB;
}
.industry-tab-btn .tab-count {
    display: inline-block;
    margin-left: 8px;
    background: rgba(0,177,235,0.1);
    color: #00B1EB;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}
.industry-panel {
    display: none;
    background: #fff;
    border: 1px solid #e8eaed;
    padding: 40px;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}
.industry-panel[data-active="true"] {
    display: grid;
}
.industry-panel-title {
    font-size: 24px;
    font-weight: 700;
    color: #0a0f14;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.industry-panel-lead {
    font-size: 15px;
    color: #5f6368;
    line-height: 1.65;
    margin-bottom: 24px;
}
.industry-pain-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.industry-pain-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 14px;
    color: #0a0f14;
    line-height: 1.55;
    border-bottom: 1px solid #f0f2f4;
}
.industry-pain-list li:last-child { border-bottom: none; }
.industry-pain-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 14px;
    height: 14px;
    border: 2px solid #00B1EB;
    border-radius: 50%;
    background: #fff;
}
.industry-panel-side {
    background: #f8f9fa;
    padding: 24px;
    border-left: 3px solid #00B1EB;
}
.industry-side-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5f6368;
    margin-bottom: 12px;
}
.industry-side-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}
.industry-stack-tag {
    font-size: 12px;
    font-weight: 600;
    background: #fff;
    border: 1px solid #e8eaed;
    color: #0a0f14;
    padding: 5px 10px;
}
.industry-side-case {
    font-size: 13px;
    color: #0a0f14;
    line-height: 1.55;
    border-top: 1px solid #e8eaed;
    padding-top: 16px;
}
.industry-side-case strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00B1EB;
    margin-bottom: 6px;
}

/* — Compliance Matrix — */
.compliance-section {
    padding: 96px 56px;
    background: #fff;
}
.compliance-table-wrap {
    margin-top: 32px;
    border: 1px solid #e8eaed;
    overflow-x: auto;
}
.compliance-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 700px;
}
.compliance-table th {
    background: #0a0f14;
    color: #fff;
    text-align: left;
    padding: 16px 18px;
    font-weight: 600;
    font-size: 13px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.compliance-table th:last-child { border-right: none; }
.compliance-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #e8eaed;
    border-right: 1px solid #e8eaed;
    color: #0a0f14;
    vertical-align: middle;
}
.compliance-table td:last-child { border-right: none; }
.compliance-table tr:last-child td { border-bottom: none; }
.compliance-table td:first-child {
    font-weight: 600;
    background: #f8f9fa;
}
.compliance-cell-yes {
    text-align: center;
    color: #00B1EB;
    font-weight: 700;
    font-size: 18px;
}
.compliance-cell-yes::before { content: '●'; }
.compliance-cell-partial {
    text-align: center;
    color: #5f6368;
    font-weight: 700;
    font-size: 18px;
}
.compliance-cell-partial::before { content: '◐'; }
.compliance-cell-no {
    text-align: center;
    color: #d0d4d8;
    font-weight: 700;
    font-size: 18px;
}
.compliance-cell-no::before { content: '○'; }
.compliance-legend {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    font-size: 12px;
    color: #5f6368;
}
.compliance-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* — Service Bento Grid — */
.bento-section {
    padding: 96px 56px;
    background: #f8f9fa;
}
.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 40px;
}
.bento-tile {
    background: #fff;
    border: 1px solid #e8eaed;
    padding: 28px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.bento-tile:hover {
    border-color: #00B1EB;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,177,235,0.12);
}
.bento-tile--master {
    grid-row: span 2;
    background: linear-gradient(135deg, #0a0f14 0%, #1a2530 100%);
    color: #fff;
    padding: 40px;
}
.bento-tile--master::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,177,235,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.bento-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,177,235,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.bento-icon svg { width: 22px; height: 22px; color: #00B1EB; }
.bento-tile--master .bento-icon { background: rgba(0,177,235,0.18); }
.bento-tile h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}
.bento-tile--master h3 { font-size: 26px; line-height: 1.2; margin-bottom: 16px; }
.bento-tile p {
    font-size: 13px;
    line-height: 1.55;
    color: #5f6368;
    margin: 0;
    position: relative;
    z-index: 1;
}
.bento-tile--master p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.bento-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00B1EB;
    margin-bottom: 8px;
}
.bento-arrow {
    margin-top: auto;
    padding-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #00B1EB;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* — Vorher/Nachher Vergleich — */
.compare-section {
    padding: 96px 56px;
    background: #fff;
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 40px;
    border: 1px solid #e8eaed;
}
.compare-col {
    padding: 36px 32px;
}
.compare-col--before {
    background: #fafafa;
    border-right: 1px solid #e8eaed;
}
.compare-col--after {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2530 100%);
    color: #fff;
    position: relative;
}
.compare-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    margin-bottom: 18px;
}
.compare-col--before .compare-label {
    background: #e8eaed;
    color: #5f6368;
}
.compare-col--after .compare-label {
    background: rgba(0,177,235,0.18);
    color: #00B1EB;
}
.compare-headline {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.4px;
}
.compare-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 14px 0;
    border-bottom: 1px solid;
    border-color: #e8eaed;
    font-size: 14px;
    line-height: 1.5;
}
.compare-col--after .compare-row { border-color: rgba(255,255,255,0.1); }
.compare-row:last-child { border-bottom: none; }
.compare-metric-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #5f6368;
}
.compare-col--after .compare-metric-label { color: rgba(255,255,255,0.5); }
.compare-metric-value {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.compare-col--before .compare-metric-value { color: #0a0f14; }
.compare-col--after .compare-metric-value { color: #00B1EB; }

/* — Tech Stack Strip — */
.techstack-section {
    padding: 64px 56px;
    background: #0a0f14;
    color: #fff;
    text-align: center;
}
.techstack-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    margin-bottom: 24px;
}
.techstack-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.techstack-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px 14px;
    text-align: center;
    transition: all .2s;
}
.techstack-item:hover {
    border-color: rgba(0,177,235,0.4);
    background: rgba(0,177,235,0.06);
}
.techstack-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.techstack-desc {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
}

/* — Erste-Woche-Timeline — */
.timeline-section {
    padding: 96px 56px;
    background: #f8f9fa;
}
.week-timeline {
    margin-top: 48px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.week-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e8eaed;
    z-index: 0;
}
.week-step {
    position: relative;
    padding: 0 16px;
    text-align: left;
    z-index: 1;
}
.week-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #00B1EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #00B1EB;
    margin-bottom: 20px;
    box-shadow: 0 0 0 8px #f8f9fa;
}
.week-day {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00B1EB;
    margin-bottom: 6px;
}
.week-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a0f14;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.week-step p {
    font-size: 13px;
    color: #5f6368;
    line-height: 1.55;
    margin: 0;
}

/* — Anti-Marketing-Block — */
.anti-section {
    padding: 96px 56px;
    background: #fff;
}
.anti-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 40px;
}
.anti-item {
    border: 1px solid #e8eaed;
    padding: 24px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.anti-item-x {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 2px solid #d0d4d8;
    color: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}
.anti-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0a0f14;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}
.anti-item p {
    font-size: 13px;
    color: #5f6368;
    line-height: 1.55;
    margin: 0;
}

/* — Case-Snapshot — */
.case-section {
    padding: 96px 56px;
    background: linear-gradient(135deg, #0a0f14 0%, #1a2530 50%, #0a0f14 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.case-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,177,235,0.1) 0%, transparent 60%);
}
.case-section .section-label {
    color: #00B1EB;
}
.case-section .section-title { color: #fff; }
.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}
.case-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px;
    backdrop-filter: blur(8px);
}
.case-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(0,177,235,0.15);
    color: #00B1EB;
    padding: 5px 12px;
    margin-bottom: 18px;
}
.case-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.case-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin: 0 0 20px;
}
.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.case-result-value {
    font-size: 22px;
    font-weight: 800;
    color: #00B1EB;
    letter-spacing: -0.5px;
}
.case-result-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    margin-top: 2px;
}

/* — Responsive — */
@media (max-width: 1024px) {
    .pulse-bar { grid-template-columns: repeat(2, 1fr); padding: 24px 32px; }
    .industry-section, .compliance-section, .bento-section, .compare-section, .timeline-section, .anti-section, .case-section { padding: 64px 32px; }
    .industry-panel { grid-template-columns: 1fr; padding: 28px; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-tile--master { grid-column: span 2; grid-row: auto; }
    .compare-grid { grid-template-columns: 1fr; }
    .compare-col--before { border-right: none; border-bottom: 1px solid #e8eaed; }
    .week-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .week-timeline::before { display: none; }
    .anti-grid { grid-template-columns: 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .techstack-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .pulse-bar { grid-template-columns: 1fr; padding: 20px 20px; }
    .industry-section, .compliance-section, .bento-section, .compare-section, .timeline-section, .anti-section, .case-section { padding: 48px 20px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-tile--master { grid-column: auto; }
    .industry-tabs__nav { gap: 4px; }
    .industry-tab-btn { padding: 12px 14px; font-size: 13px; }
    .compare-headline { font-size: 19px; }
    .week-timeline { grid-template-columns: 1fr; gap: 28px; }
    .techstack-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .case-results { grid-template-columns: 1fr; }
}

/* ============================================
   INNOVATION COMPONENTS – v3 Research-Driven
   ============================================ */

/* — Hero Eyebrow + Live-Status — */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
}
.hero-eyebrow span:not(:first-child)::before {
    content: '·';
    margin-right: 10px;
    color: rgba(255,255,255,0.3);
}
.hero-live-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.25);
    padding: 8px 14px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.hero-live-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.hero-live-status strong { color: #10b981; font-weight: 700; }

/* — Trust-KPI-Bar (ersetzt Stats) — */
.trust-kpi-bar {
    background: #0a0f14;
    color: #fff;
    padding: 36px 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.kpi-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 8px 0;
}
.kpi-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(0,177,235,0.12);
    border: 1px solid rgba(0,177,235,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.kpi-icon svg { width: 18px; height: 18px; color: #00B1EB; }
.kpi-text { flex: 1; }
.kpi-value {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 4px;
    color: #fff;
}
.kpi-value sup { font-size: 14px; color: #00B1EB; margin-left: 2px; }
.kpi-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

/* — Geschäftsführer-Statement — */
.gf-section {
    padding: 96px 56px;
    background: #fff;
}
.gf-card {
    max-width: 1100px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: stretch;
    border: 1px solid #e8eaed;
    overflow: hidden;
}
.gf-photo {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2530 100%);
    color: #fff;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    min-height: 280px;
}
.gf-photo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(0,177,235,0.15) 0%, transparent 60%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 280"><circle cx="100" cy="100" r="60" fill="rgba(255,255,255,0.05)"/><path d="M100 165 Q60 165 60 220 L60 280 L140 280 L140 220 Q140 165 100 165 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat center;
    background-size: 70%;
    pointer-events: none;
}
.gf-photo-content { position: relative; z-index: 1; }
.gf-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}
.gf-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}
.gf-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gf-quote {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.45;
    color: #0a0f14;
    letter-spacing: -0.4px;
    margin: 0 0 18px;
    position: relative;
    padding-left: 28px;
}
.gf-quote::before {
    content: '\201C';
    position: absolute;
    left: -4px;
    top: -12px;
    font-size: 60px;
    color: #00B1EB;
    line-height: 1;
    font-family: Georgia, serif;
}
.gf-meta {
    font-size: 13px;
    color: #5f6368;
    line-height: 1.6;
}

/* — Partner-Logo-Strip — */
.partner-section {
    padding: 56px 56px;
    background: #f8f9fa;
    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed;
}
.partner-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #5f6368;
    margin-bottom: 28px;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.partner-tile {
    background: #fff;
    border: 1px solid #e8eaed;
    padding: 22px 16px;
    text-align: center;
    transition: all .2s;
}
.partner-tile:hover {
    border-color: rgba(0,177,235,0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}
.partner-name {
    font-size: 14px;
    font-weight: 700;
    color: #0a0f14;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}
.partner-tier {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #00B1EB;
    font-weight: 600;
}

/* — Pricing-Kalkulator — */
.calc-section {
    padding: 96px 56px;
    background: linear-gradient(135deg, #0a0f14 0%, #0d1a24 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.calc-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,177,235,0.1) 0%, transparent 60%);
}
.calc-section .section-label { color: #00B1EB; }
.calc-section .section-title { color: #fff; }
.calc-section .section-description { color: rgba(255,255,255,0.7); }
.calc-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.calc-controls {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px;
}
.calc-control { margin-bottom: 28px; }
.calc-control:last-child { margin-bottom: 0; }
.calc-control label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}
.calc-control label span {
    font-size: 18px;
    color: #00B1EB;
    text-transform: none;
    letter-spacing: -0.3px;
    font-weight: 800;
}
.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    outline: none;
    border-radius: 3px;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00B1EB;
    cursor: pointer;
    border: 3px solid #0a0f14;
    box-shadow: 0 0 0 1px #00B1EB;
}
.calc-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00B1EB;
    cursor: pointer;
    border: 3px solid #0a0f14;
    box-shadow: 0 0 0 1px #00B1EB;
}
.calc-select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300B1EB' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.calc-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.calc-check {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all .15s;
    font-size: 13px;
}
.calc-check:hover { background: rgba(0,177,235,0.08); border-color: rgba(0,177,235,0.3); }
.calc-check input {
    appearance: none;
    width: 14px;
    height: 14px;
    border: 1.5px solid rgba(255,255,255,0.4);
    margin: 0;
    cursor: pointer;
    position: relative;
}
.calc-check input:checked {
    background: #00B1EB;
    border-color: #00B1EB;
}
.calc-check input:checked::after {
    content: '✓';
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    top: -2px;
    left: 1px;
}
.calc-result {
    background: rgba(0,177,235,0.06);
    border: 1px solid rgba(0,177,235,0.25);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.calc-result-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    margin-bottom: 12px;
}
.calc-result-range {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 8px;
}
.calc-result-range strong { color: #00B1EB; font-weight: 800; }
.calc-result-unit {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}
.calc-result-breakdown {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}
.calc-result-breakdown div {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}
.calc-disclaimer {
    margin-top: 18px;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* — Testimonials — */
.testi-section {
    padding: 96px 56px;
    background: #f8f9fa;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.testi-card {
    background: #fff;
    border: 1px solid #e8eaed;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all .2s;
}
.testi-card:hover {
    border-color: #00B1EB;
    box-shadow: 0 12px 28px rgba(0,177,235,0.08);
}
.testi-stars {
    color: #00B1EB;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testi-quote {
    font-size: 15px;
    line-height: 1.6;
    color: #0a0f14;
    font-weight: 500;
    margin: 0 0 24px;
    flex: 1;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #e8eaed;
    padding-top: 18px;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00B1EB 0%, #0095c8 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.testi-meta {
    flex: 1;
    min-width: 0;
}
.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: #0a0f14;
}
.testi-position {
    font-size: 12px;
    color: #5f6368;
    line-height: 1.4;
}

/* — Lead-Magnet-Block — */
.magnet-section {
    padding: 80px 56px;
    background: #fff;
    border-top: 1px solid #e8eaed;
}
.magnet-card {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #e8eaed;
    padding: 40px;
}
.magnet-content .section-label { margin-bottom: 12px; }
.magnet-content h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0a0f14;
    margin: 0 0 12px;
    line-height: 1.2;
}
.magnet-content p {
    font-size: 15px;
    color: #5f6368;
    line-height: 1.6;
    margin: 0 0 20px;
}
.magnet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 13px;
    color: #0a0f14;
}
.magnet-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.magnet-list li::before {
    content: '✓';
    color: #00B1EB;
    font-weight: 700;
    font-size: 14px;
}
.magnet-visual {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2530 100%);
    color: #fff;
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.magnet-visual::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0,177,235,0.2) 0%, transparent 60%);
}
.magnet-pdf-icon {
    width: 56px;
    height: 70px;
    background: #fff;
    border-radius: 4px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #00B1EB;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}
.magnet-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}
.magnet-pages {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.magnet-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00B1EB;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: background .2s;
    position: relative;
    z-index: 1;
}
.magnet-btn:hover { background: #0095c8; }

/* — Schnupper-Angebot Block — */
.trial-section {
    padding: 80px 56px;
    background: #f8f9fa;
}
.trial-card {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #e8eaed;
    background: #fff;
}
.trial-left {
    padding: 48px;
    border-right: 1px solid #e8eaed;
}
.trial-right {
    padding: 48px;
    background: #f8f9fa;
}
.trial-headline {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.6px;
    color: #0a0f14;
    margin: 12px 0 16px;
    line-height: 1.2;
}
.trial-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.trial-bullets li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #0a0f14;
    line-height: 1.5;
    border-bottom: 1px solid #f0f2f4;
}
.trial-bullets li:last-child { border-bottom: none; }
.trial-bullets li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: #00B1EB;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 1px;
}
.trial-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid #e8eaed;
}
.trial-stat-value {
    font-size: 26px;
    font-weight: 800;
    color: #00B1EB;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 4px;
}
.trial-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5f6368;
    font-weight: 600;
}

/* — Responsive Adjustments für v3 — */
@media (max-width: 1024px) {
    .trust-kpi-bar { grid-template-columns: repeat(2, 1fr); padding: 28px 32px; gap: 20px; }
    .gf-section, .partner-section, .calc-section, .testi-section, .magnet-section, .trial-section { padding: 64px 32px; }
    .gf-card { grid-template-columns: 1fr; }
    .gf-photo { min-height: 200px; }
    .partner-grid { grid-template-columns: repeat(3, 1fr); }
    .calc-grid { grid-template-columns: 1fr; gap: 24px; }
    .testi-grid { grid-template-columns: 1fr; }
    .magnet-card { grid-template-columns: 1fr; }
    .magnet-visual { order: -1; }
    .trial-card { grid-template-columns: 1fr; }
    .trial-left { border-right: none; border-bottom: 1px solid #e8eaed; }
    .trial-left, .trial-right { padding: 32px; }
}
@media (max-width: 640px) {
    .trust-kpi-bar { grid-template-columns: 1fr; padding: 24px; }
    .gf-section, .partner-section, .calc-section, .testi-section, .magnet-section, .trial-section { padding: 48px 20px; }
    .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .calc-result-range { font-size: 30px; }
    .calc-checks { grid-template-columns: 1fr; }
    .magnet-list { grid-template-columns: 1fr; }
    .gf-quote { font-size: 18px; padding-left: 20px; }
    .trial-headline { font-size: 22px; }
    .trial-stats { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================
   v3.1 – Hero-Kompaktierung & Lesbarkeit
   ============================================ */
.page-hero {
    padding: 56px 56px 100px !important;
}
.hero-trust-bar {
    padding: 14px 32px !important;
    gap: 36px !important;
}
.page-hero h1 {
    font-size: 30px !important;
    margin-bottom: 6px !important;
}
.hero-location-highlight {
    font-size: 44px !important;
}
.hero-tagline {
    color: rgba(255,255,255,0.92) !important;
    font-size: 18px !important;
    margin-bottom: 18px !important;
}
.hero-description {
    color: rgba(255,255,255,0.92) !important;
    font-size: 15.5px !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
}
.hero-eyebrow {
    color: rgba(255,255,255,0.85) !important;
    margin-bottom: 12px !important;
}
.hero-eyebrow span:not(:first-child)::before {
    color: rgba(255,255,255,0.55) !important;
}
.hero-live-status {
    color: rgba(255,255,255,1) !important;
    margin-bottom: 18px !important;
    padding: 7px 12px !important;
    font-size: 12.5px !important;
}
.hero-phone {
    padding: 14px 18px !important;
    margin-bottom: 18px !important;
}
.hero-trust-bar {
    padding: 16px 32px !important;
}
.hero-trust-bar .trust-badge {
    color: rgba(255,255,255,0.95) !important;
    font-size: 12.5px !important;
}
@media (max-width: 1024px) {
    .page-hero { padding: 40px 28px 88px !important; }
    .hero-location-highlight { font-size: 36px !important; }
}

/* ============================================
   v3.2 – Initiativen-Section ersetzt Branchen-Tabs
   ============================================ */
.initiatives-section {
    padding: 96px 56px;
    background: #f8f9fa;
}
.initiatives-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.initiative-card {
    background: #fff;
    border: 1px solid #e8eaed;
    padding: 30px 28px;
    transition: all .25s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.initiative-card:hover {
    border-color: rgba(0,177,235,0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}
.initiative-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00B1EB;
    background: rgba(0,177,235,0.08);
    padding: 5px 10px;
    margin-bottom: 18px;
    align-self: flex-start;
}
.initiative-trend::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00B1EB;
    box-shadow: 0 0 0 0 rgba(0,177,235,0.5);
    animation: pulse-dot 2s infinite;
}
.initiative-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a0f14;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}
.initiative-card p {
    font-size: 13.5px;
    color: #5f6368;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}
.initiative-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f2f4;
    font-size: 12px;
}
.initiative-driver {
    color: #5f6368;
    font-weight: 500;
}
.initiative-driver strong {
    color: #0a0f14;
    font-weight: 700;
}
.initiative-when {
    background: #0a0f14;
    color: #fff;
    padding: 4px 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
@media (max-width: 1024px) {
    .initiatives-section { padding: 64px 32px; }
    .initiatives-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .initiatives-section { padding: 48px 20px; }
    .initiatives-grid { grid-template-columns: 1fr; }
}
