
    /* Hosting Grid Styles - angepasst an Schulungen-Design */
       .hero-1 {
		min-height:unset;
		}
    .hosting-section {
        padding: 80px 20px;
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    }

    .hosting-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .hosting-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .hosting-header h2 {
        font-size: 2.5em;
        color: #1a1a1a;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .hosting-header p {
        font-size: 1.2em;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

    .hosting-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        padding: 20px 0;
    }

    .hosting-kachel {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border: 1px solid #e5e5e5;
        overflow: hidden;
    }

    .hosting-kachel::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
    }

    .hosting-kachel.professional::before {
        background: linear-gradient(90deg, #6B46C1 0%, #9333EA 100%);
    }

    .hosting-kachel.enterprise::before {
        background: linear-gradient(90deg, #0891B2 0%, #06B6D4 100%);
    }

    .hosting-kachel.cluster::before {
        background: linear-gradient(90deg, #059669 0%, #10B981 100%);
    }

    .hosting-kachel.performance::before {
        background: linear-gradient(90deg, #DC2626 0%, #F87171 100%);
    }

    .hosting-kachel:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }

    .hosting-typ {
        display: inline-block;
        background: #FF6B35;
        color: white;
        padding: 6px 16px;
        border-radius: 25px;
        font-size: 0.85em;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .hosting-typ.professional {
        background: #9333EA;
    }

    .hosting-typ.enterprise {
        background: #0891B2;
    }

    .hosting-typ.cluster {
        background: #10B981;
    }

    .hosting-typ.performance {
        background: #DC2626;
    }

    .hosting-name {
        font-size: 1.5em;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 25px;
        line-height: 1.3;
        min-height: 60px;
    }

    .hosting-details {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-bottom: 20px;
        border-bottom: 2px solid #f3f4f6;
    }

    .detail-row {
        display: flex;
        align-items: center;
        color: #4a5568;
        font-size: 1em;
    }

    .detail-icon {
        width: 22px;
        height: 22px;
        margin-right: 12px;
        color: #FF6B35;
        flex-shrink: 0;
    }

    .hosting-preis {
        font-size: 2em;
        font-weight: 700;
        color: #1a1a1a;
        margin-top: 25px;
        display: flex;
        align-items: baseline;
        gap: 8px;
    }

    .hosting-preis small {
        font-size: 0.5em;
        color: #718096;
        font-weight: 400;
    }

    .btn-details {
        width: 100%;
        padding: 14px;
        margin-top: 25px;
        background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 1.05em;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        font-family: inherit;
    }

    .btn-details:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    }

    button.btn-details {
        display: block;
        width: 100%;
    }

    .hosting-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #10B981;
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.75em;
        font-weight: 600;
    }

    .hosting-badge.popular {
        background: #F59E0B;
    }

    .hosting-badge.new {
        background: #8B5CF6;
    }

    /* Info Boxes */
    .info-boxes-section {
        padding: 60px 20px;
    }

    .info-boxes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Konfigurator Modal */
    .konfigurator-modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.75);
        /* backdrop-filter entfernt für bessere Performance */
    }

    .konfigurator-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .konfigurator-content {
        background: white;
        border-radius: 20px;
        max-width: 900px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        /* GPU-Beschleunigung für flüssigeres Scrollen */
        transform: translateZ(0);
        will-change: scroll-position;
        -webkit-overflow-scrolling: touch;
    }

    .konfigurator-header {
        background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
        padding: 30px;
        border-radius: 20px 20px 0 0;
        color: white;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .konfigurator-header h3 {
        margin: 0 0 10px 0;
        font-size: 1.8em;
        font-weight: 700;
    }

    .konfigurator-header p {
        margin: 0;
        opacity: 0.95;
        font-size: 1.05em;
    }

    .konfigurator-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.5em;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .konfigurator-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .konfigurator-body {
        padding: 30px;
        /* Bessere Scroll-Performance */
        transform: translateZ(0);
    }

    .config-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 2px solid #f3f4f6;
    }

    .config-section:last-child {
        border-bottom: none;
    }

    .config-section h4 {
        color: #1a1a1a;
        font-size: 1.3em;
        margin-bottom: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .config-section h4 svg {
        width: 24px;
        height: 24px;
        color: #FF6B35;
    }

    .config-options {
        display: grid;
        gap: 10px;
    }

    .config-option {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px;
        border: 2px solid #e5e5e5;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .config-option:hover {
        border-color: #FF6B35;
        background: #fff5f2;
    }

    .config-option input[type="radio"],
    .config-option input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: #FF6B35;
    }

    .config-option label {
        flex: 1;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.05em;
    }

    .option-price {
        color: #FF6B35;
        font-weight: 600;
        font-size: 0.95em;
    }

    .config-option.selected {
        border-color: #FF6B35;
        background: #fff5f2;
    }

    .config-option.disabled {
        opacity: 0.4;
        cursor: not-allowed;
        background: #f8f9fa;
    }

    .config-option.disabled:hover {
        border-color: #e5e5e5;
        background: #f8f9fa;
    }

    .config-option.disabled input {
        cursor: not-allowed;
    }

    .option-badge {
        display: inline-block;
        background: linear-gradient(135deg, #10B981 0%, #059669 100%);
        color: white;
        padding: 3px 10px;
        border-radius: 12px;
        font-size: 0.75em;
        font-weight: 700;
        margin-left: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .price-summary {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 25px;
        border-radius: 15px;
        margin-top: 30px;
    }

    .price-row {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        font-size: 1.05em;
    }

    .price-row.total {
        border-top: 2px solid #dee2e6;
        margin-top: 10px;
        padding-top: 15px;
        font-weight: 700;
        font-size: 1.3em;
        color: #FF6B35;
    }

    #billingTotalRow {
        background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
        padding: 15px !important;
        margin: 10px -25px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 1.2em;
        color: #FF6B35;
        border: 2px solid #FF6B35;
    }

    .config-actions {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .btn-config {
        flex: 1;
        padding: 15px;
        border: none;
        border-radius: 10px;
        font-size: 1.05em;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-config.primary {
        background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
        color: white;
    }

    .btn-config.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    }

    .btn-config.secondary {
        background: white;
        color: #666;
        border: 2px solid #e5e5e5;
    }

    .btn-config.secondary:hover {
        border-color: #FF6B35;
        color: #FF6B35;
    }

    /* Warenkorb Icon */
    .cart-icon-wrapper {
        position: relative;
        cursor: pointer;
        margin-left: 20px;
    }

    .cart-icon {
        width: 28px;
        height: 28px;
        color: #1a1a1a;
        transition: color 0.3s ease;
    }

    .cart-icon:hover {
        color: #FF6B35;
    }

    .cart-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background: #FF6B35;
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 0.7em;
        font-weight: 700;
    }

    /* Cart Notification */
    .cart-notification {
        position: fixed;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #10B981 0%, #059669 100%);
        color: white;
        padding: 15px 25px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        z-index: 10001;
        transform: translateX(400px);
        opacity: 0;
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .cart-notification.show {
        transform: translateX(0);
        opacity: 1;
    }

    /* Warenkorb Modal */
    .cart-modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.75);
        /* backdrop-filter entfernt für bessere Performance */
    }

    .cart-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .cart-content {
        background: white;
        border-radius: 20px;
        max-width: 1000px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        /* GPU-Beschleunigung für flüssigeres Scrollen */
        transform: translateZ(0);
        will-change: scroll-position;
        -webkit-overflow-scrolling: touch;
    }

    .cart-header {
        background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
        padding: 30px;
        border-radius: 20px 20px 0 0;
        color: white;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .cart-header h3 {
        margin: 0;
        font-size: 1.8em;
        font-weight: 700;
    }

    .cart-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.5em;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .cart-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .cart-body {
        padding: 30px;
    }

    .cart-empty {
        text-align: center;
        padding: 60px 20px;
        color: #666;
    }

    .cart-empty svg {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        opacity: 0.5;
    }

    .cart-item {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 20px;
        position: relative;
    }

    .cart-item-header {
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-bottom: 15px;
    }

    .cart-item-title {
        font-size: 1.3em;
        font-weight: 700;
        color: #1a1a1a;
    }

    .cart-item-remove {
        background: #dc2626;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 0.9em;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .cart-item-remove:hover {
        background: #b91c1c;
        transform: scale(1.05);
    }

    .cart-item-details {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
        margin-bottom: 15px;
        font-size: 0.95em;
    }

    .cart-item-detail {
        color: #666;
    }

    .cart-item-detail strong {
        color: #1a1a1a;
    }

    .cart-item-price {
        display: flex;
        justify-content: space-between;
        padding-top: 15px;
        border-top: 2px solid #e5e5e5;
        font-size: 1.1em;
        font-weight: 600;
    }

    .cart-summary {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 25px;
        border-radius: 15px;
        margin-top: 30px;
        position: sticky;
        bottom: 0;
    }

    .cart-summary-row {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        font-size: 1.05em;
    }

    .cart-summary-row.total {
        border-top: 2px solid #dee2e6;
        margin-top: 10px;
        padding-top: 15px;
        font-weight: 700;
        font-size: 1.3em;
        color: #FF6B35;
    }

    .cart-actions {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .btn-cart {
        flex: 1;
        padding: 15px;
        border: none;
        border-radius: 10px;
        font-size: 1.05em;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-cart.primary {
        background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
        color: white;
    }

    .btn-cart.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    }

    .btn-cart.secondary {
        background: white;
        color: #666;
        border: 2px solid #e5e5e5;
    }

    .btn-cart.secondary:hover {
        border-color: #FF6B35;
        color: #FF6B35;
    }

    .btn-cart.danger {
        background: #dc2626;
        color: white;
    }

    .btn-cart.danger:hover {
        background: #b91c1c;
        transform: translateY(-2px);
    }

    /* Anpassung für Mobile */
    @media (max-width: 768px) {
        .hosting-section {
            padding: 60px 20px;
        }

        .hosting-header h2 {
            font-size: 2em;
        }

        .hosting-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .hosting-kachel {
            padding: 25px;
        }

        .hosting-name {
            font-size: 1.3em;
            min-height: auto;
        }

        .info-boxes {
            grid-template-columns: 1fr;
        }

        .konfigurator-content {
            max-height: 95vh;
        }

        .konfigurator-header {
            padding: 20px;
        }

        .konfigurator-header h3 {
            font-size: 1.4em;
        }

        .konfigurator-body {
            padding: 20px;
        }

        .config-actions {
            flex-direction: column;
        }

        .price-row {
            font-size: 0.95em;
        }

        .price-row.total {
            font-size: 1.15em;
        }
    }
